]> git.pld-linux.org Git - packages/php.git/commitdiff
- fixes a logic typo while looking for libtds.(a|so)
authorAdam Gołębiowski <adamg@pld-linux.org>
Wed, 8 Dec 2004 11:20:12 +0000 (11:20 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    php-mssql-fix.patch -> 1.1.4.1

php-mssql-fix.patch

index bf961e99bb800ef6cc2226823e4b94854766e357..8414653b662869d29bdd06b14dea2846ebf51d79 100644 (file)
@@ -1,13 +1,11 @@
---- php-4.3.4RC2/ext/mssql/config.m4.old       2003-10-29 02:26:59.000000000 +0100
-+++ php-4.3.4RC2/ext/mssql/config.m4   2003-10-29 02:26:36.000000000 +0100
-@@ -32,8 +32,8 @@
+--- php-5.0.3RC1/ext/mssql/config.m4~  2004-11-22 20:45:17.000000000 +0100
++++ php-5.0.3RC1/ext/mssql/config.m4   2004-12-08 11:53:48.786803952 +0100
+@@ -32,7 +32,7 @@
      fi
    fi  
  
--  if test ! -r "$FREETDS_INSTALLATION_DIR/lib/libtds.a"; then
--     AC_MSG_ERROR(Could not find $FREETDS_INSTALLATION_DIR/lib/libtds.a)
-+  if test ! -r "$FREETDS_INSTALLATION_DIR/lib/libtds.so"; then
-+     AC_MSG_ERROR(Could not find $FREETDS_INSTALLATION_DIR/lib/libtds.so)
+-  if test ! -r "$FREETDS_INSTALLATION_DIR/lib/libtds.a" || test ! -r "$FREETDS_INSTALLATION_DIR/lib/libtds.so"; then
++  if test ! -r "$FREETDS_INSTALLATION_DIR/lib/libtds.a" && test ! -r "$FREETDS_INSTALLATION_DIR/lib/libtds.so"; then
+      AC_MSG_ERROR(Could not find $FREETDS_INSTALLATION_DIR/lib/libtds.[a|so])
    fi
  
-   MSSQL_INCDIR=$FREETDS_INSTALLATION_DIR/include
This page took 0.042797 seconds and 4 git commands to generate.