Commit 00958e65 authored by Geoff Simmons's avatar Geoff Simmons

Enforce C++98 for the ActiveMQ code.

Because ActiveMQ uses std::auto_ptr, deprecated since C++11.
parent 25440255
......@@ -28,7 +28,7 @@ AX_PTHREAD(,[AC_MSG_ERROR([Could not configure pthreads support])])
LIBS="$PTHREAD_LIBS $LIBS"
CFLAGS="$CFLAGS $PTHREAD_CFLAGS"
CXXFLAGS="$CXXFLAGS $PTHREAD_CFLAGS"
CXXFLAGS="$CXXFLAGS -std=c++98 $PTHREAD_CFLAGS"
CC="$PTHREAD_CC"
AC_PROG_INSTALL
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment