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