History log of /httpd/modules/session/config.m4
Revision Date Author Comments Expand
cdbbbb3b3f99595bcd7641804a99036b59b106a1 1324760 11-Apr-2012 igalic

Your APR does not include SSL/EVP support. Yes, but how do I enable it? --with-crypto

39a5e6b885a8705613e73c368e063547ec2bf813 1234180 20-Jan-2012 sf

Make APACHE_MODULE() accept an optional prerequisite module for configure. Introduce the following configure time dependencies: mod_proxy_* (except proxy_html) require mod_proxy mod_dav_* require mod_dav mod_session_* require mod_session

05984b042ad07dfdea2d5679f23eeb54ad356d55 1199046 08-Nov-2011 sf

We still have to pass the dependency check to APACHE_MODULE to ensure that mod_session_crypto is disabled with --enable-mods-shared=reallyall

8e9d33792f5a8ed83ebecb84bfc4e6ef641688e2 1198989 07-Nov-2011 trawick

if mod_session_crypto prereq isn't available, don't bail if the module was enabled implicitly

9cc074b9afbd8d17e21b9261ce652823ac750291 1150466 24-Jul-2011 sf

Enable mod_session_crypt if deps are fulfilled and mod_session is enabled

68f2ffbd2579223e3ba259711566cf234ad1ef64 1072155 18-Feb-2011 sf

Actually check for APU_HAVE_CRYPTO at configure time. This fixes a compile error with apr 2 if crypto is disabled.

b7dac0802c5b6a10148680f2d62299a410823d66 956857 22-Jun-2010 bjh

OS/2: Fix building of more modules that depend on symbols from other modules. Affected modules are: mod_heartbeat, mod_session_cookie, mod_session_crypto, mod_session_dbd and mod_disk_cache.

9c5089f9196e199c37d3f3b37141e6eaa6082d17 951766 05-Jun-2010 rjung

Fix broken mod_session_crypto build. Using -I$APR_INCLUDEDIR and -I$APU_INCLUDEDIR breaks for APR 2, because $APU_INCLUDEDIR is empty and a lonely "-I" doesn't do good for the compiler. It also breaks for VPATH builds, because then $APR_INCLUDEDIR contains two paths. Using $APR_INCLUDES $APU_INCLUDES fixes both problems and seems to be the way it is done for other modules.

3a330c2331fc04f7d3f0ce7741bb52b5823f97e1 808722 28-Aug-2009 wrowe

Always make mod_*.h files available where they exist, modpath by modpath

54a04e0f2ce4aa35b3d3f3d006a2ecdffd182766 731009 03-Jan-2009 rjung

Allow feature test for apr_ssl.h to succeed: Add necessary search paths temporarily to CPPFLAGS. Addition to r730717. When switching to another header, no need to again rename the ap_HAVE_APR_CRYPTO variable.

5c67911839826e203af5c50371a11c5386564187 730800 02-Jan-2009 rjung

Prevent empty test statement.

f630466ff92ce91c1a742f37076b2a9aa3784a91 730717 02-Jan-2009 rjung

Add a header check for apr_ssl.h to mod_session_crypto. The modules needs the header which is at the moment only part of the ssl-evp branch of APR.

b535f754a91e46a705ebc1e2ab6a9c23fe1379e6 649262 17-Apr-2008 rpluem

* The previous patch did not work correctly with neither enable nor disable set. It just set all mod_session_* to 'no'.

960518713f64772f9fbf7b51149838681263f8fc 649258 17-Apr-2008 rpluem

* Require to explicitly enable mod_session_crypto since it requires the apr ssl code which is no longer present in apr trunk, but only in a separate branch.

1493835bf795f1402332e4957effa4c45fd0b1b2 649256 17-Apr-2008 rpluem

* Fix r649054: Do the correct thing when neither enable nor disable is specfied.

ddb5225e9909ae016cc0a7e58b4e1caad1109004 649054 17-Apr-2008 jorton

* modules/session/config.m4: Have --disable-session disable mod_session_* also.

fd279fe992f7171dc3f6d4d40d6db5bb74f2d96e 645160 05-Apr-2008 minfrin

mod_session_dbd: Add a session implementation capable of storing session information in a SQL database via the dbd interface. Useful for sites where session privacy is important.

fed63d1b62cc7e56aad77b70ee5b5cc7f5c6aade 644751 04-Apr-2008 minfrin

mod_session_crypto: Add a session encoding implementation capable of encrypting and decrypting sessions wherever they may be stored. Introduces a level of privacy when sessions are stored on the browser.

abe0d0e38b9705f21a13ac8748bce1e3ed35e488 644748 04-Apr-2008 minfrin

mod_session_cookie: Add a session implementation capable of storing session information within cookies on the browser. Useful for high volume sites where server bound sessions are too resource intensive.

fb8ee8b7a3a2503b95bf47685f9083e0b9834e6f 644746 04-Apr-2008 minfrin

mod_session: Add a generic session interface to unify the different attempts at saving persistent sessions across requests.