aboutsummaryrefslogtreecommitdiffstats
path: root/configure.ac
diff options
context:
space:
mode:
authorPau Espin Pedrol <pespin@sysmocom.de>2018-09-03 18:59:53 +0200
committerHarald Welte <laforge@gnumonks.org>2018-09-04 18:00:57 +0000
commitb148d055423d5582217035498cded314aee77e14 (patch)
tree368adab453b1be3b3c92029d2ee247bb1f6a42f0 /configure.ac
parent970096932e086cd575a09a07bc2b28462c2f38b3 (diff)
configure.ac: Specify default language as C++
This is useful if we add more AC_CHECK_HEADER or similar configure tests including C++ header files or required C++ features, since otherwise gcc is used by default and test fail. Change-Id: Iee757c78b72290c5d2a4c31339800a4e72b6be23
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac1
1 files changed, 1 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac
index e1cc121..daa8677 100644
--- a/configure.ac
+++ b/configure.ac
@@ -49,6 +49,7 @@ AC_PROG_LN_S
AC_PROG_MAKE_SET
AC_PROG_INSTALL
AC_PATH_PROG([RM_PROG], [rm])
+AC_LANG([C++])
dnl check for pkg-config (explained in detail in libosmocore/configure.ac)
AC_PATH_PROG(PKG_CONFIG_INSTALLED, pkg-config, no)