diff options
| author | foobar <sniper@php.net> | 2003-06-18 18:28:47 +0000 |
|---|---|---|
| committer | foobar <sniper@php.net> | 2003-06-18 18:28:47 +0000 |
| commit | 71dedd2dd4efac4c417df7185417443879454142 (patch) | |
| tree | d2e09a7ad25d875d7e06b245fe22b1c3e122bcd8 | |
| parent | e4c67c0035ab1ef4da2d26c5093c2cb486782cd1 (diff) | |
| download | php-git-71dedd2dd4efac4c417df7185417443879454142.tar.gz | |
Fixed bug #24231: ext/sybase_ct could not be build as shared
| -rw-r--r-- | ext/sybase_ct/config.m4 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/sybase_ct/config.m4 b/ext/sybase_ct/config.m4 index dcceab32e8..d4ed5f70ac 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"; then + if 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 |
