[LyX/master] autotools: use system boost by default

Jean-Marc Lasgouttes lasgouttes at lyx.org
Sun Nov 29 20:38:38 UTC 2020


commit ca938c08d9d110226f2c0133e304914f9cc83533
Author: Jean-Marc Lasgouttes <lasgouttes at lyx.org>
Date:   Sun Nov 29 22:07:26 2020 +0100

    autotools: use system boost by default
    
    What is missing is a test to use bundled boost automatically when
    system boost is missing. I am not sure this is required, though.
---
 config/lyxinclude.m4 |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/config/lyxinclude.m4 b/config/lyxinclude.m4
index 16f7972..a3bb114 100644
--- a/config/lyxinclude.m4
+++ b/config/lyxinclude.m4
@@ -421,9 +421,9 @@ dnl        be used.
 AC_DEFUN([LYX_USE_INCLUDED_BOOST],[
 	AC_MSG_CHECKING([whether to use included boost library])
 	AC_ARG_WITH(included-boost,
-	    [AS_HELP_STRING([--without-included-boost], [do not use the boost lib supplied with LyX, try to find one in the system directories - compilation will abort if nothing suitable is found])],
+	    [AS_HELP_STRING([--with-included-boost], [use the boost lib supplied with LyX])],
 	    [lyx_cv_with_included_boost=$withval],
-	    [lyx_cv_with_included_boost=yes])
+	    [lyx_cv_with_included_boost=no])
 	AM_CONDITIONAL(USE_INCLUDED_BOOST, test x$lyx_cv_with_included_boost = xyes)
 	AC_MSG_RESULT([$lyx_cv_with_included_boost])
 	if test x$lyx_cv_with_included_boost = xyes ; then


More information about the lyx-cvs mailing list