From: Marc Cromme Date: Fri, 27 Apr 2007 14:29:17 +0000 (+0000) Subject: changes autoconf ICU tests to report -DHAVE_ICU=1 as ICU_CPPFLAGS X-Git-Tag: YAZPP.1.0.3 X-Git-Url: http://git.indexdata.com/?p=m4-moved-to-github.git;a=commitdiff_plain;h=2df318a8c827d7e36a2e037c842b6122087993d8 changes autoconf ICU tests to report -DHAVE_ICU=1 as ICU_CPPFLAGS --- diff --git a/ac_check_icu.m4 b/ac_check_icu.m4 index 641f77d..1a35e4c 100644 --- a/ac_check_icu.m4 +++ b/ac_check_icu.m4 @@ -32,6 +32,10 @@ AC_DEFUN([AC_CHECK_ICU], [ echo "*** The icu-config script could not be found. Make sure it is" echo "*** in your path, and that taglib is properly installed." echo "*** Or see http://ibm.com/software/globalization/icu/" + + # added 2007-04-27 Marc Cromme + HAVE_ICU=0 + # end added else ICU_VERSION=`$ICU_CONFIG --version` AC_MSG_CHECKING(for ICU >= $1) @@ -40,6 +44,14 @@ AC_DEFUN([AC_CHECK_ICU], [ AC_MSG_RESULT(yes) succeeded=yes + # added 2007-04-27 Marc Cromme + HAVE_ICU=1 + + AC_MSG_CHECKING(ICU_CPPFLAGS) + ICU_CPPFLAGS=`$ICU_CONFIG --cppflags`" -DHAVE_ICU=1" + AC_MSG_RESULT($ICU_CPPFLAGS) + # end added + AC_MSG_CHECKING(ICU_CFLAGS) ICU_CFLAGS=`$ICU_CONFIG --cflags` AC_MSG_RESULT($ICU_CFLAGS) @@ -52,6 +64,9 @@ AC_DEFUN([AC_CHECK_ICU], [ ICU_LIBS=`$ICU_CONFIG --ldflags` AC_MSG_RESULT($ICU_LIBS) else + # added 2007-04-27 Marc Cromme + ICU_CPPFLAGS="" + # end added ICU_CFLAGS="" ICU_CXXFLAGS="" ICU_LIBS="" @@ -60,6 +75,10 @@ AC_DEFUN([AC_CHECK_ICU], [ ifelse([$3], ,echo "can't find ICU >= $1",) fi + # added 2007-04-27 Marc Cromme + AC_SUBST(HAVE_ICU) + AC_SUBST(ICU_CPPFLAGS) + # end added AC_SUBST(ICU_CFLAGS) AC_SUBST(ICU_CXXFLAGS) AC_SUBST(ICU_LIBS)