summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Henstridge <james@daa.com.au>2003-02-19 04:23:22 +0000
committerJames Henstridge <jamesh@src.gnome.org>2003-02-19 04:23:22 +0000
commit9c633dea5ac9089e47bbeeaa6e53ad05d287ffab (patch)
treee8ada09b48a1d5003beef1831b49a4e3639af755
parentbe8b7e06ae46cedac5ccb9e632480057fc5d9e74 (diff)
downloadgnome-common-9c633dea5ac9089e47bbeeaa6e53ad05d287ffab.tar.gz
AC_REQUIRE does not work within AU_DEFUN, so change to a simple call to
2003-02-19 James Henstridge <james@daa.com.au> * gnome-deprecated-macros.m4(GNOME_CHECK_CXX): AC_REQUIRE does not work within AU_DEFUN, so change to a simple call to AC_PROG_CXX. svn path=/trunk/; revision=2775
-rw-r--r--macros2/ChangeLog5
-rw-r--r--macros2/gnome-deprecated-macros.m42
2 files changed, 6 insertions, 1 deletions
diff --git a/macros2/ChangeLog b/macros2/ChangeLog
index 27c047d..952031c 100644
--- a/macros2/ChangeLog
+++ b/macros2/ChangeLog
@@ -1,3 +1,8 @@
+2003-02-19 James Henstridge <james@daa.com.au>
+
+ * gnome-deprecated-macros.m4(GNOME_CHECK_CXX): AC_REQUIRE does not
+ work within AU_DEFUN, so change to a simple call to AC_PROG_CXX.
+
2003-02-18 James Henstridge <james@daa.com.au>
* autogen.sh (topdir): check to see if gnome-deprecated-macros.m4
diff --git a/macros2/gnome-deprecated-macros.m4 b/macros2/gnome-deprecated-macros.m4
index ac3bf5b..b27ba52 100644
--- a/macros2/gnome-deprecated-macros.m4
+++ b/macros2/gnome-deprecated-macros.m4
@@ -14,7 +14,7 @@ AU_DEFUN([GNOME_PLATFORM_GNOME_2], [])
AU_DEFUN([GNOME_CHECK_CXX],
[
# see if a C++ compiler exists and works
- AC_REQUIRE([AC_PROG_CXX])dnl
+ AC_PROG_CXX
if test "x$ac_cv_prog_cxx_works" = xno; then
AC_MSG_WARN(ifelse([$1], , "No C++ compiler", [$1]))
fi