5e79f7228e
* BUG: Fix the GB_COMPONENT() macro so that it defines XXX_LDFLAGS and XXX_LIB variables as in the GB_COMPONENT_PKG_CONFIG() macro. The Makefile.am files of components were fixed accordingly. [GB.DB.FIREBIRD] * NEW: Switch to ibpp 2.5.3.1. * BUG: Link the driver to the fbclient library. [GB.GTK] * NEW: TreeView.Item.ParentKey and ColumnView.Item.ParentKey were implemented. [GB.QT] * NEW: TreeView.Item.ParentKey and ColumnView.Item.ParentKey were implemented. [GB.QT4] * NEW: TreeView.Item.ParentKey and ColumnView.Item.ParentKey were implemented. The previous change incorrectly talked about TreeView.ParentKey and ColumnView.ParentKey. git-svn-id: svn://localhost/gambas/trunk@2066 867c0c6c-44f3-4631-809d-bfa615b0a4ec
19 lines
366 B
Text
19 lines
366 B
Text
dnl ---- configure.ac for gb.db.firebird driver
|
|
|
|
AC_INIT(configure.ac)
|
|
GB_INIT(gb.db.firebird)
|
|
AC_PROG_LIBTOOL
|
|
|
|
GB_COMPONENT(
|
|
firebird,
|
|
FIREBIRD,
|
|
[firebird driver],
|
|
[src],
|
|
[],
|
|
[GB_FIND(libfbclient.$SHLIBEXT, /usr/local /opt /usr, lib firebird2*/lib firebird*/lib lib/firebird2* lib/firebird*)],
|
|
[-lfbclient])
|
|
|
|
AC_OUTPUT( \
|
|
Makefile \
|
|
src/Makefile \
|
|
)
|