config.m4 333 B

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