config.m4 374 B

123456789
  1. PHP_ARG_ENABLE([exif],
  2. [whether to enable EXIF (metadata from images) support],
  3. [AS_HELP_STRING([--enable-exif],
  4. [Enable EXIF (metadata from images) support])])
  5. if test "$PHP_EXIF" != "no"; then
  6. AC_DEFINE(HAVE_EXIF, 1, [Whether you want EXIF (metadata from images) support])
  7. PHP_NEW_EXTENSION(exif, exif.c, $ext_shared,, -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1)
  8. fi