
* macros/curses.m4: Quote first argument to AC_DEFUN. * macros/gnome-cxx-check.m4: Likewise. * macros/gnome-gettext.m4: Likewise. * macros/gnome-libgtop-check.m4: Likewise. * macros/gnome-print-check.m4: Likewise. * macros/linger.m4: Likewise. * macros/need-declaration.m4: Likewise. svn path=/trunk/; revision=8059
11 lines
322 B
Plaintext
11 lines
322 B
Plaintext
dnl GNOME_CHECK_CXX(not_found_string)
|
|
AC_DEFUN([GNOME_CHECK_CXX],
|
|
[
|
|
# see if a C++ compiler exists and works
|
|
AC_REQUIRE([AC_PROG_CXX])dnl
|
|
if test "x$ac_cv_prog_cxx_works" = xno; then
|
|
AC_MSG_WARN(ifelse([$1], , "No C++ compiler", [$1]))
|
|
fi
|
|
AM_CONDITIONAL(CXX_PRESENT, test "x$ac_cv_prog_cxx_works" != xno)
|
|
])
|