[Libreoffice-commits] .: Branch 'feature/helppack' - configure.in
Fridrich Strba
fridrich at kemper.freedesktop.org
Fri Dec 17 03:14:49 PST 2010
configure.in | 21 +++++++++++++++++++++
1 file changed, 21 insertions(+)
New commits:
commit 4ba740a78586fb8107e351f9ff96540fd328f1ff
Author: Fridrich Å trba <fridrich.strba at bluewin.ch>
Date: Fri Dec 17 12:14:27 2010 +0100
Add --with-helppack-integration configure option
diff --git a/configure.in b/configure.in
index 3857aff..e431cbf 100644
--- a/configure.in
+++ b/configure.in
@@ -510,6 +510,13 @@ AC_ARG_WITH(extension-integration,
Please use this switch to include any extension.],
,)
+AC_ARG_WITH(helppack-integration,
+[
+ --with-helppack-integration It will integrate the helppacks to the installer
+ of the product.
+ Please use this switch to include any helppack.],
+,)
+
AC_ARG_WITH(fonts,
[ --without-fonts OOo includes some third-party fonts to provide a reliable
basis for help content, templates, samples, etc.
@@ -7111,6 +7118,20 @@ fi
AC_SUBST(WITH_THEMES)
dnl ===================================================================
+dnl Test whether to integrate helppacks into the product's installer
+dnl ===================================================================
+AC_MSG_CHECKING([for helppack integration])
+if test "z$with_helppack_integration" = "z" -o "z$with_helppack_integration" = "zno" ; then
+ WITH_HELPPACK_INTEGRATION=NO
+ AC_MSG_RESULT([no integration])
+else
+ WITH_HELPPACK_INTEGRATION=YES
+ SCPDEFS="$SCPDEFS -DWITH_HELLPACK_INTEGRATION"
+ AC_MSG_RESULT([integration])
+fi
+AC_SUBST(WITH_HELPPACK_INTEGRATION)
+
+dnl ===================================================================
dnl Test whether to integrate extensions into the product's installer
dnl ===================================================================
AC_MSG_CHECKING([for extensions integration])
More information about the Libreoffice-commits
mailing list