moriyoshi               Sun Apr  4 15:23:43 2004 EDT

  Modified files:              (Branch: PHP_4_3)
    /php-src/ext/mbstring       config.m4 
  Log:
  - MFH(r-1.49): Let it work safely
  
  
http://cvs.php.net/diff.php/php-src/ext/mbstring/config.m4?r1=1.28.2.9&r2=1.28.2.10&ty=u
Index: php-src/ext/mbstring/config.m4
diff -u php-src/ext/mbstring/config.m4:1.28.2.9 
php-src/ext/mbstring/config.m4:1.28.2.10
--- php-src/ext/mbstring/config.m4:1.28.2.9     Sat Apr  3 12:23:13 2004
+++ php-src/ext/mbstring/config.m4      Sun Apr  4 15:23:43 2004
@@ -1,5 +1,5 @@
 dnl
-dnl $Id: config.m4,v 1.28.2.9 2004/04/03 17:23:13 derick Exp $
+dnl $Id: config.m4,v 1.28.2.10 2004/04/04 19:23:43 moriyoshi Exp $
 dnl
 
 AC_DEFUN([PHP_MBSTRING_ADD_SOURCES], [
@@ -34,10 +34,14 @@
     PHP_ADD_BUILD_DIR([$ext_builddir/$dir])
   done
   
-  if test "$ext_shared" = "no" -o ! -e "$ext_builddir/config.h.in"; then
+  if test "$ext_shared" = "no"; then
     out="php_config.h"
   else
-    out="$abs_builddir/config.h"
+    if test -e "$ext_builddir/config.h.in"; then
+      out="$abs_builddir/config.h"
+    else
+      out="php_config.h"
+    fi
   fi
   
   for cfg in $PHP_MBSTRING_EXTRA_CONFIG_HEADERS; do

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

Reply via email to