diff options
author | Yang Tse <yangsita@gmail.com> | 2008-05-12 15:02:51 +0000 |
---|---|---|
committer | Yang Tse <yangsita@gmail.com> | 2008-05-12 15:02:51 +0000 |
commit | d72efff878a352e24d3a7cc8cf7c2f8b0b65f409 (patch) | |
tree | 45a694cecd868efb77e607418750f3333b4e5339 | |
parent | e4c60e2030f365389c0c6a438f3664fc7b180eb9 (diff) |
skip libtool C++ preprocessor compiler and linker checks
-rw-r--r-- | ares/configure.ac | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ares/configure.ac b/ares/configure.ac index 70dbcce18..da728edac 100644 --- a/ares/configure.ac +++ b/ares/configure.ac @@ -76,12 +76,16 @@ AM_CONDITIONAL(DEBUGBUILD, test x$debugbuild = xyes) dnl skip libtool C++ and Fortran compiler checks m4_ifdef([AC_PROG_CXX], [m4_undefine([AC_PROG_CXX])]) m4_defun([AC_PROG_CXX],[]) +m4_ifdef([AC_PROG_CXXCPP], [m4_undefine([AC_PROG_CXXCPP])]) +m4_defun([AC_PROG_CXXCPP],[true]) m4_ifdef([AC_PROG_F77], [m4_undefine([AC_PROG_F77])]) m4_defun([AC_PROG_F77],[]) dnl skip libtool C++ and Fortran linker checks m4_ifdef([AC_LIBTOOL_CXX], [m4_undefine([AC_LIBTOOL_CXX])]) m4_defun([AC_LIBTOOL_CXX],[]) +m4_ifdef([AC_LIBTOOL_CXXCPP], [m4_undefine([AC_LIBTOOL_CXXCPP])]) +m4_defun([AC_LIBTOOL_CXXCPP],[true]) m4_ifdef([AC_LIBTOOL_F77], [m4_undefine([AC_LIBTOOL_F77])]) m4_defun([AC_LIBTOOL_F77],[]) |