mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-22 01:59:02 +00:00
Autoconf: use included boost when system boost is not available
This commit is contained in:
parent
37e7333359
commit
8d0d3ea090
@ -454,6 +454,18 @@ AC_DEFUN([LYX_USE_INCLUDED_BOOST],[
|
|||||||
[lyx_cv_with_included_boost=no])
|
[lyx_cv_with_included_boost=no])
|
||||||
AM_CONDITIONAL(USE_INCLUDED_BOOST, test x$lyx_cv_with_included_boost = xyes)
|
AM_CONDITIONAL(USE_INCLUDED_BOOST, test x$lyx_cv_with_included_boost = xyes)
|
||||||
AC_MSG_RESULT([$lyx_cv_with_included_boost])
|
AC_MSG_RESULT([$lyx_cv_with_included_boost])
|
||||||
|
if test x$lyx_cv_with_included_boost = xno ; then
|
||||||
|
AC_LANG_PUSH(C++)
|
||||||
|
AC_MSG_CHECKING([for boost library])
|
||||||
|
AC_LINK_IFELSE(
|
||||||
|
[AC_LANG_PROGRAM([#include <boost/crc.hpp>],
|
||||||
|
[boost::crc_32_type crc;])],
|
||||||
|
[AC_MSG_RESULT([yes])],
|
||||||
|
[AC_MSG_RESULT([no])
|
||||||
|
lyx_cv_with_included_boost=yes
|
||||||
|
])
|
||||||
|
AC_LANG_POP(C++)
|
||||||
|
fi
|
||||||
if test x$lyx_cv_with_included_boost = xyes ; then
|
if test x$lyx_cv_with_included_boost = xyes ; then
|
||||||
lyx_included_libs="$lyx_included_libs boost"
|
lyx_included_libs="$lyx_included_libs boost"
|
||||||
BOOST_INCLUDES='-I$(top_srcdir)/3rdparty/boost'
|
BOOST_INCLUDES='-I$(top_srcdir)/3rdparty/boost'
|
||||||
|
Loading…
Reference in New Issue
Block a user