]> git.ipfire.org Git - thirdparty/lldpd.git/commitdiff
configure: remove check on CXX compiler
authorDamien Riegel <damien.riegel@savoirfairelinux.com>
Mon, 18 Dec 2017 19:37:08 +0000 (14:37 -0500)
committerVincent Bernat <vincent@bernat.im>
Mon, 18 Dec 2017 20:14:02 +0000 (21:14 +0100)
lldpd fails to build if the toolchain doesn't have a C++ compiler
because configure fails with the following error:

  checking how to run the C++ preprocessor... /lib/cpp
  configure: error: in `/home/dkc/src/buildroot/build-zii/build/lldpd-0.9.4':
  configure: error: C++ preprocessor "/lib/cpp" fails sanity check

Since "8d92800b: build: cleaner way to not alter CFLAGS/CPPFLAGS/LDFLAGS",
it seems that the dependency on C++ is not required anymore, so there
is no reason to keep this restriction. Dropping AC_PROG_CXX allows to
build with a toolchain that doesn't have C++ just fine.

configure.ac

index 0edceb12d650ae30948fc590cfc30afa66e0d840..5afe8f26b8c462a7bd29f2ec67945379bc19c3d5 100644 (file)
@@ -48,7 +48,6 @@ AC_PROG_CC_C99
 if test x"$ac_cv_prog_cc_c99" = x"no"; then
   AC_MSG_FAILURE([*** C99 support is mandatory])
 fi
-AC_PROG_CXX
 AM_PROG_CC_C_O
 AC_PROG_LIBTOOL
 AC_PROG_LN_S