From d21267b50321749e894f4cb792b14b832ccbd7a3 Mon Sep 17 00:00:00 2001 From: David Tardon Date: Thu, 7 Dec 2017 13:45:31 +0100 Subject: allow to build online help too Change-Id: I9b26f952dc681893b25712451535f4b539fd615d --- configure.ac | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac index 91437559fbde..e2833c8bb7af 100644 --- a/configure.ac +++ b/configure.ac @@ -1866,6 +1866,7 @@ AC_ARG_WITH(help, Usage: --with-help build the old local help --without-help no local help (default) --with-help=html build the new HTML local help + --with-help=online build the new HTML online help --with-help=common bundle common files for the local help but do not build the whole help ], @@ -4604,6 +4605,11 @@ if test -n "$with_help" -a "$with_help" != "no" -a $_os != iOS -a $_os != Androi ENABLE_HTMLHELP=TRUE AC_MSG_RESULT([HTML]) ;; + "online") + ENABLE_HTMLHELP=TRUE + HELP_ONLINE=TRUE + AC_MSG_RESULT([HTML]) + ;; *) SCPDEFS="$SCPDEFS -DWITH_HELP" AC_MSG_RESULT([yes]) @@ -4614,6 +4620,7 @@ else fi AC_SUBST([ENABLE_HTMLHELP]) AC_SUBST(HELP_COMMON_ONLY) +AC_SUBST([HELP_ONLINE]) dnl Test whether to include MySpell dictionaries dnl =================================================================== -- cgit