php-src/ext/pdo_firebird/config.m4

64 lines
1.8 KiB
Plaintext
Raw Normal View History

2004-06-11 01:37:06 +00:00
dnl
dnl $Id$
dnl
if test "$PHP_PDO" != "no"; then
2004-06-11 01:37:06 +00:00
PHP_ARG_WITH(pdo-firebird,for Firebird support for PDO,
[ --with-pdo-firebird[=DIR] Include Firebird support for PDO. DIR is the Firebird base
install directory, defaults to /opt/firebird])
if test "$PHP_PDO_FIREBIRD" != "no"; then
if test "$PHP_PDO_FIREBIRD" = "yes"; then
FIREBIRD_INCDIR=/opt/firebird/include
FIREBIRD_LIBDIR=/opt/firebird/lib
else
FIREBIRD_INCDIR=$PHP_PDO_FIREBIRD/include
FIREBIRD_LIBDIR=$PHP_PDO_FIREBIRD/lib
fi
2005-02-23 17:44:22 +00:00
PHP_CHECK_LIBRARY(fbclient, isc_detach_database,
2004-06-11 01:37:06 +00:00
[
2005-02-23 17:44:22 +00:00
FIREBIRD_LIBNAME=fbclient
2004-06-11 01:37:06 +00:00
], [
2005-02-23 17:44:22 +00:00
PHP_CHECK_LIBRARY(gds, isc_detach_database,
2004-06-11 01:37:06 +00:00
[
2005-02-23 17:44:22 +00:00
FIREBIRD_LIBNAME=gds
2004-06-11 01:37:06 +00:00
], [
2005-02-23 17:44:22 +00:00
PHP_CHECK_LIBRARY(ib_util, isc_detach_database,
[
FIREBIRD_LIBNAME=ib_util
], [
AC_MSG_ERROR([libfbclient, libgds or libib_util not found! Check config.log for more information.])
], [
-L$FIREBIRD_LIBDIR
])
2004-06-11 01:37:06 +00:00
], [
-L$FIREBIRD_LIBDIR
])
], [
-L$FIREBIRD_LIBDIR
])
AC_MSG_CHECKING([for PDO includes])
if test -f $abs_srcdir/include/php/ext/pdo/php_pdo_driver.h; then
pdo_inc_path=$abs_srcdir/ext
elif test -f $abs_srcdir/ext/pdo/php_pdo_driver.h; then
2004-06-12 22:17:16 +00:00
pdo_inc_path=$abs_srcdir/ext
elif test -f $prefix/include/php/ext/pdo/php_pdo_driver.h; then
pdo_inc_path=$prefix/include/php/ext
2004-06-12 22:17:16 +00:00
else
AC_MSG_ERROR([Cannot find php_pdo_driver.h.])
2004-06-12 22:17:16 +00:00
fi
AC_MSG_RESULT($pdo_inc_path)
2004-06-12 22:17:16 +00:00
2004-06-11 01:37:06 +00:00
PHP_ADD_LIBRARY_WITH_PATH($FIREBIRD_LIBNAME, $FIREBIRD_LIBDIR, PDO_FIREBIRD_SHARED_LIBADD)
PHP_ADD_INCLUDE($FIREBIRD_INCDIR)
AC_DEFINE(HAVE_PDO_FIREBIRD,1,[ ])
2004-06-12 22:17:16 +00:00
PHP_NEW_EXTENSION(pdo_firebird, pdo_firebird.c firebird_driver.c firebird_statement.c, $ext_shared,,-I$pdo_inc_path)
2004-06-11 01:37:06 +00:00
PHP_SUBST(PDO_FIREBIRD_SHARED_LIBADD)
PHP_ADD_EXTENSION_DEP(pdo_firebird, pdo)
2004-06-11 01:37:06 +00:00
fi
fi