Fix pkg-config Cflags

Previously we needed the cflags to include the original HAVE_ICONV value
so that MdbHandle looked the same to client applications as it did to
the compiled library. Now we use a .in file for the header so that these
definitions are not necessary when the client is compiling.
This commit is contained in:
Evan Miller 2021-08-20 07:24:40 -04:00
parent 3ad1669b2e
commit 148eed1546
3 changed files with 2 additions and 4 deletions

View File

@ -13,7 +13,6 @@ MDBTOOLS_VERSION_MICRO=0
# See https://www.gnu.org/software/libtool/manual/html_node/Updating-version-info.html
VERSION_INFO=4:0:0
AC_SUBST(VERSION_INFO)
AC_SUBST(MDBTOOLS_CFLAGS)
AM_MAINTAINER_MODE([enable])
AM_SILENT_RULES([yes])

View File

@ -12,4 +12,4 @@ Description: core MDB file support library
Requires: @GLIB_PACKAGE@
Version: @VERSION@
Libs: -L${libdir} -lmdb
Cflags: @MDBTOOLS_CFLAGS@
Cflags: -I${includedir}

View File

@ -12,5 +12,4 @@ Description: libmdb based SQL engine
Requires: libmdb
Version: @VERSION@
Libs: -L${libdir} -lmdbsql
Cflags:
Cflags: -I${includedir}