summaryrefslogtreecommitdiff
path: root/ext/odbc/config.m4
diff options
context:
space:
mode:
authorJames Cox <imajes@php.net>2002-03-04 09:10:32 +0000
committerJames Cox <imajes@php.net>2002-03-04 09:10:32 +0000
commit0c78c87f34b39273b8c37912de5b5d7381684cc2 (patch)
tree24f9c6298515e8d1f4453445f606865d1c5b0081 /ext/odbc/config.m4
parentcd5f8608e2abe44d592f692ec096fa13d019c89a (diff)
downloadphp-git-0c78c87f34b39273b8c37912de5b5d7381684cc2.tar.gz
Changing the Velocis extension to now be called Birdstep, due to a product/company change.
added aliases for Velocis to the birdstep functions. # testing is both advised and encouraged! @ The Velocis extension is no
Diffstat (limited to 'ext/odbc/config.m4')
-rw-r--r--ext/odbc/config.m416
1 files changed, 8 insertions, 8 deletions
diff --git a/ext/odbc/config.m4 b/ext/odbc/config.m4
index c6696a7b9c..2baf2badf5 100644
--- a/ext/odbc/config.m4
+++ b/ext/odbc/config.m4
@@ -290,26 +290,26 @@ AC_ARG_WITH(empress-bcs,
fi
if test -z "$ODBC_TYPE"; then
-AC_MSG_CHECKING(for Velocis support)
-AC_ARG_WITH(velocis,
-[ --with-velocis[=DIR] Include Velocis support. DIR is the Velocis base
- install directory, defaults to /usr/local/velocis.],
+AC_MSG_CHECKING(for Birdstep support)
+AC_ARG_WITH(birdstep,
+[ --with-birdstep[=DIR] Include Birdstep support. DIR is the Birdstep base
+ install directory, defaults to /usr/local/birdstep.],
[
PHP_WITH_SHARED
if test "$withval" != "no"; then
if test "$withval" = "yes"; then
- ODBC_INCDIR=/usr/local/velocis/include
- ODBC_LIBDIR=/usr/local/velocis/lib
+ ODBC_INCDIR=/usr/local/birdstep/include
+ ODBC_LIBDIR=/usr/local/birdstep/lib
else
ODBC_INCDIR=$withval/include
ODBC_LIBDIR=$withval/lib
fi
ODBC_INCLUDE=-I$ODBC_INCDIR
- ODBC_TYPE=velocis
+ ODBC_TYPE=birdstep
ODBC_LFLAGS=-L$ODBC_LIBDIR
ODBC_LIBS="-lCadm -lCdict -lCenc -lCrdm -lCrpc -lCrdbc -lCrm -lCuapi -lutil"
- AC_DEFINE(HAVE_VELOCIS,1,[ ])
+ AC_DEFINE(HAVE_BIRDSTEP,1,[ ])
AC_MSG_RESULT(yes)
else