moriyoshi Mon Sep 8 16:59:36 2003 EDT Modified files: /php-src/ext/gd/libgd gd.c Log: Fix build in VC++7. # The line didn't reflect the above comment, helly :) Index: php-src/ext/gd/libgd/gd.c diff -u php-src/ext/gd/libgd/gd.c:1.65 php-src/ext/gd/libgd/gd.c:1.66 --- php-src/ext/gd/libgd/gd.c:1.65 Mon Aug 11 20:55:57 2003 +++ php-src/ext/gd/libgd/gd.c Mon Sep 8 16:59:36 2003 @@ -9,8 +9,8 @@ #ifdef _MSC_VER # if _MSC_VER >= 1300 -/* in MSVC.NET the these are available but only for __cplusplus and not _MSC_EXTENSIONS */ -# ifdef _MSC_EXTENSIONS +/* in MSVC.NET these are available but only for __cplusplus and not _MSC_EXTENSIONS */ +# if !defined(_MSC_EXTENSIONS) && defined(__cplusplus) # define HAVE_FABSF 1 extern float fabsf(float x); # define HAVE_FLOORF 1
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php