summaryrefslogtreecommitdiff
path: root/ext/exif/config.m4
diff options
context:
space:
mode:
authorMarcus Boerger <helly@php.net>2002-08-28 19:31:01 +0000
committerMarcus Boerger <helly@php.net>2002-08-28 19:31:01 +0000
commit562b78f422cf1bc0d842dcb477f0f68ead73e503 (patch)
tree63d3bef733eb86c3dfc9246db0836e315b28ec2b /ext/exif/config.m4
parenteef3e66f1f3e0803022aa34e67a0279314cb8bd6 (diff)
downloadphp-git-562b78f422cf1bc0d842dcb477f0f68ead73e503.tar.gz
Enable EXIF by default as discussed with Rasmus
@Made EXIF (digital camera) extension enabled by default. (Marcus)
Diffstat (limited to 'ext/exif/config.m4')
-rw-r--r--ext/exif/config.m46
1 files changed, 3 insertions, 3 deletions
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