added --with-style=<path-to-style> option for ./configure, patch from php-coder

This commit is contained in:
mathias 2005-01-12 06:13:48 +00:00
parent c20259313b
commit fa28fb7253

View file

@ -506,6 +506,14 @@ AC_ARG_ENABLE(
AC_MSG_RESULT([no])
)
AC_ARG_WITH(
style,
[ --with-style=path style by default (PREFIX/share/fluxbox/styles/Meta)],
DEFAULT_STYLE=$with_style,
DEFAULT_STYLE=$prefix/share/fluxbox/styles/Meta
)
AC_SUBST(DEFAULT_STYLE)
dnl Determine the return type of signal handlers
AC_TYPE_SIGNAL
@ -517,6 +525,7 @@ AC_MSG_RESULT([])
AC_MSG_RESULT([ $PACKAGE version $VERSION configured successfully.])
AC_MSG_RESULT([])
AC_MSG_RESULT([Using '$prefix' for installation.])
AC_MSG_RESULT([Using '$DEFAULT_STYLE' by default style.])
AC_MSG_RESULT([Using '$CXX' for C++ compiler.])
AC_MSG_RESULT([Building with '$CXXFLAGS' for C++ compiler flags.])
AC_MSG_RESULT([Building with '$LIBS' for linker flags.])