2007-12-30 17:41:49 +01:00
|
|
|
dnl ---- configure.ac for gb.db.mysql driver
|
|
|
|
|
|
|
|
AC_INIT(configure.ac)
|
2009-08-17 00:07:48 +02:00
|
|
|
AC_CONFIG_MACRO_DIR([m4])
|
2007-12-30 17:41:49 +01:00
|
|
|
GB_INIT(gb.db.mysql)
|
2009-08-04 21:14:17 +02:00
|
|
|
LT_INIT
|
2007-12-30 17:41:49 +01:00
|
|
|
|
|
|
|
GB_COMPONENT(
|
2012-05-18 03:19:15 +02:00
|
|
|
mysql, MYSQL, gb.db.mysql, [src],
|
2010-01-21 17:46:21 +01:00
|
|
|
[GB_FIND(mysql.h my_config.h, /opt/local /opt /usr/local/lib /usr/local /usr/lib /usr, include mysql*/include)],
|
|
|
|
[GB_FIND(libmysqlclient.$SHLIBEXT, /opt/local /opt /usr/local /usr, lib mysql*/lib)],
|
2007-12-30 17:41:49 +01:00
|
|
|
[$C_LIB -lmysqlclient -lz])
|
|
|
|
|
|
|
|
AC_OUTPUT( \
|
|
|
|
Makefile \
|
|
|
|
src/Makefile \
|
|
|
|
)
|
2010-07-14 03:50:18 +02:00
|
|
|
|
|
|
|
GB_PRINT_MESSAGES
|