blob: 128d74be739e21c2678266c4042574ced7a38c21 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
dnl
dnl $Id$
dnl
PHP_ARG_ENABLE(exif, whether to enable EXIF support,
[ --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
|