From: Mark Wooding Date: Sat, 11 Jun 2011 18:53:06 +0000 (+0100) Subject: configure.ac: Actually get the mLib compiler options used. X-Git-Tag: 1.2.2~1 X-Git-Url: https://git.distorted.org.uk/~mdw/checkpath/commitdiff_plain/b28a13493380edf063aa9c5d09f653d8758ef69e configure.ac: Actually get the mLib compiler options used. Didn't notice this before, but nothing actually took any notice of the `mLib_CFLAGS' variable. Add it to `AM_CFLAGS' so that the right thing happens. --- diff --git a/configure.ac b/configure.ac index 99b488e..f433382 100644 --- a/configure.ac +++ b/configure.ac @@ -37,12 +37,14 @@ AC_PROG_CC AX_CFLAGS_WARN_ALL AM_PROG_LIBTOOL mdw_LIBTOOL_VERSION_INFO +AC_SUBST([AM_CFLAGS]) dnl Types. AC_TYPE_UID_T dnl Packages. PKG_CHECK_MODULES([mLib], [mLib >= 2.0.4]) +AM_CFLAGS="$AM_CFLAGS $mLib_CFLAGS" dnl-------------------------------------------------------------------------- dnl Output.