From ad28ef81c091b92da1ead72761d0efd76896e8c6 Mon Sep 17 00:00:00 2001 From: foobar Date: Mon, 10 Oct 2005 10:28:53 +0000 Subject: [PATCH] MFH: copypastetypofix --- ext/mssql/config.m4 | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/ext/mssql/config.m4 b/ext/mssql/config.m4 index 27b87600c2..aa599d7743 100644 --- a/ext/mssql/config.m4 +++ b/ext/mssql/config.m4 @@ -12,11 +12,11 @@ if test "$PHP_MSSQL" != "no"; then 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 "$PHP_MSSQL" != "no"; then if test -f $PHP_MSSQL/include/tds.h; then FREETDS_INSTALLATION_DIR=$PHP_MSSQL - FREETDS_INCLUDE_DIR=$/include - elif test -f $i/include/freetds/tds.h; then - FREETDS_INSTALLATION_DIR=$i - FREETDS_INCLUDE_DIR=$/include/freetds + FREETDS_INCLUDE_DIR=$PHP_MSSQL/include + elif test -f $PHP_MSSQL/include/freetds/tds.h; then + FREETDS_INSTALLATION_DIR=$PHP_MSSQL + FREETDS_INCLUDE_DIR=$PHP_MSSQL/include/freetds else AC_MSG_ERROR(Directory $PHP_MSSQL is not a FreeTDS installation directory) fi -- 2.50.1