mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-09 18:31:04 +00:00
Allow bundled saxon not to be installed.
This commit is contained in:
parent
4e2f8dbbeb
commit
901356fd58
@ -939,3 +939,16 @@ AC_DEFUN([LYX_SET_VERSION_INFO],
|
||||
AC_SUBST(LYX_USERDIR_VER,"$lyx_userdir_ver")
|
||||
])
|
||||
|
||||
AC_DEFUN([LYX_CHECK_WITH_SAXON],
|
||||
[
|
||||
lyx_use_saxon=true
|
||||
AC_ARG_WITH(saxon, AS_HELP_STRING([--without-saxon],[do not install saxon library (epub export)]))
|
||||
test "$with_saxon" = "no" && lyx_use_saxon=false
|
||||
|
||||
if $lyx_use_saxon ; then
|
||||
AC_MSG_RESULT(Set to installing internal saxon.)
|
||||
fi
|
||||
|
||||
AM_CONDITIONAL(SAXON_INSTALL, $lyx_use_saxon)
|
||||
])
|
||||
|
||||
|
@ -196,6 +196,8 @@ AC_FUNC_SELECT_ARGTYPES
|
||||
LYX_CHECK_SPELL_ENGINES
|
||||
LYX_USE_INCLUDED_MYTHES
|
||||
|
||||
LYX_CHECK_WITH_SAXON
|
||||
|
||||
lyx_client_subdir=true
|
||||
dnl LIBS already contains some X extra libs that may interfere.
|
||||
save_LIBS="$LIBS"
|
||||
|
@ -2872,10 +2872,16 @@ dist_xtemplates_DATA = \
|
||||
dist_scripts_DATA += scripts/docbook2epub.py
|
||||
|
||||
#2) xslt processor - Saxon 6.5.5
|
||||
dist_scripts_DATA += \
|
||||
SAXON_FILES = \
|
||||
scripts/saxon6.LICENSE.txt \
|
||||
scripts/saxon6.5.5.jar
|
||||
|
||||
if SAXON_INSTALL
|
||||
dist_scripts_DATA += $(SAXON_FILES)
|
||||
else
|
||||
dist_noinst_DATA += $(SAXON_FILES)
|
||||
endif
|
||||
|
||||
#3) xslt Stylesheets 1.79.2
|
||||
docbookdir = $(pkgdatadir)/docbook
|
||||
dist_docbook_DATA = \
|
||||
|
Loading…
Reference in New Issue
Block a user