[Libreoffice-commits] .: configure.in

Fridrich Strba fridrich at kemper.freedesktop.org
Fri Dec 17 03:15:44 PST 2010


 configure.in |   21 +++++++++++++++++++++
 1 file changed, 21 insertions(+)

New commits:
commit 342b8615bb632f49632aac83c092cccb86e28e01
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 de3861b..b752c93 100755
--- a/configure.in
+++ b/configure.in
@@ -548,6 +548,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,
     AS_HELP_STRING([--without-fonts],
         [LibO includes some third-party fonts to provide a reliable basis for
@@ -7053,6 +7060,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