sniper          Mon Oct 10 06:27:27 2005 EDT

  Modified files:              
    /php-src/ext/mssql  config.m4 
  Log:
  Fix copypastetypo
  
http://cvs.php.net/diff.php/php-src/ext/mssql/config.m4?r1=1.10&r2=1.11&ty=u
Index: php-src/ext/mssql/config.m4
diff -u php-src/ext/mssql/config.m4:1.10 php-src/ext/mssql/config.m4:1.11
--- php-src/ext/mssql/config.m4:1.10    Mon Oct 10 05:50:24 2005
+++ php-src/ext/mssql/config.m4 Mon Oct 10 06:27:27 2005
@@ -1,5 +1,5 @@
 dnl
-dnl $Id: config.m4,v 1.10 2005/10/10 09:50:24 sniper Exp $
+dnl $Id: config.m4,v 1.11 2005/10/10 10:27:27 sniper Exp $
 dnl
 
 PHP_ARG_WITH(mssql,for MSSQL support via FreeTDS,
@@ -12,11 +12,11 @@
     for i in /usr/local /usr; do
       if test -f $i/include/tds.h; then
         FREETDS_INSTALLATION_DIR=$i
-        FREETDS_INCLUDE_DIR=$/include
+        FREETDS_INCLUDE_DIR=$i/include
         break
       elif test -f $i/include/freetds/tds.h; then
         FREETDS_INSTALLATION_DIR=$i
-        FREETDS_INCLUDE_DIR=$/include/freetds
+        FREETDS_INCLUDE_DIR=$i/include/freetds
         break
       fi
     done
@@ -29,10 +29,10 @@
 
     if test -f $PHP_MSSQL/include/tds.h; then
       FREETDS_INSTALLATION_DIR=$PHP_MSSQL
-      FREETDS_INCLUDE_DIR=$/include
+      FREETDS_INCLUDE_DIR=$i/include
     elif test -f $i/include/freetds/tds.h; then
       FREETDS_INSTALLATION_DIR=$i
-      FREETDS_INCLUDE_DIR=$/include/freetds
+      FREETDS_INCLUDE_DIR=$i/include/freetds
     else
       AC_MSG_ERROR(Directory $PHP_MSSQL is not a FreeTDS installation 
directory)
     fi

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

Reply via email to