]> git.pld-linux.org Git - packages/php.git/blame - php-mssql-fix.patch
- fixes a logic typo while looking for libtds.(a|so)
[packages/php.git] / php-mssql-fix.patch
CommitLineData
c130fa9e
AG
1--- php-5.0.3RC1/ext/mssql/config.m4~ 2004-11-22 20:45:17.000000000 +0100
2+++ php-5.0.3RC1/ext/mssql/config.m4 2004-12-08 11:53:48.786803952 +0100
3@@ -32,7 +32,7 @@
bbac14ff 4 fi
5 fi
6
c130fa9e
AG
7- if test ! -r "$FREETDS_INSTALLATION_DIR/lib/libtds.a" || test ! -r "$FREETDS_INSTALLATION_DIR/lib/libtds.so"; then
8+ if test ! -r "$FREETDS_INSTALLATION_DIR/lib/libtds.a" && test ! -r "$FREETDS_INSTALLATION_DIR/lib/libtds.so"; then
9 AC_MSG_ERROR(Could not find $FREETDS_INSTALLATION_DIR/lib/libtds.[a|so])
bbac14ff 10 fi
11
This page took 0.039637 seconds and 4 git commands to generate.