iliaa Thu Mar 17 12:20:36 2005 EDT Modified files: (Branch: PHP_5_0) /php-src/ext/exif exif.c Log: Fixed build of exif extension on win32. http://cvs.php.net/diff.php/php-src/ext/exif/exif.c?r1=1.162.2.7&r2=1.162.2.8&ty=u Index: php-src/ext/exif/exif.c diff -u php-src/ext/exif/exif.c:1.162.2.7 php-src/ext/exif/exif.c:1.162.2.8 --- php-src/ext/exif/exif.c:1.162.2.7 Wed Mar 2 13:22:40 2005 +++ php-src/ext/exif/exif.c Thu Mar 17 12:20:35 2005 @@ -17,7 +17,7 @@ +----------------------------------------------------------------------+ */ -/* $Id: exif.c,v 1.162.2.7 2005/03/02 18:22:40 sesser Exp $ */ +/* $Id: exif.c,v 1.162.2.8 2005/03/17 17:20:35 iliaa Exp $ */ /* ToDos * @@ -76,6 +76,9 @@ #include "ext/mbstring/mbstring.h" #endif +/* needed for ssize_t definition */ +#include <sys/types.h> + typedef unsigned char uchar; #ifndef safe_emalloc @@ -112,7 +115,7 @@ }; /* }}} */ -#define EXIF_VERSION "1.4 $Id: exif.c,v 1.162.2.7 2005/03/02 18:22:40 sesser Exp $" +#define EXIF_VERSION "1.4 $Id: exif.c,v 1.162.2.8 2005/03/17 17:20:35 iliaa Exp $" /* {{{ PHP_MINFO_FUNCTION */
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php