blob: 53dabb6bd8dafcaccc041c29eed3ca10e1a34a98 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
dnl $Id$
dnl config.m4 for extension exif
PHP_ARG_ENABLE(exif, whether to enable exif support,
dnl Make sure that the comment is aligned:
[ --enable-exif Enable exif support])
if test "$PHP_EXIF" != "no"; then
AC_DEFINE(HAVE_EXIF, 1, [Whether you want exif support])
PHP_EXTENSION(exif, $ext_shared)
fi
|