diff options
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 55bf54ae9..3f4593999 100644 --- a/configure.ac +++ b/configure.ac @@ -1255,6 +1255,7 @@ if test "x$with_imagemagick" = "xyes"; then have_imagemagick="no" else WAND_CFLAGS=`$WAND_CONFIG --cflags` + WAND_CPPFLAGS=`$WAND_CONFIG --cppflags` WAND_LDFLAGS=`$WAND_CONFIG --ldflags` WAND_LIBS=`$WAND_CONFIG --libs` have_imagemagick="yes" @@ -1266,6 +1267,7 @@ fi AM_CONDITIONAL(HAVE_WAND, test x"$have_imagemagick" = "xyes" ) AC_SUBST(WAND_CFLAGS) +AC_SUBST(WAND_CPPFLAGS) AC_SUBST(WAND_LDFLAGS) AC_SUBST(WAND_LIBS) |