From 27f1687f047868df24395a5d3f7b6c5874d7c588 Mon Sep 17 00:00:00 2001 From: mathias Date: Fri, 15 Sep 2006 00:28:53 +0000 Subject: [PATCH] * closed issue #1, added --with-all to configure --HG-- extra : convert_revision : svn%3Aeebe1cee-a9af-4fe4-bd26-ad572b19c5ab/trunk%4048 --- CHANGELOG.txt | 5 +++++ configure | 14 ++++++++++++-- 2 files changed, 17 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 05f463d..b7761e9 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -1,5 +1,10 @@ Version 1.0 ---------------------------------------------------------------------- +2006-09-15: + * closed issue #1, added --with-all to configure + * started using google-hosting for issuetracking + (http://code.google.com/p/alock) + 2006-09-11: * made the timeout function more clear * only accept rlen < 50, dont increase it when it makes no sense diff --git a/configure b/configure index 0268313..fda3bce 100755 --- a/configure +++ b/configure @@ -14,7 +14,6 @@ CHECK_HASH=1 prefix=/usr/local - ############################################################## msg_chkfor() { @@ -267,7 +266,7 @@ do Options for configure: --prefix where to install - --debug enable debug + --debug enable debug --with(out)-xrender use Xrender --with(out)-xcursor use Xcursor @@ -278,6 +277,8 @@ do --with(out)-passwd use /etc/passwd --with(out)-hash use sha1,sha2 and md5 based passwords + --with-all use all with-options from above + --help shows usage of the configure script EOF @@ -302,6 +303,15 @@ EOF --with-passwd|--enable-passwd) CHECK_PASSWD=1;; --without-passwd|--disable-passwd) CHECK_PASSWD=0;; + --with-all|--enable-all) + CHECK_PASSWD=1 + CHECK_PAM=1 + CHECK_IMLIB2=1 + CHECK_XCURSOR=1 + CHECK_XRENDER=1 + CHECK_XPM=1 + ;; + --prefix) shift if [[ $# -gt 0 ]]