// $Id$
// vim:ft=javascript
-ARG_ENABLE("exif", "exif", "no");
+ARG_ENABLE('exif', 'Exchangeable image information (EXIF) Support', 'no');
-if (PHP_EXIF == "yes") {
- if (ADD_EXTENSION_DEP('exif', 'mbstring')) {
- EXTENSION("exif", "exif.c", null, "/DZEND_ENABLE_STATIC_TSRMLS_CACHE=1");
- AC_DEFINE('HAVE_EXIF', 1, 'Have exif');
- } else {
- WARNING("exif support can't be enabled, libxml is not enabled")
- PHP_EXIF = "no"
+if(PHP_EXIF != 'no')
+{
+ if(ADD_EXTENSION_DEP('exif', 'mbstring'))
+ {
+ AC_DEFINE('HAVE_EXIF', 1, 'Have EXIF Support');
+
+ EXTENSION('exif', 'exif.c', null, '/DZEND_ENABLE_STATIC_TSRMLS_CACHE=1');
}
-}
+}
\ No newline at end of file