Changeset 400

Show
Ignore:
Timestamp:
09/07/06 22:29:16 (2 years ago)
Author:
alo
Message:

--

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • cherokee/trunk/TODO

    r46 r400  
    1 To do list 
    2 ========== 
     10.6.0 
     2===== 
    33 
    4 x - Finished task 
     4[ ] Re-license 
     5[ ] Web administration interface 
    56 
    6 [x] Static compilation support 
    7 [x] Virtual domain support 
    8 [x] Home users support (/~user/) 
    9 [x] Net interfaces 
    10 [x] GNOME-VFS handler 
    11 [x] Hide version 
    12 [x] Timeout for keepalive connections 
    13 [x] IPv6 support 
    14 [x] PHP handler 
    15 [x] Information handler 
    16 [x] "Include" in configuration file 
    17 [x] SSL support (TLS) 
    18 [x] Add command line parameters 
    19 [x] IP Ranges restrictions 
    20 [x] Improve setenv() calls in cgi handler 
    21 [x] handler_dirlist to implement shorting 
    22 [ ] regex'ed list to Deny 
    23 [ ] handler_dirlist to manage content-length 
    24 [ ] Stat cache 
    25 [ ] Cache for the encoder modules 
    26 [ ] Something like the <DirectoryMatch> Apache's directive 
    27 [ ] CAST-256 rfc2616, Blowfish 
    28 [ ] Add X509 authorization support into Auth methods 
    297 
     80.7.0 
     9===== 
     10 
     11[ ] Upload progress module 
     12[ ] New header entry 
  • cherokee/trunk/configure.in

    r395 r400  
    2626m4_define([cherokee_minor_version], [6]) 
    2727m4_define([cherokee_micro_version], [0]) 
    28 m4_define([cherokee_patch_version], [b395]) 
     28m4_define([cherokee_patch_version], [b397]) 
    2929m4_define([cherokee_version], m4_format('%s.%s.%s%s', cherokee_major_version, cherokee_minor_version, cherokee_micro_version, cherokee_patch_version)) 
    3030 
     
    895895dnl LDAP 
    896896dnl 
    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" 
     897AC_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 
     914if 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 
    901922else 
    902    have_ldap="no" 
    903 fi 
     923       have_ldap="no" 
     924fi 
     925 
    904926AM_CONDITIONAL(HAVE_LDAP, test $have_ldap = "yes") 
    905927