From e88e3cc7e72d43dd2121f34a3a431f71010c0833 Mon Sep 17 00:00:00 2001 From: Evan Miller Date: Wed, 4 Aug 2021 15:29:23 -0400 Subject: [PATCH] Remove HAVE_ macros from mdbtools.h and mdbsql.h Generate mdbtools.h at configure-time. This ensures that the public interface matches the compiled structures. See #316 --- configure.ac | 27 ++++++++++++++++++++++++++- include/Makefile.am | 6 +++++- include/mdbsql.h | 5 ----- include/{mdbtools.h => mdbtools.h.in} | 23 ++++++----------------- 4 files changed, 37 insertions(+), 24 deletions(-) rename include/{mdbtools.h => mdbtools.h.in} (98%) diff --git a/configure.ac b/configure.ac index 7393b76..879b51e 100644 --- a/configure.ac +++ b/configure.ac @@ -221,8 +221,33 @@ if test "$enable_glib" = "yes"; then fi AM_CONDITIONAL(FAKE_GLIB, test "x$enable_glib" != "xyes") +dnl Set up substitution variables +if test "$am_cv_func_iconv" = "yes"; then + ICONV_INCLUDE_HEADER=iconv.h + ICONV_TYPE=iconv_t +else + ICONV_INCLUDE_HEADER=locale.h + ICONV_TYPE=[void *] +fi +AC_SUBST(ICONV_INCLUDE_HEADER) +AC_SUBST(ICONV_TYPE) + +if test "$ac_cv_header_xlocale_h" = "yes"; then + LOCALE_INCLUDE_HEADER=xlocale.h +else + LOCALE_INCLUDE_HEADER=locale.h +fi +AC_SUBST(LOCALE_INCLUDE_HEADER) + +if test "$enable_glib" = "yes"; then + GLIB_INCLUDE_HEADER=glib.h +else + GLIB_INCLUDE_HEADER=mdbfakeglib.h +fi +AC_SUBST(GLIB_INCLUDE_HEADER) + AC_SUBST([OPTDIRS]) -AC_CONFIG_FILES([src/Makefile]) +AC_CONFIG_FILES([src/Makefile include/mdbtools.h]) ################################################## # Check for txt2man diff --git a/include/Makefile.am b/include/Makefile.am index 364c45b..197f1d9 100644 --- a/include/Makefile.am +++ b/include/Makefile.am @@ -1,4 +1,8 @@ -include_HEADERS = mdbtools.h mdbsql.h +EXTRA_DIST = mdbtools.h.in +include_HEADERS = mdbtools.h +if SQL +include_HEADERS += mdbsql.h +endif if FAKE_GLIB include_HEADERS += mdbfakeglib.h endif diff --git a/include/mdbsql.h b/include/mdbsql.h index 47b098b..4225a81 100644 --- a/include/mdbsql.h +++ b/include/mdbsql.h @@ -25,11 +25,6 @@ #include #include -#ifdef HAVE_GLIB -#include -#else -#include -#endif #include typedef struct MdbSQL diff --git a/include/mdbtools.h b/include/mdbtools.h.in similarity index 98% rename from include/mdbtools.h rename to include/mdbtools.h.in index aad705d..95163b1 100644 --- a/include/mdbtools.h +++ b/include/mdbtools.h.in @@ -30,19 +30,9 @@ #include #include #include -#include - -#ifdef HAVE_GLIB -#include -#else -#include -#endif - -#if defined(HAVE_ICONV) -#include -#elif defined(HAVE_XLOCALE_H) -#include -#endif +#include <@ICONV_INCLUDE_HEADER@> +#include <@LOCALE_INCLUDE_HEADER@> +#include <@GLIB_INCLUDE_HEADER@> #ifdef _WIN32 #include @@ -308,10 +298,9 @@ typedef struct { char *relationships_values[5]; MdbStatistics *stats; GHashTable *backends; -#ifdef HAVE_ICONV - iconv_t iconv_in; - iconv_t iconv_out; -#elif defined(_WIN32) || defined(WIN32) || defined(_WIN64) || defined(WIN64) || defined(WINDOWS) + @ICONV_TYPE@ iconv_in; + @ICONV_TYPE@ iconv_out; +#if defined(_WIN32) || defined(WIN32) || defined(_WIN64) || defined(WIN64) || defined(WINDOWS) _locale_t locale; #else locale_t locale;