diff options
author | fluxgen <fluxgen> | 2005-03-16 08:42:11 (GMT) |
---|---|---|
committer | fluxgen <fluxgen> | 2005-03-16 08:42:11 (GMT) |
commit | fa930f7edff01672b729c660f7d7679c2aa83f45 (patch) | |
tree | 6ba8a8f097805bbc7be01bd42a36b68c23a9ecd8 /configure.in | |
parent | 6b3400512ab44a790abc8554bc7589e81af2cdd9 (diff) | |
download | fluxbox_pavel-fa930f7edff01672b729c660f7d7679c2aa83f45.zip fluxbox_pavel-fa930f7edff01672b729c660f7d7679c2aa83f45.tar.bz2 |
with menu, style, keys, init options, thanks php-coder
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 29 |
1 files changed, 28 insertions, 1 deletions
diff --git a/configure.in b/configure.in index f01c9f3..ec6b858 100644 --- a/configure.in +++ b/configure.in | |||
@@ -508,13 +508,37 @@ AC_ARG_ENABLE( | |||
508 | ) | 508 | ) |
509 | 509 | ||
510 | AC_ARG_WITH( | 510 | AC_ARG_WITH( |
511 | menu, | ||
512 | [ --with-menu=path location menu file (PREFIX/share/fluxbox/menu)], | ||
513 | DEFAULT_MENU=$with_menu, | ||
514 | DEFAULT_MENU=$prefix/share/fluxbox/menu | ||
515 | ) | ||
516 | AC_SUBST(DEFAULT_MENU) | ||
517 | |||
518 | AC_ARG_WITH( | ||
511 | style, | 519 | style, |
512 | [ --with-style=path style by default (PREFIX/share/fluxbox/styles/Meta)], | 520 | [ --with-style=path style by default (PREFIX/share/fluxbox/styles/Meta)], |
513 | DEFAULT_STYLE=$with_style, | 521 | DEFAULT_STYLE=$with_style, |
514 | DEFAULT_STYLE=$prefix/share/fluxbox/styles/Meta | 522 | DEFAULT_STYLE=$prefix/share/fluxbox/styles/Meta |
515 | ) | 523 | ) |
516 | AC_SUBST(DEFAULT_STYLE) | 524 | AC_SUBST(DEFAULT_STYLE) |
517 | 525 | ||
526 | AC_ARG_WITH( | ||
527 | keys, | ||
528 | [ --with-keys=path location keys file (PREFIX/share/fluxbox/keys)], | ||
529 | DEFAULT_KEYS=$with_keys, | ||
530 | DEFAULT_KEYS=$prefix/share/fluxbox/keys | ||
531 | ) | ||
532 | AC_SUBST(DEFAULT_KEYS) | ||
533 | |||
534 | AC_ARG_WITH( | ||
535 | init, | ||
536 | [ --with-init=path location init file (PREFIX/share/fluxbox/init)], | ||
537 | DEFAULT_INIT=$with_init, | ||
538 | DEFAULT_INIT=$prefix/share/fluxbox/init | ||
539 | ) | ||
540 | AC_SUBST(DEFAULT_INIT) | ||
541 | |||
518 | dnl Determine the return type of signal handlers | 542 | dnl Determine the return type of signal handlers |
519 | AC_TYPE_SIGNAL | 543 | AC_TYPE_SIGNAL |
520 | 544 | ||
@@ -526,7 +550,10 @@ AC_MSG_RESULT([]) | |||
526 | AC_MSG_RESULT([ $PACKAGE version $VERSION configured successfully.]) | 550 | AC_MSG_RESULT([ $PACKAGE version $VERSION configured successfully.]) |
527 | AC_MSG_RESULT([]) | 551 | AC_MSG_RESULT([]) |
528 | AC_MSG_RESULT([Using '$prefix' for installation.]) | 552 | AC_MSG_RESULT([Using '$prefix' for installation.]) |
553 | AC_MSG_RESULT([Using '$DEFAULT_MENU' for location menu file.]) | ||
529 | AC_MSG_RESULT([Using '$DEFAULT_STYLE' by default style.]) | 554 | AC_MSG_RESULT([Using '$DEFAULT_STYLE' by default style.]) |
555 | AC_MSG_RESULT([Using '$DEFAULT_KEYS' for location keys file.]) | ||
556 | AC_MSG_RESULT([Using '$DEFAULT_INIT' for location init file.]) | ||
530 | AC_MSG_RESULT([Using '$CXX' for C++ compiler.]) | 557 | AC_MSG_RESULT([Using '$CXX' for C++ compiler.]) |
531 | AC_MSG_RESULT([Building with '$CXXFLAGS' for C++ compiler flags.]) | 558 | AC_MSG_RESULT([Building with '$CXXFLAGS' for C++ compiler flags.]) |
532 | AC_MSG_RESULT([Building with '$LIBS' for linker flags.]) | 559 | AC_MSG_RESULT([Building with '$LIBS' for linker flags.]) |