pajoye Fri Mar 7 18:41:59 2008 UTC Modified files: /php-src/ext/exif exif.c Log: - MFB: #44355 compilation breaks due illegal const usage http://cvs.php.net/viewvc.cgi/php-src/ext/exif/exif.c?r1=1.199&r2=1.200&diff_format=u Index: php-src/ext/exif/exif.c diff -u php-src/ext/exif/exif.c:1.199 php-src/ext/exif/exif.c:1.200 --- php-src/ext/exif/exif.c:1.199 Mon Dec 31 07:12:09 2007 +++ php-src/ext/exif/exif.c Fri Mar 7 18:41:59 2008 @@ -17,7 +17,7 @@ +----------------------------------------------------------------------+ */ -/* $Id: exif.c,v 1.199 2007/12/31 07:12:09 sebastian Exp $ */ +/* $Id: exif.c,v 1.200 2008/03/07 18:41:59 pajoye Exp $ */ /* ToDos * @@ -142,7 +142,7 @@ }; /* }}} */ -#define EXIF_VERSION "1.4 $Id: exif.c,v 1.199 2007/12/31 07:12:09 sebastian Exp $" +#define EXIF_VERSION "1.4 $Id: exif.c,v 1.200 2008/03/07 18:41:59 pajoye Exp $" /* {{{ PHP_MINFO_FUNCTION */ @@ -242,7 +242,7 @@ /* }}} */ /* {{{ exif dependencies */ -static const zend_module_dep exif_module_deps[] = { +static zend_module_dep exif_module_deps[] = { ZEND_MOD_REQUIRED("standard") #if EXIF_USE_MBSTRING ZEND_MOD_REQUIRED("mbstring")
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php