summaryrefslogtreecommitdiff
path: root/ext/sybase_ct
diff options
context:
space:
mode:
authorFelipe Pena <felipe@php.net>2008-07-01 17:03:46 +0000
committerFelipe Pena <felipe@php.net>2008-07-01 17:03:46 +0000
commit899e8d6dead736adcd269b6d3e069bb3406f430b (patch)
tree5cf3e632d1e4bbc44d1166c861096068a334edfb /ext/sybase_ct
parent44689fbb363243723a78a1cbf98fc69c2b5fa6de (diff)
downloadphp-git-899e8d6dead736adcd269b6d3e069bb3406f430b.tar.gz
- Fix check for PHP_SYBASE
Diffstat (limited to 'ext/sybase_ct')
-rw-r--r--ext/sybase_ct/config.m42
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/sybase_ct/config.m4 b/ext/sybase_ct/config.m4
index 00d5b9cc19..72a982463e 100644
--- a/ext/sybase_ct/config.m4
+++ b/ext/sybase_ct/config.m4
@@ -8,7 +8,7 @@ PHP_ARG_WITH(sybase-ct, for Sybase-CT support,
if test "$PHP_SYBASE_CT" != "no"; then
- if test "$PHP_SYBASE" != "no" && test "$ext_shared" = "no"; then
+ if test "$PHP_SYBASE" && test "$PHP_SYBASE" != "no" && test "$ext_shared" = "no"; then
AC_MSG_ERROR([You can not use both --with-sybase and --with-sybase-ct in same build!])
fi