From: Dan Winship Date: Thu, 12 Jan 2012 18:22:10 +0000 (-0500) Subject: Fix cross-compiling bug in configure.in X-Git-Tag: 1.30.0~9 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=92c58b4372833db6974da73b75d457177f402bb6;p=platform%2Fupstream%2Fpango.git Fix cross-compiling bug in configure.in https://bugzilla.gnome.org/show_bug.cgi?id=667799 --- diff --git a/configure.in b/configure.in index f029941..a3a9124 100644 --- a/configure.in +++ b/configure.in @@ -124,7 +124,7 @@ dnl dnl Check for a working C++ compiler, but do not bail out, if none is found. dnl We use this for an automated test for C++ header correctness. dnl -AC_CHECK_PROGS(CXX, [$CCC c++ g++ gcc CC cxx cc++ cl], gcc) +AC_CHECK_TOOLS(CXX, [$CCC c++ g++ gcc CC cxx cc++ cl], gcc) AC_LANG_SAVE AC_LANG_CPLUSPLUS AC_TRY_COMPILE(,[class a { int b; } c;], ,CXX=)