diff options
author | Popa Adrian Marius <mapopa@reea.net> | 2015-02-24 13:58:14 +0200 |
---|---|---|
committer | Popa Adrian Marius <mapopa@reea.net> | 2015-02-24 13:58:14 +0200 |
commit | 3e6380d64bffab0c3efad81236b84d89cf743511 (patch) | |
tree | f75b75d31f7aa71dd102c9dc110378cd2ad34d0e | |
parent | 09c43bd398fcb87737b6d44b6d79ee22b366eb4c (diff) | |
download | php-git-3e6380d64bffab0c3efad81236b84d89cf743511.tar.gz |
Use Firebird default home folder, replace Interbase with Firebird
-rw-r--r-- | ext/interbase/config.m4 | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/ext/interbase/config.m4 b/ext/interbase/config.m4 index 6aa1b368c0..4f694caeab 100644 --- a/ext/interbase/config.m4 +++ b/ext/interbase/config.m4 @@ -1,11 +1,11 @@ -PHP_ARG_WITH(interbase,for InterBase support, -[ --with-interbase[=DIR] Include InterBase support. DIR is the InterBase base - install directory [/usr/interbase]]) +PHP_ARG_WITH(interbase,for Firebird support, +[ --with-interbase[=DIR] Include Firebird support. DIR is the Firebird base + install directory [/opt/firebird]]) if test "$PHP_INTERBASE" != "no"; then if test "$PHP_INTERBASE" = "yes"; then - IBASE_INCDIR=/usr/interbase/include - IBASE_LIBDIR=/usr/interbase/lib + IBASE_INCDIR=/opt/firebird/include + IBASE_LIBDIR=/opt/firebird/lib else IBASE_INCDIR=$PHP_INTERBASE/include IBASE_LIBDIR=$PHP_INTERBASE/$PHP_LIBDIR @@ -23,7 +23,7 @@ if test "$PHP_INTERBASE" != "no"; then [ IBASE_LIBNAME=ib_util ], [ - AC_MSG_ERROR([libgds, libib_util or libfbclient not found! Check config.log for more information.]) + AC_MSG_ERROR([libfbclient, libgds or libib_util not found! Check config.log for more information.]) ], [ -L$IBASE_LIBDIR ]) |