From: Marcus Boerger Date: Wed, 28 Aug 2002 19:31:01 +0000 (+0000) Subject: Enable EXIF by default as discussed with Rasmus X-Git-Tag: RELEASE_0_91~195 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=562b78f422cf1bc0d842dcb477f0f68ead73e503;p=php Enable EXIF by default as discussed with Rasmus @Made EXIF (digital camera) extension enabled by default. (Marcus) --- diff --git a/ext/exif/config.m4 b/ext/exif/config.m4 index f1fcced897..b81cf8eeb3 100644 --- a/ext/exif/config.m4 +++ b/ext/exif/config.m4 @@ -2,10 +2,10 @@ dnl dnl $Id$ dnl -PHP_ARG_ENABLE(exif, whether to enable EXIF support, -[ --enable-exif Enable EXIF support]) +PHP_ARG_ENABLE(exif, whether to enable EXIF (digital camera) support, +[ --disable-exif Disable EXIF (digital camera) support], yes) if test "$PHP_EXIF" != "no"; then - AC_DEFINE(HAVE_EXIF, 1, [Whether you want exif support]) + AC_DEFINE(HAVE_EXIF, 1, [Whether you want EXIF (digital camera) support]) PHP_NEW_EXTENSION(exif, exif.c, $ext_shared) fi