]> granicus.if.org Git - php/commitdiff
Enable EXIF by default as discussed with Rasmus
authorMarcus Boerger <helly@php.net>
Wed, 28 Aug 2002 19:31:01 +0000 (19:31 +0000)
committerMarcus Boerger <helly@php.net>
Wed, 28 Aug 2002 19:31:01 +0000 (19:31 +0000)
@Made EXIF (digital camera) extension enabled by default. (Marcus)

ext/exif/config.m4

index f1fcced8974d91864e396eecb2b717dd17b6dbad..b81cf8eeb364931cba297f5c8dbd1d4a5d1e45e5 100644 (file)
@@ -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