From: Jean-Marc Lasgouttes Date: Thu, 9 Apr 2009 16:25:26 +0000 (+0000) Subject: updates to --enable-monolithic-build code X-Git-Tag: 2.0.0~6896 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=f227016f3d130bbeb1c18e2192db086fd16ea24f;p=lyx.git updates to --enable-monolithic-build code git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@29160 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/INSTALL b/INSTALL index 24c55ea10c..1a84843ac5 100644 --- a/INSTALL +++ b/INSTALL @@ -250,9 +250,9 @@ The following options allow to tweak more precisely the generated code: frontend for now. o --enable-monolithic-build[=boost,client,insets,mathed,core,tex2lyx,frontend-qt4] - that enable monolithic build of the given parts of the source code. This - should reduce the compilation time provided you have enough memory - (>500MB). + that enables monolithic build of the given parts of the source + code. This should reduce the compilation time provided you have + enough memory (>500MB). Compiling and installing LyX diff --git a/configure.ac b/configure.ac index 38b20870b4..5d4a100989 100644 --- a/configure.ac +++ b/configure.ac @@ -398,13 +398,13 @@ AC_ARG_ENABLE(monolithic-build, IFS="$ac_save_ifs"], [enable_monolithic_build=]) -AM_CONDITIONAL(MONOLITHIC_BOOST, test -n "$enable_monolithic_boost") -AM_CONDITIONAL(MONOLITHIC_CLIENT, test -n "$enable_monolithic_client") -AM_CONDITIONAL(MONOLITHIC_INSETS, test -n "$enable_monolithic_insets") -AM_CONDITIONAL(MONOLITHIC_MATHED, test -n "$enable_monolithic_mathed") -AM_CONDITIONAL(MONOLITHIC_CORE, test -n "$enable_monolithic_core") -AM_CONDITIONAL(MONOLITHIC_TEX2LYX, test -n "$enable_monolithic_tex2lyx") -AM_CONDITIONAL(MONOLITHIC_FRONTEND_QT4, test -n "$enable_monolithic_frontend_qt4") +AM_CONDITIONAL(MONOLITHIC_BOOST, test "x$enable_monolithic_boost" = "xyes") +AM_CONDITIONAL(MONOLITHIC_CLIENT, test "x$enable_monolithic_client" = "xyes") +AM_CONDITIONAL(MONOLITHIC_INSETS, test "x$enable_monolithic_insets" = "xyes") +AM_CONDITIONAL(MONOLITHIC_MATHED, test "x$enable_monolithic_mathed" = "xyes") +AM_CONDITIONAL(MONOLITHIC_CORE, test "x$enable_monolithic_core" = "xyes") +AM_CONDITIONAL(MONOLITHIC_TEX2LYX, test "x$enable_monolithic_tex2lyx" = "xyes") +AM_CONDITIONAL(MONOLITHIC_FRONTEND_QT4, test "x$enable_monolithic_frontend_qt4" = "xyes") MSYS_AC_CANONICAL_PATH(lyx_abs_top_srcdir, ${srcdir}) MSYS_AC_CANONICAL_PATH(lyx_abs_installed_localedir, ${real_localedir})