1
0
mirror of https://github.com/moparisthebest/curl synced 2025-03-01 01:41:50 -05:00

skip libtool C++ and Fortran linker checks

This commit is contained in:
Yang Tse 2007-03-06 16:53:53 +00:00
parent c84f84c70d
commit 23786eae32
2 changed files with 14 additions and 2 deletions

View File

@ -63,12 +63,18 @@ AC_HELP_STRING([--disable-debug],[Disable debug options]),
AC_MSG_RESULT(no)
)
dnl skip libtool C++ and Fortran checks
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
AC_PROG_LIBTOOL

View File

@ -115,12 +115,18 @@ AC_SYS_LARGEFILE
dnl support building of Windows DLLs
AC_LIBTOOL_WIN32_DLL
dnl skip libtool C++ and Fortran checks
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
AC_PROG_LIBTOOL