added --with-style=<path-to-style> option for ./configure, patch from php-coder
This commit is contained in:
parent
c20259313b
commit
fa28fb7253
1 changed files with 9 additions and 0 deletions
|
@ -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.])
|
||||
|
|
Loading…
Reference in a new issue