summaryrefslogtreecommitdiff
path: root/ext/mssql/config.m4
diff options
context:
space:
mode:
authorFrank M. Kromann <fmk@php.net>2004-12-08 18:57:48 +0000
committerFrank M. Kromann <fmk@php.net>2004-12-08 18:57:48 +0000
commit49f88bc05accf32a9477f194e9632e50d77c62c8 (patch)
tree6ddadc4e665a8c05056a33f7e5bb273367c7ded1 /ext/mssql/config.m4
parent7b547a393a6e3fab4b19f9e73011694402565688 (diff)
downloadphp-git-49f88bc05accf32a9477f194e9632e50d77c62c8.tar.gz
Fix logic for file checking. Bug #31019
Diffstat (limited to 'ext/mssql/config.m4')
-rw-r--r--ext/mssql/config.m42
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/mssql/config.m4 b/ext/mssql/config.m4
index 861cd0300b..ead7935539 100644
--- a/ext/mssql/config.m4
+++ b/ext/mssql/config.m4
@@ -32,7 +32,7 @@ if test "$PHP_MSSQL" != "no"; then
fi
fi
- 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