|
From: <pst...@us...> - 2013-01-04 00:21:32
|
Revision: 937
http://sourceforge.net/p/jazzplusplus/code/937
Author: pstieber
Date: 2013-01-04 00:21:30 +0000 (Fri, 04 Jan 2013)
Log Message:
-----------
Added AC_LANG_SOURCE and extra square brackets to satisfy autoreconf.
Modified Paths:
--------------
trunk/jazz/configure.ac
Modified: trunk/jazz/configure.ac
===================================================================
--- trunk/jazz/configure.ac 2013-01-04 00:06:16 UTC (rev 936)
+++ trunk/jazz/configure.ac 2013-01-04 00:21:30 UTC (rev 937)
@@ -62,9 +62,9 @@
dnl ints and std::_Ios_Openmode interchangeably. There's probably a simpler
dnl autoconf technique for checking this feature.
AC_MSG_CHECKING(for _Ios_Openmode)
-AC_COMPILE_IFELSE(
-[#include <iostream>
-std::_Ios_Openmode test;],
+AC_COMPILE_IFELSE([AC_LANG_SOURCE(
+[[#include <iostream>
+std::_Ios_Openmode test;]])],
result=yes,
result=no)
if test $result = yes; then
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|