[PATCH macros 1/2] Fix cflag test compiler message and cache ids
Chase Douglas
chase.douglas at canonical.com
Mon Mar 12 11:57:26 PDT 2012
When the language is C++, the flag checking message references $CC
instead of $CXX. The cache id is also xorg_cv_cc_* instead of
xorg_cv_cxx_*. This change fixes both issues.
Signed-off-by: Chase Douglas <chase.douglas at canonical.com>
---
xorg-macros.m4.in | 8 ++++++--
1 files changed, 6 insertions(+), 2 deletions(-)
diff --git a/xorg-macros.m4.in b/xorg-macros.m4.in
index ee356e1..2da57c2 100644
--- a/xorg-macros.m4.in
+++ b/xorg-macros.m4.in
@@ -1503,9 +1503,13 @@ AC_LANG_CASE(
[C], [
AC_REQUIRE([AC_PROG_CC_C99])
define([PREFIX], [C])
+ define([CACHE_PREFIX], [cc])
+ define([COMPILER], [$CC])
],
[C++], [
define([PREFIX], [CXX])
+ define([CACHE_PREFIX], [cxx])
+ define([COMPILER], [$CXX])
]
)
@@ -1550,8 +1554,8 @@ m4_foreach([flag], m4_cdr($@), [
PREFIX[FLAGS]="$PREFIX[FLAGS] ]flag["
dnl Some hackery here since AC_CACHE_VAL can't handle a non-literal varname
- AC_MSG_CHECKING([if $CC supports ]flag[])
- cacheid=`AS_ECHO([xorg_cv_cc_flag_]flag[])`
+ AC_MSG_CHECKING([if ]COMPILER[ supports]flag[])
+ cacheid=`AS_ECHO([xorg_cv_]CACHE_PREFIX[_flag_]flag[])`
AC_CACHE_VAL(AS_TR_SH($cacheid),
[AC_LINK_IFELSE([AC_LANG_PROGRAM([int i;])],
[eval AS_TR_SH($cacheid)=yes],
--
1.7.9.1
More information about the xorg-devel
mailing list