From b28a13493380edf063aa9c5d09f653d8758ef69e Mon Sep 17 00:00:00 2001 From: Mark Wooding Date: Sat, 11 Jun 2011 19:53:06 +0100 Subject: [PATCH] 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. --- configure.ac | 2 ++ 1 file changed, 2 insertions(+) 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. -- 2.11.0