aboutsummaryrefslogtreecommitdiff
path: root/configure.in
diff options
context:
space:
mode:
authormathias <mathias>2005-01-12 06:13:48 (GMT)
committermathias <mathias>2005-01-12 06:13:48 (GMT)
commitfa28fb72531414aaa49dc660481ce75b2b70c29f (patch)
tree8cb1353c41cab84cc1584840635d3f3ef3eeaa6a /configure.in
parentc20259313bb14fad8f939222668bde55ca20654a (diff)
downloadfluxbox-fa28fb72531414aaa49dc660481ce75b2b70c29f.zip
fluxbox-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.in9
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
509AC_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)
515AC_SUBST(DEFAULT_STYLE)
516
509dnl Determine the return type of signal handlers 517dnl Determine the return type of signal handlers
510AC_TYPE_SIGNAL 518AC_TYPE_SIGNAL
511 519
@@ -517,6 +525,7 @@ AC_MSG_RESULT([])
517AC_MSG_RESULT([ $PACKAGE version $VERSION configured successfully.]) 525AC_MSG_RESULT([ $PACKAGE version $VERSION configured successfully.])
518AC_MSG_RESULT([]) 526AC_MSG_RESULT([])
519AC_MSG_RESULT([Using '$prefix' for installation.]) 527AC_MSG_RESULT([Using '$prefix' for installation.])
528AC_MSG_RESULT([Using '$DEFAULT_STYLE' by default style.])
520AC_MSG_RESULT([Using '$CXX' for C++ compiler.]) 529AC_MSG_RESULT([Using '$CXX' for C++ compiler.])
521AC_MSG_RESULT([Building with '$CXXFLAGS' for C++ compiler flags.]) 530AC_MSG_RESULT([Building with '$CXXFLAGS' for C++ compiler flags.])
522AC_MSG_RESULT([Building with '$LIBS' for linker flags.]) 531AC_MSG_RESULT([Building with '$LIBS' for linker flags.])