Commit 4323e8a8 authored by Nathan Smith's avatar Nathan Smith Committed by Jordan DeLong

Boost system is now needed

Summary: https://github.com/facebook/folly/pull/22

Test Plan: .

Reviewed By: andrewjcg@fb.com

FB internal diff: D683793
parent a6f8a89d
...@@ -33,6 +33,7 @@ AC_CHECK_LIB([gflags],[getenv],[],[AC_MSG_ERROR( ...@@ -33,6 +33,7 @@ AC_CHECK_LIB([gflags],[getenv],[],[AC_MSG_ERROR(
AX_BOOST_BASE AX_BOOST_BASE
AX_BOOST_THREAD AX_BOOST_THREAD
AX_BOOST_REGEX AX_BOOST_REGEX
AX_BOOST_SYSTEM
# Checks for header files. # Checks for header files.
AC_HEADER_STDC AC_HEADER_STDC
...@@ -82,7 +83,7 @@ if test "$ac_cv_cxx_compile_cxx0x_gxx" = yes; then ...@@ -82,7 +83,7 @@ if test "$ac_cv_cxx_compile_cxx0x_gxx" = yes; then
fi fi
AC_SUBST(AM_CPPFLAGS, '-I../$(top_srcdir)'" "'-I$(top_srcdir)/io'" "'-I$(top_srcdir)/test'" -lstdc++ $CXX_FLAGS $BOOST_CPPFLAGS") AC_SUBST(AM_CPPFLAGS, '-I../$(top_srcdir)'" "'-I$(top_srcdir)/io'" "'-I$(top_srcdir)/test'" -lstdc++ $CXX_FLAGS $BOOST_CPPFLAGS")
AC_SUBST(AM_CXXFLAGS, "$BOOST_THREAD_LIB") AC_SUBST(AM_CXXFLAGS, "$BOOST_THREAD_LIB $BOOST_SYSTEM_LIB")
AM_CONDITIONAL([HAVE_STD_THREAD], [test "$ac_cv_header_features" = "yes"]) AM_CONDITIONAL([HAVE_STD_THREAD], [test "$ac_cv_header_features" = "yes"])
AM_CONDITIONAL([HAVE_X86_64], [test "$build_cpu" = "x86_64"]) AM_CONDITIONAL([HAVE_X86_64], [test "$build_cpu" = "x86_64"])
......
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