diff options
author | mathias <mathias> | 2005-01-12 06:13:48 (GMT) |
---|---|---|
committer | mathias <mathias> | 2005-01-12 06:13:48 (GMT) |
commit | fa28fb72531414aaa49dc660481ce75b2b70c29f (patch) | |
tree | 8cb1353c41cab84cc1584840635d3f3ef3eeaa6a /configure.in | |
parent | c20259313bb14fad8f939222668bde55ca20654a (diff) | |
download | fluxbox_pavel-fa28fb72531414aaa49dc660481ce75b2b70c29f.zip fluxbox_pavel-fa28fb72531414aaa49dc660481ce75b2b70c29f.tar.bz2 |
added --with-style=<path-to-style> option for ./configure, patch from php-coder
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/configure.in b/configure.in index cc31de9..61fc442 100644 --- a/configure.in +++ b/configure.in | |||
@@ -506,6 +506,14 @@ AC_ARG_ENABLE( | |||
506 | AC_MSG_RESULT([no]) | 506 | AC_MSG_RESULT([no]) |
507 | ) | 507 | ) |
508 | 508 | ||
509 | AC_ARG_WITH( | ||
510 | style, | ||
511 | [ --with-style=path style by default (PREFIX/share/fluxbox/styles/Meta)], | ||
512 | DEFAULT_STYLE=$with_style, | ||
513 | DEFAULT_STYLE=$prefix/share/fluxbox/styles/Meta | ||
514 | ) | ||
515 | AC_SUBST(DEFAULT_STYLE) | ||
516 | |||
509 | dnl Determine the return type of signal handlers | 517 | dnl Determine the return type of signal handlers |
510 | AC_TYPE_SIGNAL | 518 | AC_TYPE_SIGNAL |
511 | 519 | ||
@@ -517,6 +525,7 @@ AC_MSG_RESULT([]) | |||
517 | AC_MSG_RESULT([ $PACKAGE version $VERSION configured successfully.]) | 525 | AC_MSG_RESULT([ $PACKAGE version $VERSION configured successfully.]) |
518 | AC_MSG_RESULT([]) | 526 | AC_MSG_RESULT([]) |
519 | AC_MSG_RESULT([Using '$prefix' for installation.]) | 527 | AC_MSG_RESULT([Using '$prefix' for installation.]) |
528 | AC_MSG_RESULT([Using '$DEFAULT_STYLE' by default style.]) | ||
520 | AC_MSG_RESULT([Using '$CXX' for C++ compiler.]) | 529 | AC_MSG_RESULT([Using '$CXX' for C++ compiler.]) |
521 | AC_MSG_RESULT([Building with '$CXXFLAGS' for C++ compiler flags.]) | 530 | AC_MSG_RESULT([Building with '$CXXFLAGS' for C++ compiler flags.]) |
522 | AC_MSG_RESULT([Building with '$LIBS' for linker flags.]) | 531 | AC_MSG_RESULT([Building with '$LIBS' for linker flags.]) |