configure.ac properly use pkg-config

Change-Id: Ib45d9defd94c8c61250aa249daa1c3312574a684
This commit is contained in:
Lionel Elie Mamane
2013-07-19 03:55:53 +02:00
parent caad64af7b
commit 2ea2648bdc

View File

@@ -8097,10 +8097,7 @@ if test "x$enable_firebird_sdbc" = "xyes"; then
AC_PATH_PROG(FIREBIRDCONFIG, [fb_config])
if test -z "$FIREBIRDCONFIG"; then
AC_MSG_NOTICE([No fb_config -- using pkg-config])
FIREBIRD_VERSION=`pkg-config --modversion fbembed`
AC_MSG_CHECKING([for Firebird Client library])
FIREBIRD_CFLAGS=`pkg-config --cflags fbembed`
FIREBIRD_LIBS=`pkg-config --libs fbembed`
PKG_CHECK_MODULES(FIREBIRD, fbembed)
else
AC_MSG_NOTICE([fb_config found])
FIREBIRD_VERSION=`$FIREBIRDCONFIG --version`