diff options
author | Max Kellermann <max@duempel.org> | 2008-10-14 17:23:06 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2008-10-14 17:23:06 +0200 |
commit | 731c629c6a8123224f5b616f11b5384901d9f360 (patch) | |
tree | ee56068a4a150ad755343ef12879f3053a1a5c75 | |
parent | e9ed10de3a19356f6ea0f99f939cae12e436e4e8 (diff) | |
download | mpd-731c629c6a8123224f5b616f11b5384901d9f360.tar.gz mpd-731c629c6a8123224f5b616f11b5384901d9f360.tar.xz mpd-731c629c6a8123224f5b616f11b5384901d9f360.zip |
configure.ac: disabled the C++ and fortran checks
Why check for C++ and fortran compilers? This hack was borrowed from
Qball's gmpc git repository.
-rw-r--r-- | configure.ac | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 2d207e7b1..b8f71a95b 100644 --- a/configure.ac +++ b/configure.ac @@ -11,6 +11,10 @@ AC_SUBST(MPD_CFLAGS) AC_SUBST(MP4FF_LIB) AC_SUBST(MP4FF_SUBDIR) +dnl Remove the check for c++ and fortran compiler +m4_defun([_LT_AC_LANG_CXX_CONFIG], [:]) +m4_defun([_LT_AC_LANG_F77_CONFIG], [:]) + AC_LANG(C) AC_PROG_CC_C99 AM_PROG_CC_C_O |