Skip to content

Commit

Permalink
mod_ldap_userdir-1.1.10
Browse files Browse the repository at this point in the history
  • Loading branch information
jwm committed Dec 10, 2006
1 parent 7f23f44 commit 3fb3674
Show file tree
Hide file tree
Showing 7 changed files with 505 additions and 65 deletions.
8 changes: 7 additions & 1 deletion Makefile.in
Expand Up @@ -24,13 +24,19 @@ clean:
rm -rf *.lo *.la *.slo *.so *.o .libs/ *~ core

distclean: clean
rm -rf Makefile config.status config.cache config.log autom4te.cache/
rm -rf Makefile config.status config.cache config.log config.h autom4te.cache/

configure: configure.in
autoconf

config.status: configure
./config.status --recheck

config.h.in: configure.in
autoheader

config.h: config.h.in config.status
./config.status

Makefile: Makefile.in config.status
./config.status
17 changes: 14 additions & 3 deletions README
@@ -1,4 +1,4 @@
mod_ldap_userdir v1.1.9
mod_ldap_userdir v1.1.10
=======================

mod_ldap_userdir is a module that enables the Apache web server to look up
Expand Down Expand Up @@ -39,8 +39,8 @@ the source distribution.
3. How do I install and set up mod_ldap_userdir?
================================================

* gzip -dc mod_ldap_userdir-1.1.9.tar.gz | tar xf -
* cd mod_ldap_userdir-1.1.9
* gzip -dc mod_ldap_userdir-1.1.10.tar.gz | tar xf -
* cd mod_ldap_userdir-1.1.10
* ./configure --with-activate
* make
* make install
Expand Down Expand Up @@ -78,6 +78,17 @@ the source distribution.
4. Changes
==========

v1.1.10:
* Apache 2.2 support. Thanks to Hiroto Kagotani <hiroto.kagotani@gmail.com>
and Takeshi Inagaki <ts-inagaki@kmn.co.jp> for reporting this.
* Refined LDAP over TLS support. Thanks to Hiroto Kagotani
<hiroto.kagotani@gmail.com> and Takeshi Inagaki <ts-inagaki@kmn.co.jp>
for reporting problems when building in non-TLS mode.
* Sun/Solaris LDAP SDK support. Thanks to Takeshi Inagaki
<ts-inagaki@kmn.co.jp> for reporting this.
* Better sanity checking of the timeout value. Thanks to Italo Foppiano
Reyes <ifoppian@udec.cl> for reporting a problem with this.

v1.1.9:
* Add LDAPUserDirServerURL directive, which takes a single LDAP URL
argument. Suggested by Fabien Picarougne
Expand Down
58 changes: 58 additions & 0 deletions config.h.in
@@ -0,0 +1,58 @@
/* config.h.in. Generated from configure.in by autoheader. */

/* Define to 1 if you have the <inttypes.h> header file. */
#undef HAVE_INTTYPES_H

/* Define to 1 if you have the <lber.h> header file. */
#undef HAVE_LBER_H

/* Define if your LDAPURLDesc has a lud_scheme member. */
#undef HAVE_LDAPURLDESC_LUD_SCHEME

/* Define to 1 if you have the <ldap.h> header file. */
#undef HAVE_LDAP_H

/* Define to 1 if you have the `lber' library (-llber). */
#undef HAVE_LIBLBER

/* Define to 1 if you have the <memory.h> header file. */
#undef HAVE_MEMORY_H

/* Define to 1 if you have the <stdint.h> header file. */
#undef HAVE_STDINT_H

/* Define to 1 if you have the <stdlib.h> header file. */
#undef HAVE_STDLIB_H

/* Define to 1 if you have the <strings.h> header file. */
#undef HAVE_STRINGS_H

/* Define to 1 if you have the <string.h> header file. */
#undef HAVE_STRING_H

/* Define to 1 if you have the <sys/stat.h> header file. */
#undef HAVE_SYS_STAT_H

/* Define to 1 if you have the <sys/types.h> header file. */
#undef HAVE_SYS_TYPES_H

/* Define to 1 if you have the <unistd.h> header file. */
#undef HAVE_UNISTD_H

/* Define to the address where bug reports for this package should be sent. */
#undef PACKAGE_BUGREPORT

/* Define to the full name of this package. */
#undef PACKAGE_NAME

/* Define to the full name and version of this package. */
#undef PACKAGE_STRING

/* Define to the one symbol short name of this package. */
#undef PACKAGE_TARNAME

/* Define to the version of this package. */
#undef PACKAGE_VERSION

/* Define to 1 if you have the ANSI C header files. */
#undef STDC_HEADERS

0 comments on commit 3fb3674

Please sign in to comment.