build: set language to C++
Set the language in the build to C++.
Change-Id: I519cecba1e751625734c2bcd3c6a93fbe2f69470
Signed-off-by: Patrick Venture <venture@google.com>
diff --git a/configure.ac b/configure.ac
index 5ff03f1..5cdc946 100755
--- a/configure.ac
+++ b/configure.ac
@@ -3,6 +3,8 @@
AC_INIT([slpd-lite], [1.0], [https://github.com/openbmc/slpd-lite/issues])
AC_CONFIG_HEADERS([config.h])
AM_INIT_AUTOMAKE([subdir-objects -Wall -Werror foreign dist-xz])
+AC_LANG([C++])
+
# Checks for programs.
AC_PROG_CXX
AX_CXX_COMPILE_STDCXX_14([noext])