aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--configure.in10
1 files changed, 10 insertions, 0 deletions
diff --git a/configure.in b/configure.in
index 5c8e712..5952580 100644
--- a/configure.in
+++ b/configure.in
@@ -583,6 +583,15 @@ AC_ARG_WITH(
583) 583)
584AC_SUBST(DEFAULT_INIT) 584AC_SUBST(DEFAULT_INIT)
585 585
586AC_ARG_WITH(
587 locale,
588 [ --with-locale=path location for nls files (PREFIX/share/fluxbox/nls)],
589 LOCALE_PATH=$with_locale_path,
590 LOCALE_PATH=$prefix/share/fluxbox/nls
591)
592AC_DEFINE_UNQUOTED(LOCALEPATH, "$LOCALE_PATH", "location for nls files")
593AC_SUBST(LOCALE_PATH)
594
586dnl Determine the return type of signal handlers 595dnl Determine the return type of signal handlers
587AC_TYPE_SIGNAL 596AC_TYPE_SIGNAL
588 597
@@ -598,6 +607,7 @@ AC_MSG_RESULT([Using '$DEFAULT_MENU' for location menu file.])
598AC_MSG_RESULT([Using '$DEFAULT_STYLE' by default style.]) 607AC_MSG_RESULT([Using '$DEFAULT_STYLE' by default style.])
599AC_MSG_RESULT([Using '$DEFAULT_KEYS' for location keys file.]) 608AC_MSG_RESULT([Using '$DEFAULT_KEYS' for location keys file.])
600AC_MSG_RESULT([Using '$DEFAULT_INIT' for location init file.]) 609AC_MSG_RESULT([Using '$DEFAULT_INIT' for location init file.])
610AC_MSG_RESULT([Using '$LOCALE_PATH' for nls files.])
601AC_MSG_RESULT([Using '$CXX' for C++ compiler.]) 611AC_MSG_RESULT([Using '$CXX' for C++ compiler.])
602AC_MSG_RESULT([Building with '$CXXFLAGS' for C++ compiler flags.]) 612AC_MSG_RESULT([Building with '$CXXFLAGS' for C++ compiler flags.])
603AC_MSG_RESULT([Building with '$LIBS' for linker flags.]) 613AC_MSG_RESULT([Building with '$LIBS' for linker flags.])