rasmus          Thu Aug 28 13:14:29 2003 EDT

  Modified files:              (Branch: PHP_4_3)
    /php-src/ext/mcve   config.m4 
  Log:
  Fix the build
  The DOS line endings in this file caused buildconf to build a broken 
  configure script on fbsd
  
  
Index: php-src/ext/mcve/config.m4
diff -u php-src/ext/mcve/config.m4:1.2.4.1 php-src/ext/mcve/config.m4:1.2.4.2
--- php-src/ext/mcve/config.m4:1.2.4.1  Thu Aug 28 10:34:15 2003
+++ php-src/ext/mcve/config.m4  Thu Aug 28 13:14:28 2003
@@ -1,26 +1,26 @@
-dnl config.m4 for PHP4 MCVE Extension
-
-PHP_ARG_WITH(mcve, for MCVE support,
-[  --with-mcve[=DIR]       Include MCVE support])
-
-if test "$PHP_MCVE" != "no"; then
-  if test -r $PHP_MCVE/include/mcve.h; then
-     MCVE_DIR=$PHP_MCVE
-  else 
-    for i in /usr /usr/local /usr/local/mcve ; do
-      if test -r $i/include/mcve.h; then
-        MCVE_DIR=$i
-      fi
-    done
-  fi
-
-  if test -z "$MCVE_DIR"; then
-    AC_MSG_ERROR(not found. Please check your MCVE installation; mcve.h NOT FOUND)
-  fi
-  
-  PHP_ADD_INCLUDE($MCVE_DIR/include)
-  PHP_ADD_LIBRARY_WITH_PATH(mcve, $MCVE_DIR/lib, MCVE_SHARED_LIBADD)
-  PHP_NEW_EXTENSION(mcve, mcve.c, $ext_shared)
-  PHP_SUBST(MCVE_SHARED_LIBADD)
-  AC_DEFINE(HAVE_MCVE, 1, [ ])
-fi
+dnl config.m4 for PHP4 MCVE Extension
+
+PHP_ARG_WITH(mcve, for MCVE support,
+[  --with-mcve[=DIR]       Include MCVE support])
+
+if test "$PHP_MCVE" != "no"; then
+  if test -r $PHP_MCVE/include/mcve.h; then
+     MCVE_DIR=$PHP_MCVE
+  else 
+    for i in /usr /usr/local /usr/local/mcve ; do
+      if test -r $i/include/mcve.h; then
+        MCVE_DIR=$i
+      fi
+    done
+  fi
+
+  if test -z "$MCVE_DIR"; then
+    AC_MSG_ERROR(not found. Please check your MCVE installation; mcve.h NOT FOUND)
+  fi
+  
+  PHP_ADD_INCLUDE($MCVE_DIR/include)
+  PHP_ADD_LIBRARY_WITH_PATH(mcve, $MCVE_DIR/lib, MCVE_SHARED_LIBADD)
+  PHP_NEW_EXTENSION(mcve, mcve.c, $ext_shared)
+  PHP_SUBST(MCVE_SHARED_LIBADD)
+  AC_DEFINE(HAVE_MCVE, 1, [ ])
+fi

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

Reply via email to