mirror of
https://github.com/php/php-src.git
synced 2024-12-16 05:15:03 +08:00
a9d4cf9023
- need to define both COMPILE_DL_MODULE and HAVE_MODULE=1
12 lines
320 B
Plaintext
12 lines
320 B
Plaintext
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
|