Changeset 12769 for trunk/FACT++/configure.ac
- Timestamp:
- 01/25/12 18:06:23 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/FACT++/configure.ac
r12768 r12769 47 47 #AC_CXX_HEADER_STDCXX_0X 48 48 AC_CXX_COMPILE_STDCXX_0X 49 if test "$ax_cv_cxx_compile_cxx0x_cxx" != yes; then 50 AC_MSG_ERROR([C++0x standard (-std=c++0x) not supported by compiler.]) 51 fi 52 53 CXXFLAGS+=" -std=c++0x"49 AS_IF([test "$ax_cv_cxx_compile_cxx0x_cxx" != yes], 50 AC_MSG_ERROR([C++0x standard (-std=c++0x) not supported by compiler.])) 51 52 # Postponed after the BOOST library tests otherwise the check for boost::thread fails 53 #CXXFLAGS+=" -std=c++0x" 54 54 55 55 ###################################################################### … … 110 110 # Needed to compile FACT++ 111 111 AC_CHECK_READLINE 112 113 if test "x$have_readline" != "xyes"; then 114 AC_MSG_ERROR([The readline library is not properly installed.]) 115 fi 112 AS_IF([test "x$have_readline" != "xyes"], 113 AC_MSG_ERROR([The readline library is not properly installed.])) 116 114 117 115 CPPFLAGS+=" "$READLINE_INCLUDES … … 200 198 # Keep this order AX_BOOST_FILESYSTEM needs AX_BOOST_SYSTEM_LIB 201 199 AX_BOOST_SYSTEM 200 AS_IF([test "x$ax_cv_boost_system" != "xyes"], 201 AC_MSG_ERROR([Problems with the Boost::System libarary.])) 202 202 203 AX_BOOST_ASIO 204 AS_IF([test "x$ax_cv_boost_asio" != "xyes"], 205 AC_MSG_ERROR([Problems with the Boost::ASIO libarary.])) 206 203 207 AX_BOOST_DATE_TIME 208 AS_IF([test "x$ax_cv_boost_date_time" != "xyes"], 209 AC_MSG_ERROR([Problems with the Boost::Date_Time libarary.])) 210 204 211 AX_BOOST_FILESYSTEM 212 AS_IF([test "x$ax_cv_boost_filesystem" != "xyes"], 213 AC_MSG_ERROR([Problems with the Boost::Filesystem libarary.])) 214 205 215 AX_BOOST_PROGRAM_OPTIONS 216 AS_IF([test "x$ax_cv_boost_program_options" != "xyes"], 217 AC_MSG_ERROR([Problems with the Boost::Program_Options libarary.])) 218 206 219 AX_BOOST_REGEX 220 AS_IF([test "x$ax_cv_boost_regex" != "xyes"], 221 AC_MSG_ERROR([Problems with the Boost::Regex libarary.])) 222 207 223 AX_BOOST_THREAD 224 AS_IF([test "x$ax_cv_boost_thread" != "xyes"], 225 AC_MSG_ERROR([Problems with the Boost::Thread libarary.])) 208 226 #AX_BOOST_IOSTREAMS 209 227 #AX_BOOST_PYTHON … … 225 243 226 244 CPPFLAGS+=" "$BOOST_CPPFLAGS 245 246 # Now we can safely add the compiler option for your prefered standard 247 CXXFLAGS+=" -std=c++0x" 227 248 228 249 #AC_CHECK_HEADERS(
Note:
See TracChangeset
for help on using the changeset viewer.