kalle           Thu Jun 11 23:37:51 2009 UTC

  Modified files:              
    /php-src/ext/mbstring       config.w32 
  Log:
  Fixed static build of mbstring on Windows (makes static build of exif 
possible too)
  
http://cvs.php.net/viewvc.cgi/php-src/ext/mbstring/config.w32?r1=1.16&r2=1.17&diff_format=u
Index: php-src/ext/mbstring/config.w32
diff -u php-src/ext/mbstring/config.w32:1.16 
php-src/ext/mbstring/config.w32:1.17
--- php-src/ext/mbstring/config.w32:1.16        Mon Apr 20 17:06:00 2009
+++ php-src/ext/mbstring/config.w32     Thu Jun 11 23:37:51 2009
@@ -1,18 +1,18 @@
-// $Id: config.w32,v 1.16 2009/04/20 17:06:00 jani Exp $
+// $Id: config.w32,v 1.17 2009/06/11 23:37:51 kalle Exp $
 // vim:ft=javascript
 
 ARG_ENABLE("mbstring", "multibyte string functions", "no");
 ARG_ENABLE("mbregex", "multibyte regex support", "no");
 ARG_ENABLE("mbregex-backtrack", "check multibyte regex backtrack", "yes");
 
-if (PHP_MBSTRING == "yes") {
+if (PHP_MBSTRING != "no") {
 
        FSO.CopyFile("ext\\mbstring\\libmbfl\\config.h.vc6",
                "ext\\mbstring\\libmbfl\\config.h", true);
        FSO.CopyFile("ext\\mbstring\\oniguruma\\win32\\config.h",
                "ext\\mbstring\\oniguruma\\config.h", true);
        
-       EXTENSION("mbstring", "mbstring.c php_unicode.c mb_gpc.c", true,
+       EXTENSION("mbstring", "mbstring.c php_unicode.c mb_gpc.c", 
PHP_MBSTRING_SHARED,
                "-Iext/mbstring/libmbfl -Iext/mbstring/libmbfl/mbfl \
                -Iext/mbstring/oniguruma /D NOT_RUBY=1 /D LIBMBFL_EXPORTS=1 \
                /D HAVE_STDARG_PROTOTYPES=1 /D HAVE_CONFIG_H /D HAVE_STDLIB_H \



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to