Changeset 400
- Timestamp:
- 09/07/06 22:29:16 (2 years ago)
- Files:
-
- cherokee/trunk/TODO (modified) (1 diff)
- cherokee/trunk/configure.in (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
cherokee/trunk/TODO
r46 r400 1 To do list 2 ===== =====1 0.6.0 2 ===== 3 3 4 x - Finished task 4 [ ] Re-license 5 [ ] Web administration interface 5 6 6 [x] Static compilation support7 [x] Virtual domain support8 [x] Home users support (/~user/)9 [x] Net interfaces10 [x] GNOME-VFS handler11 [x] Hide version12 [x] Timeout for keepalive connections13 [x] IPv6 support14 [x] PHP handler15 [x] Information handler16 [x] "Include" in configuration file17 [x] SSL support (TLS)18 [x] Add command line parameters19 [x] IP Ranges restrictions20 [x] Improve setenv() calls in cgi handler21 [x] handler_dirlist to implement shorting22 [ ] regex'ed list to Deny23 [ ] handler_dirlist to manage content-length24 [ ] Stat cache25 [ ] Cache for the encoder modules26 [ ] Something like the <DirectoryMatch> Apache's directive27 [ ] CAST-256 rfc2616, Blowfish28 [ ] Add X509 authorization support into Auth methods29 7 8 0.7.0 9 ===== 10 11 [ ] Upload progress module 12 [ ] New header entry cherokee/trunk/configure.in
r395 r400 26 26 m4_define([cherokee_minor_version], [6]) 27 27 m4_define([cherokee_micro_version], [0]) 28 m4_define([cherokee_patch_version], [b39 5])28 m4_define([cherokee_patch_version], [b397]) 29 29 m4_define([cherokee_version], m4_format('%s.%s.%s%s', cherokee_major_version, cherokee_minor_version, cherokee_micro_version, cherokee_patch_version)) 30 30 … … 895 895 dnl LDAP 896 896 dnl 897 AC_CHECK_LIB(ldap, ldap_init, have_ldap_lib=yes, have_ldap_lib=no) 898 AC_CHECK_HEADER(ldap.h, have_ldap_include=yes, have_ldap_include=no) 899 if test "$have_ldap_lib $have_ldap_include" = "yes yes"; then 900 have_ldap="yes" 897 AC_ARG_WITH([ldap], 898 AC_HELP_STRING([--with-ldap=@<:@ARG@:>@], 899 [use OpenLDAP development library @<:@default=yes@:>@, optionally specify path to dev libs] 900 ), 901 [ 902 if test "$withval" = "no"; then 903 want_ldap="no" 904 elif test "$withval" = "yes"; then 905 want_ldap="yes" 906 else 907 want_ldap="yes" 908 LDAP_CONFIG="$withval" 909 fi 910 ], 911 [want_ldap="yes"] 912 ) 913 914 if test "$want_ldap" = "yes"; then 915 AC_CHECK_LIB(ldap, ldap_init, have_ldap_lib=yes, have_ldap_lib=no) 916 AC_CHECK_HEADER(ldap.h, have_ldap_include=yes, have_ldap_include=no) 917 if test "$have_ldap_lib $have_ldap_include" = "yes yes"; then 918 have_ldap="yes" 919 else 920 have_ldap="no" 921 fi 901 922 else 902 have_ldap="no" 903 fi 923 have_ldap="no" 924 fi 925 904 926 AM_CONDITIONAL(HAVE_LDAP, test $have_ldap = "yes") 905 927