2001-04-12 07:53:50 +08:00
|
|
|
dnl Process this file with autoconf to produce a configure script.
|
2018-12-28 21:03:02 +08:00
|
|
|
AC_INIT([mdbtools],[0.8.2],[mdbtools-dev@lists.sourceforge.net])
|
2013-07-15 06:30:21 +08:00
|
|
|
AC_CONFIG_MACRO_DIR([m4])
|
2013-07-10 00:39:03 +08:00
|
|
|
AC_CONFIG_AUX_DIR([build-aux])
|
2006-05-24 09:37:18 +08:00
|
|
|
AC_CONFIG_SRCDIR(src/extras/mdb-dump.c)
|
|
|
|
AM_INIT_AUTOMAKE
|
2011-08-29 07:45:16 +08:00
|
|
|
|
2012-07-20 18:13:37 +08:00
|
|
|
AM_MAINTAINER_MODE([enable])
|
2011-08-29 07:45:16 +08:00
|
|
|
m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
|
|
|
|
|
2001-04-12 07:53:50 +08:00
|
|
|
AC_PROG_CC(gcc)
|
|
|
|
dnl Checks for programs.
|
|
|
|
AC_PROG_MAKE_SET
|
2015-01-21 01:42:42 +08:00
|
|
|
m4_pattern_allow([AM_PROG_AR], [AM_PROG_AR])
|
2020-08-05 05:52:22 +08:00
|
|
|
LT_INIT([win32-dll])
|
2013-07-10 00:39:03 +08:00
|
|
|
AC_PROG_LEX
|
2001-04-12 07:53:50 +08:00
|
|
|
AC_PROG_YACC
|
|
|
|
|
|
|
|
dnl Checks for header files.
|
|
|
|
AC_HEADER_STDC
|
|
|
|
AC_CHECK_HEADERS(fcntl.h limits.h unistd.h)
|
2001-04-21 05:06:46 +08:00
|
|
|
AC_CHECK_HEADERS(wordexp.h)
|
2017-12-05 07:13:28 +08:00
|
|
|
AC_CHECK_LIB(mswstr, DBLCMapStringW)
|
2020-08-06 11:48:49 +08:00
|
|
|
AC_CHECK_DECLS([program_invocation_short_name], [], [], [[#include <errno.h>]])
|
2001-04-12 07:53:50 +08:00
|
|
|
|
|
|
|
dnl Checks for typedefs, structures, and compiler characteristics.
|
|
|
|
AC_C_CONST
|
|
|
|
AC_TYPE_SIZE_T
|
|
|
|
|
2004-06-21 08:31:39 +08:00
|
|
|
AM_ICONV
|
2012-08-08 22:21:32 +08:00
|
|
|
AM_GCC_ATTRIBUTE_ALIAS
|
2013-07-15 08:42:12 +08:00
|
|
|
|
2002-12-27 23:09:02 +08:00
|
|
|
dnl no optional stuff by default
|
|
|
|
OPTDIRS=""
|
|
|
|
|
2001-07-24 10:56:20 +08:00
|
|
|
dnl ---------------------------------------------------------------------
|
|
|
|
dnl Compile time options
|
|
|
|
dnl ---------------------------------------------------------------------
|
2002-12-27 23:09:02 +08:00
|
|
|
|
2003-01-10 04:24:19 +08:00
|
|
|
sql=true
|
|
|
|
AC_MSG_CHECKING( Are we using flex )
|
|
|
|
if test "x$LEX" = "xflex"; then
|
2011-08-29 07:49:54 +08:00
|
|
|
LFLAGS="$LFLAGS -i -8"
|
2003-01-10 04:24:19 +08:00
|
|
|
AC_MSG_RESULT( yes );
|
|
|
|
else
|
|
|
|
AC_MSG_RESULT( no - SQL engine disable);
|
|
|
|
sql=false
|
2002-12-27 23:09:02 +08:00
|
|
|
fi
|
2003-01-10 04:24:19 +08:00
|
|
|
|
2020-08-05 22:08:11 +08:00
|
|
|
if $YACC -V >/dev/null 2>&1; then
|
|
|
|
if $YACC -Wno-conflicts-sr -V >/dev/null 2>&1; then
|
|
|
|
YFLAGS="$YFLAGS -Wno-conflicts-sr"
|
|
|
|
fi
|
|
|
|
else
|
2003-01-10 04:24:19 +08:00
|
|
|
sql=false
|
|
|
|
fi
|
|
|
|
|
|
|
|
if test "x$sql" = "xtrue"; then
|
|
|
|
CFLAGS="$CFLAGS -DSQL"
|
|
|
|
OPTDIRS="$OPTDIRS sql"
|
2013-06-29 02:07:44 +08:00
|
|
|
else
|
|
|
|
AC_MSG_WARN([Yacc is not available: SQL disabled.])
|
2003-01-10 04:24:19 +08:00
|
|
|
fi
|
|
|
|
|
2002-12-27 23:09:02 +08:00
|
|
|
AM_CONDITIONAL(SQL, test x$sql = xtrue)
|
|
|
|
AC_SUBST(SQL)
|
2003-01-10 04:24:19 +08:00
|
|
|
AC_SUBST(LFLAGS)
|
2002-12-27 23:09:02 +08:00
|
|
|
|
2020-08-06 11:07:48 +08:00
|
|
|
CFLAGS="$CFLAGS -Wall -Wstrict-prototypes -Werror"
|
2020-08-05 05:52:22 +08:00
|
|
|
AS_CASE([$host],
|
2020-08-05 20:17:49 +08:00
|
|
|
[*mingw*|*cygwin*], [LDFLAGS="$LDFLAGS -no-undefined"], [])
|
|
|
|
AS_CASE([$host],
|
|
|
|
[*mingw*], [LDFLAGS="$LDFLAGS -lWs2_32"], [])
|
2012-10-05 21:26:37 +08:00
|
|
|
dnl Enable -Wl,--as-needed by default to prevent overlinking
|
|
|
|
|
|
|
|
AC_ARG_ENABLE([as-needed],
|
2014-10-17 20:55:58 +08:00
|
|
|
AS_HELP_STRING([--disable-as-needed],[disable overlinking protection]),
|
2012-10-05 21:26:37 +08:00
|
|
|
[enable_as_needed=$enableval], [enable_as_needed=yes])
|
|
|
|
|
|
|
|
if test "x$enable_as_needed" != "xno"; then
|
|
|
|
AC_MSG_CHECKING([whether $LD accepts --as-needed])
|
|
|
|
case `$LD --as-needed -v 2>&1 </dev/null` in
|
|
|
|
*GNU* | *'with BFD'*)
|
|
|
|
LDFLAGS="$LDFLAGS -Wl,--as-needed"
|
|
|
|
AC_MSG_RESULT([yes])
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
AC_MSG_RESULT([no])
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
fi
|
2011-08-29 07:54:16 +08:00
|
|
|
|
2002-12-27 23:09:02 +08:00
|
|
|
dnl check for iODBC
|
|
|
|
|
2001-07-24 10:56:20 +08:00
|
|
|
AC_ARG_WITH(iodbc,
|
2014-10-17 20:55:58 +08:00
|
|
|
AS_HELP_STRING([--with-iodbc=/path/to/iodbc], [build odbc driver against iODBC]))
|
2001-07-24 10:56:20 +08:00
|
|
|
if test "$with_iodbc"; then
|
2004-04-14 08:25:55 +08:00
|
|
|
HAVE_ODBC=true
|
2014-10-17 18:49:49 +08:00
|
|
|
ODBC_CFLAGS=$(iodbc-config --prefix="$with_iodbc" --cflags)
|
|
|
|
ODBC_LIBS=$(iodbc-config --prefix="$with_iodbc" --libs)
|
2004-04-14 08:25:55 +08:00
|
|
|
CFLAGS="$CFLAGS -DIODBC"
|
2004-10-16 22:21:13 +08:00
|
|
|
|
|
|
|
OLDLDFLAGS=$LDFLAGS
|
|
|
|
LDFLAGS="$LDFLAGS $ODBC_LIBS"
|
|
|
|
AC_CHECK_LIB(iodbcinst, SQLGetPrivateProfileString,
|
|
|
|
[ODBC_LIBS="$ODBC_LIBS -liodbcinst"
|
|
|
|
AC_DEFINE_UNQUOTED(HAVE_SQLGETPRIVATEPROFILESTRING, 1,
|
|
|
|
[Define to 1 if you have the SQLGetPrivateProfileString function.])])
|
|
|
|
LDFLAGS=$OLDLDFLAGS
|
2001-07-24 10:56:20 +08:00
|
|
|
fi
|
|
|
|
|
2002-12-27 23:09:02 +08:00
|
|
|
dnl check for unixODBC
|
|
|
|
AC_ARG_WITH(unixodbc,
|
2014-10-17 20:55:58 +08:00
|
|
|
AS_HELP_STRING([--with-unixodbc=/path/to/unixodbc], [build odbc driver against unixODBC]))
|
2001-07-24 10:56:20 +08:00
|
|
|
if test "$with_unixodbc"; then
|
2004-04-14 08:25:55 +08:00
|
|
|
HAVE_ODBC=true
|
|
|
|
ODBC_CFLAGS="-I$with_unixodbc/include"
|
|
|
|
ODBC_LIBS="-L$with_unixodbc/lib"
|
|
|
|
CFLAGS="$CFLAGS -DUNIXODBC"
|
2004-10-16 22:21:13 +08:00
|
|
|
|
|
|
|
OLDLDFLAGS=$LDFLAGS
|
|
|
|
LDFLAGS="$LDFLAGS $ODBC_LIBS"
|
|
|
|
AC_CHECK_LIB(odbcinst, SQLGetPrivateProfileString,
|
|
|
|
[ODBC_LIBS="$ODBC_LIBS -lodbcinst"
|
|
|
|
AC_DEFINE_UNQUOTED(HAVE_SQLGETPRIVATEPROFILESTRING, 1,
|
|
|
|
[Define to 1 if you have the SQLGetPrivateProfileString function.])])
|
|
|
|
LDFLAGS=$OLDLDFLAGS
|
2001-07-24 10:56:20 +08:00
|
|
|
fi
|
|
|
|
|
2004-04-14 08:25:55 +08:00
|
|
|
if test "x$HAVE_ODBC" = "xtrue"; then
|
|
|
|
if test "x$sql" != "xtrue" ; then
|
|
|
|
echo
|
|
|
|
echo ODBC requires flex and bison for the SQL engine
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
AC_SUBST(ODBC_CFLAGS)
|
|
|
|
AC_SUBST(ODBC_LIBS)
|
|
|
|
OPTDIRS="$OPTDIRS odbc"
|
2004-03-05 05:25:09 +08:00
|
|
|
fi
|
|
|
|
|
2013-07-09 06:54:03 +08:00
|
|
|
dnl Conditionally build odbc wide version
|
|
|
|
AM_CONDITIONAL(ICONV, test "$am_cv_func_iconv" = "yes")
|
2004-03-06 13:13:27 +08:00
|
|
|
|
2014-10-17 17:10:22 +08:00
|
|
|
dnl Testing presence of pkg-config
|
|
|
|
AC_MSG_CHECKING([pkg-config m4 macros])
|
|
|
|
if test m4_ifdef([PKG_CHECK_MODULES], [yes], [no]) == yes; then
|
|
|
|
AC_MSG_RESULT([yes]);
|
|
|
|
else
|
|
|
|
AC_MSG_RESULT([no]);
|
|
|
|
AC_MSG_ERROR([
|
|
|
|
pkg-config is required.
|
|
|
|
See pkg-config.freedesktop.org])
|
|
|
|
fi
|
|
|
|
|
2020-08-06 08:36:20 +08:00
|
|
|
dnl See if GLib is present and wanted
|
|
|
|
AC_ARG_ENABLE(glib,
|
|
|
|
AS_HELP_STRING([--disable-glib], [do not link with GLib]),
|
|
|
|
[enable_glib=$enableval], [enable_glib=yes])
|
|
|
|
|
|
|
|
if test "$enable_glib" = "yes"; then
|
|
|
|
PKG_CHECK_MODULES([GLIB], [glib-2.0], HAVE_GLIB=true, HAVE_GLIB=false)
|
|
|
|
if test "x$HAVE_GLIB" = "xtrue"; then
|
|
|
|
GLIB_CFLAGS="$GLIB_CFLAGS -DHAVE_GLIB=1"
|
|
|
|
else
|
|
|
|
enable_glib=no
|
|
|
|
fi
|
2020-08-04 05:19:40 +08:00
|
|
|
fi
|
2020-08-06 08:36:20 +08:00
|
|
|
AM_CONDITIONAL(FAKE_GLIB, test "x$enable_glib" != "xyes")
|
2002-12-28 05:27:06 +08:00
|
|
|
|
2020-08-06 08:36:20 +08:00
|
|
|
dnl check for gtk/gnome
|
2014-10-17 17:10:22 +08:00
|
|
|
PKG_CHECK_MODULES([GNOME], [gtk+-2.0 >= 2.14 libglade-2.0 libgnomeui-2.0], HAVE_GNOME=true, HAVE_GNOME=false)
|
2002-04-15 07:35:39 +08:00
|
|
|
|
2014-10-17 23:15:46 +08:00
|
|
|
GNOME_DOC_INIT
|
2005-08-31 09:26:25 +08:00
|
|
|
AC_ARG_ENABLE(gmdb2,
|
2013-07-10 00:39:03 +08:00
|
|
|
AS_HELP_STRING([--disable-gmdb2],[do not build gmdb2]),
|
2005-08-31 09:26:25 +08:00
|
|
|
[build_gmdb2=$enableval], [build_gmdb2=yes])
|
|
|
|
|
|
|
|
if test "$build_gmdb2" = "yes" ; then
|
|
|
|
if test "x$HAVE_GNOME" = "xtrue"; then
|
|
|
|
AC_SUBST(GNOME_CFLAGS)
|
|
|
|
AC_SUBST(GNOME_LIBS)
|
|
|
|
OPTDIRS="$OPTDIRS gmdb2"
|
|
|
|
fi
|
|
|
|
else
|
|
|
|
AC_MSG_NOTICE(gmdb2 disabled)
|
2014-10-17 23:15:46 +08:00
|
|
|
build_gmdb2=no
|
2002-04-09 09:18:16 +08:00
|
|
|
fi
|
2002-04-15 07:35:39 +08:00
|
|
|
|
2002-12-27 23:09:02 +08:00
|
|
|
AC_SUBST([OPTDIRS])
|
|
|
|
AC_CONFIG_FILES([src/Makefile])
|
2001-07-24 10:56:20 +08:00
|
|
|
|
2004-04-13 08:39:12 +08:00
|
|
|
|
|
|
|
##################################################
|
|
|
|
# Check for gtk-doc.
|
|
|
|
##################################################
|
|
|
|
|
2014-10-17 20:55:58 +08:00
|
|
|
AC_ARG_WITH(html-dir,
|
|
|
|
AS_HELP_STRING([--with-html-dir=PATH], [path to installed docs]))
|
2004-04-13 08:39:12 +08:00
|
|
|
|
|
|
|
if test "x$with_html_dir" = "x" ; then
|
|
|
|
HTML_DIR='${datadir}/gtk-doc/html'
|
|
|
|
else
|
|
|
|
HTML_DIR=$with_html_dir
|
|
|
|
fi
|
|
|
|
|
|
|
|
AC_SUBST(HTML_DIR)
|
|
|
|
|
|
|
|
gtk_doc_min_version=1.0
|
|
|
|
AC_MSG_CHECKING([gtk-doc version >= $gtk_doc_min_version])
|
|
|
|
if pkg-config --atleast-version=$gtk_doc_min_version gtk-doc; then
|
|
|
|
AC_MSG_RESULT(yes)
|
|
|
|
GTKDOC=true
|
|
|
|
else
|
|
|
|
AC_MSG_RESULT(no)
|
|
|
|
GTKDOC=false
|
|
|
|
fi
|
|
|
|
|
|
|
|
dnl Let people disable the gtk-doc stuff.
|
2014-10-17 20:55:58 +08:00
|
|
|
AC_ARG_ENABLE(gtk-doc, AS_HELP_STRING([--enable-gtk-doc], [use gtk-doc to build documentation [default=auto]]), enable_gtk_doc="$enableval", enable_gtk_doc=auto)
|
2004-04-13 08:39:12 +08:00
|
|
|
|
|
|
|
if test x$enable_gtk_doc = xauto ; then
|
|
|
|
if test x$GTKDOC = xtrue ; then
|
|
|
|
enable_gtk_doc=yes
|
|
|
|
else
|
|
|
|
enable_gtk_doc=no
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
|
|
|
AM_CONDITIONAL(ENABLE_GTK_DOC, test x$enable_gtk_doc = xyes)
|
|
|
|
|
2013-07-04 19:22:52 +08:00
|
|
|
##################################################
|
|
|
|
# Check for txt2man
|
|
|
|
##################################################
|
|
|
|
|
2014-10-17 20:55:58 +08:00
|
|
|
AC_ARG_ENABLE(man,
|
|
|
|
AS_HELP_STRING([--disable-man], [disable man generation]),
|
|
|
|
enable_man="$enableval", [enable_man=yes])
|
2013-07-04 19:22:52 +08:00
|
|
|
if test "$enable_man" = yes; then
|
|
|
|
if ! which txt2man > /dev/null; then
|
|
|
|
AC_MSG_ERROR([Could not find txt2man script. Install it or configure with --disable-man if you are not interrested in manuals.])
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
AM_CONDITIONAL(ENABLE_MAN, test "$enable_man" = yes)
|
|
|
|
|
|
|
|
##################################################
|
|
|
|
# Check for docbook
|
|
|
|
##################################################
|
2011-10-22 20:54:32 +08:00
|
|
|
AM_CONDITIONAL(ENABLE_DOCBOOK, test -n "$DOCBOOK_DSL")
|
|
|
|
|
2001-04-12 07:53:50 +08:00
|
|
|
dnl Checks for library functions.
|
2004-06-20 22:36:23 +08:00
|
|
|
VL_LIB_READLINE
|
2015-08-30 17:23:57 +08:00
|
|
|
AC_CHECK_FUNC(strptime,[ AC_DEFINE(HAVE_STRPTIME, 1, [strptime check]) AM_CONDITIONAL(HAVE_STRPTIME, true) ],[ AM_CONDITIONAL(HAVE_STRPTIME, false) ])
|
2001-04-12 07:53:50 +08:00
|
|
|
|
2003-01-29 07:51:06 +08:00
|
|
|
localedir=${datadir}/locale
|
|
|
|
AC_SUBST(localedir)
|
|
|
|
|
2013-07-10 00:39:03 +08:00
|
|
|
AC_CONFIG_FILES([
|
2004-05-02 20:13:28 +08:00
|
|
|
libmdb.pc
|
|
|
|
libmdbsql.pc
|
|
|
|
src/util/Makefile
|
2015-05-30 21:40:58 +08:00
|
|
|
src/util/bash-completion/Makefile
|
2004-05-02 20:13:28 +08:00
|
|
|
src/extras/Makefile
|
2014-10-17 23:15:46 +08:00
|
|
|
Makefile
|
|
|
|
include/Makefile
|
2004-05-02 20:13:28 +08:00
|
|
|
src/libmdb/Makefile
|
|
|
|
src/sql/Makefile
|
|
|
|
src/odbc/Makefile
|
|
|
|
doc/Makefile
|
|
|
|
src/gmdb2/Makefile
|
|
|
|
src/gmdb2/gladefiles/Makefile
|
|
|
|
src/gmdb2/pixmaps/Makefile
|
|
|
|
src/gmdb2/help/Makefile
|
|
|
|
mdbtools.spec
|
2004-06-18 10:18:14 +08:00
|
|
|
include/mdbver.h])
|
2013-07-10 00:39:03 +08:00
|
|
|
AC_OUTPUT
|
2004-06-18 10:18:14 +08:00
|
|
|
dnl doc/reference/libmdb/Makefile])
|
2014-10-17 23:15:46 +08:00
|
|
|
|
|
|
|
##################################################
|
|
|
|
# Print summary
|
|
|
|
##################################################
|
|
|
|
|
|
|
|
|
|
|
|
bold_red=$(tput bold)$(tput setf 4)
|
|
|
|
bold_green=$(tput bold)$(tput setf 2)
|
|
|
|
bold=$(tput bold)
|
|
|
|
reset=$(tput sgr0)
|
|
|
|
AC_MSG_NOTICE([])
|
|
|
|
AC_MSG_NOTICE([${bold}MDB Tools $VERSION - Configuration summary${reset}])
|
|
|
|
AC_MSG_NOTICE([])
|
|
|
|
if test x$sql = xtrue; then summary=${bold_green}enabled; else summary=${bold_red}disabled; fi
|
|
|
|
AC_MSG_NOTICE([ SQL : ${summary}${reset}])
|
|
|
|
if test x$HAVE_ODBC = xtrue; then summary=${bold_green}enabled; else summary=${bold_red}disabled; fi
|
|
|
|
AC_MSG_NOTICE([ ODBC : ${summary}${reset}])
|
2020-08-06 08:36:20 +08:00
|
|
|
if test x$enable_glib = xyes; then summary=${bold_green}enabled; else summary=${bold_red}disabled; fi
|
|
|
|
AC_MSG_NOTICE([ GLib : ${summary}${reset}])
|
2014-10-17 23:15:46 +08:00
|
|
|
if test x$build_gmdb2 = xyes; then summary=${bold_green}enabled; else summary=${bold_red}disabled; fi
|
|
|
|
AC_MSG_NOTICE([ UI : ${summary}${reset}])
|
|
|
|
if test x$enable_gtk_doc = xyes; then summary=${bold_green}enabled; else summary=${bold_red}disabled; fi
|
|
|
|
AC_MSG_NOTICE([ Gtk doc : ${summary}${reset}])
|
|
|
|
if test x$enable_man = xyes; then summary=${bold_green}enabled; else summary=${bold_red}disabled; fi
|
|
|
|
AC_MSG_NOTICE([ man : ${summary}${reset}])
|
|
|
|
if test -n "$DOCBOOK_DSL"; then summary=${bold_green}enabled; else summary=${bold_red}disabled; fi
|
|
|
|
AC_MSG_NOTICE([ html docbook : ${summary}${reset}])
|
|
|
|
AC_MSG_NOTICE([])
|