mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-09 18:31:04 +00:00
introduce new --enable-monolithic-build configure option
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@28991 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
67bafed7bb
commit
c0ad52551d
10
configure.ac
10
configure.ac
@ -385,6 +385,16 @@ char * strerror(int n);
|
||||
#endif
|
||||
])
|
||||
|
||||
m4_define([ALLPARTS],boost client insets mathed core tex2lyx frontend_qt4)
|
||||
AC_ARG_ENABLE(monolithic-build,
|
||||
AC_HELP_STRING([--enable-monolithic-build<=LIST>],
|
||||
[Use monolithic build for modules in LIST (default: ALLPARTS)]),
|
||||
[test "$enable_monolithic_build" = yes && enable_monolithic_build="ALLPARTS"
|
||||
test "$enable_monolithic_build" = no && enable_monolithic_build=
|
||||
for i in $enable_monolithic_build ; do
|
||||
eval "enable_monolithic_$i=yes"
|
||||
done],
|
||||
[enable_monolithic_build=])
|
||||
|
||||
AC_ARG_ENABLE(monolithic-boost,
|
||||
AC_HELP_STRING([--enable-monolithic-boost],
|
||||
|
Loading…
Reference in New Issue
Block a user