• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
No Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

Commit MetaInfo

Revisão23f9ca5ee1f67da9ad0cd55dd2409649657786dd (tree)
Hora2013-01-22 05:19:03
AutorKatsuhiko Nishimra <ktns.87@gmai...>
CommiterKatsuhiko Nishimra

Mensagem de Log

Check for boost/math/special_functions/factorials.hpp. #30557

git-svn-id: https://svn.sourceforge.jp/svnroot/molds/branches/automake@1239 1136aad2-a195-0410-b898-f5ea1d11b9d8

Mudança Sumário

Diff

--- a/src/config.h.in
+++ b/src/config.h.in
@@ -13,6 +13,10 @@
1313 /* define if the Boost library is available */
1414 #undef HAVE_BOOST
1515
16+/* Define to 1 if you have the <boost/math/special_functions/factorials.hpp>
17+ header file. */
18+#undef HAVE_BOOST_MATH_SPECIAL_FUNCTIONS_FACTORIALS_HPP
19+
1620 /* Define to 1 if you have the <boost/random.hpp> header file. */
1721 #undef HAVE_BOOST_RANDOM_HPP
1822
--- a/src/configure
+++ b/src/configure
@@ -7783,6 +7783,18 @@ fi
77837783
77847784 done
77857785
7786+for ac_header in boost/math/special_functions/factorials.hpp
7787+do :
7788+ ac_fn_cxx_check_header_mongrel "$LINENO" "boost/math/special_functions/factorials.hpp" "ac_cv_header_boost_math_special_functions_factorials_hpp" "$ac_includes_default"
7789+if test "x$ac_cv_header_boost_math_special_functions_factorials_hpp" = xyes; then :
7790+ cat >>confdefs.h <<_ACEOF
7791+#define HAVE_BOOST_MATH_SPECIAL_FUNCTIONS_FACTORIALS_HPP 1
7792+_ACEOF
7793+
7794+fi
7795+
7796+done
7797+
77867798
77877799 for ac_header in stdlib.h string.h
77887800 do :
--- a/src/configure.ac
+++ b/src/configure.ac
@@ -180,6 +180,7 @@ AS_IF([test x$molds_cv_ld_accepts_rpath == xyes],
180180 [BOOST_LDFLAGS="$BOOST_LDFLAGS -Wl,-rpath=$BOOST_LIBDIR"])
181181
182182 AC_CHECK_HEADERS([boost/random.hpp],,[AC_MSG_FAILURE([Cannot find boost/random.hpp!])])
183+AC_CHECK_HEADERS([boost/math/special_functions/factorials.hpp])
183184
184185 dnl Checks for header files.
185186 AC_CHECK_HEADERS([stdlib.h string.h])