* closed issue #1, added --with-all to configure

--HG--
extra : convert_revision : svn%3Aeebe1cee-a9af-4fe4-bd26-ad572b19c5ab/trunk%4048
This commit is contained in:
mathias 2006-09-15 00:28:53 +00:00
parent e3be6d05c2
commit 27f1687f04
2 changed files with 17 additions and 2 deletions

View file

@ -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

14
configure vendored
View file

@ -14,7 +14,6 @@ CHECK_HASH=1
prefix=/usr/local
##############################################################
msg_chkfor() {
@ -267,7 +266,7 @@ do
Options for configure:
--prefix <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 ]]