diff options
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/configure.ac b/configure.ac index b221ab89a713..3f9805e4ff82 100644 --- a/configure.ac +++ b/configure.ac @@ -5711,7 +5711,7 @@ dnl =================================================================== ENABLE_HTMLHELP= HELP_OMINDEX_PAGE= HELP_ONLINE= -ENABLE_LOCALHELP= +WITH_HELPPACKS= AC_MSG_CHECKING([which help to build]) if test -n "$with_help" -a "$with_help" != "no"; then @@ -5720,7 +5720,7 @@ if test -n "$with_help" -a "$with_help" != "no"; then case "$with_help" in "html") ENABLE_HTMLHELP=TRUE - ENABLE_LOCALHELP=TRUE + WITH_HELPPACKS=TRUE SCPDEFS="$SCPDEFS -DWITH_HELPPACKS" AC_MSG_RESULT([HTML (local)]) ;; @@ -5730,7 +5730,7 @@ if test -n "$with_help" -a "$with_help" != "no"; then AC_MSG_RESULT([HTML (online)]) ;; yes) - ENABLE_LOCALHELP=TRUE + WITH_HELPPACKS=TRUE SCPDEFS="$SCPDEFS -DWITH_HELPPACKS" AC_MSG_RESULT([XML (local)]) ;; @@ -5787,7 +5787,7 @@ fi dnl Test whether to integrate helppacks into the product's installer AC_MSG_CHECKING([for helppack integration]) -if test -z "$ENABLE_LOCALHELP" -o "$with_helppack_integration" = no; then +if test -z "$WITH_HELPPACKS" -o "$with_helppack_integration" = no; then AC_MSG_RESULT([no integration]) else SCPDEFS="$SCPDEFS -DWITH_HELPPACK_INTEGRATION" @@ -5797,9 +5797,7 @@ fi AC_SUBST([ENABLE_HTMLHELP]) AC_SUBST([HELP_OMINDEX_PAGE]) AC_SUBST([HELP_ONLINE]) -if test "$ENABLE_LOCALHELP" = "TRUE" ; then - AC_DEFINE(HAVE_FEATURE_LOCAL_HELP) -fi +# WITH_HELPPACKS is used only in configure dnl =================================================================== dnl Set up a different compiler to produce tools to run on the build |