mirror of
https://github.com/php/php-src.git
synced 2026-03-24 00:02:20 +01:00
This adds Autoconf quote characters to all PHP_NEW_EXTENSION arguments and syncs the CS across the php-src Autotools build system.
13 lines
394 B
Plaintext
13 lines
394 B
Plaintext
PHP_ARG_ENABLE([exif],
|
|
[whether to enable EXIF (metadata from images) support],
|
|
[AS_HELP_STRING([--enable-exif],
|
|
[Enable EXIF (metadata from images) support])])
|
|
|
|
if test "$PHP_EXIF" != "no"; then
|
|
AC_DEFINE(HAVE_EXIF, 1, [Whether you want EXIF (metadata from images) support])
|
|
PHP_NEW_EXTENSION([exif],
|
|
[exif.c],
|
|
[$ext_shared],,
|
|
[-DZEND_ENABLE_STATIC_TSRMLS_CACHE=1])
|
|
fi
|