diff options
| author | foobar <sniper@php.net> | 2005-04-21 23:01:53 +0000 |
|---|---|---|
| committer | foobar <sniper@php.net> | 2005-04-21 23:01:53 +0000 |
| commit | f2d086127c3809774285ced71f8b1c99720ccefe (patch) | |
| tree | b2c0c7c75d6f0b0598551e89ecf318f344588d01 | |
| parent | 8b8940ba84e772642b8d74cddb6a5340a001c652 (diff) | |
| download | php-git-f2d086127c3809774285ced71f8b1c99720ccefe.tar.gz | |
- Fix birdstep support (no SQLDataSources() support in it)
| -rw-r--r-- | ext/odbc/config.m4 | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/ext/odbc/config.m4 b/ext/odbc/config.m4 index a97cf5d0d2..b02eac556a 100644 --- a/ext/odbc/config.m4 +++ b/ext/odbc/config.m4 @@ -573,7 +573,9 @@ if test -n "$ODBC_TYPE"; then if test "$ODBC_TYPE" != "dbmaker"; then ext_shared=$shared PHP_EVAL_LIBLINE([$ODBC_LFLAGS $ODBC_LIBS], ODBC_SHARED_LIBADD) - AC_DEFINE(HAVE_SQLDATASOURCES,1,[ ]) + if test "$ODBC_TYPE" != "birdstep"; then + AC_DEFINE(HAVE_SQLDATASOURCES,1,[ ]) + fi fi AC_DEFINE(HAVE_UODBC,1,[ ]) |
