Skip to content
Snippets Groups Projects
Commit b4ef5e22 authored by Dan Fandrich's avatar Dan Fandrich
Browse files

Autoconf 2.57 didn't like these m4_undefine for some reason (probably a bug).

Luckily, they weren't needed.
parent 23786eae
No related branches found
No related tags found
No related merge requests found
......@@ -64,15 +64,11 @@ AC_HELP_STRING([--disable-debug],[Disable debug options]),
)
dnl skip libtool C++ and Fortran compiler checks
m4_undefine([AC_PROG_CXX])
m4_defun([AC_PROG_CXX],[])
m4_undefine([AC_PROG_F77])
m4_defun([AC_PROG_F77],[])
dnl skip libtool C++ and Fortran linker checks
m4_undefine([AC_LIBTOOL_CXX])
m4_defun([AC_LIBTOOL_CXX],[])
m4_undefine([AC_LIBTOOL_F77])
m4_defun([AC_LIBTOOL_F77],[])
dnl libtool setup
......
......@@ -116,15 +116,11 @@ dnl support building of Windows DLLs
AC_LIBTOOL_WIN32_DLL
dnl skip libtool C++ and Fortran compiler checks
m4_undefine([AC_PROG_CXX])
m4_defun([AC_PROG_CXX],[])
m4_undefine([AC_PROG_F77])
m4_defun([AC_PROG_F77],[])
dnl skip libtool C++ and Fortran linker checks
m4_undefine([AC_LIBTOOL_CXX])
m4_defun([AC_LIBTOOL_CXX],[])
m4_undefine([AC_LIBTOOL_F77])
m4_defun([AC_LIBTOOL_F77],[])
dnl libtool setup
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment