diff options
author | Rainer Jung <rjung@apache.org> | 2011-07-05 11:24:23 +0200 |
---|---|---|
committer | Rainer Jung <rjung@apache.org> | 2011-07-05 11:24:23 +0200 |
commit | a68daf2a8258b2b5139a9c2d22b509c870441975 (patch) | |
tree | 7641d049340953bba94eb09c5aabe731dd14e7cc /modules/ssl/config.m4 | |
parent | Move PCRE_LIBS from HTTPD_LDFLAGS to (diff) | |
download | apache2-a68daf2a8258b2b5139a9c2d22b509c870441975.tar.xz apache2-a68daf2a8258b2b5139a9c2d22b509c870441975.zip |
Allow to specify module specific custom linker flags
via the MOD_XXX_LDADD variables.
Use APR_ADDTO instead of APR_SETVAR or direct
variable assignment.
This is especially useful when building mod_lua
or mod_deflate against a lua resp. libz which
are installed in non-standard locations.
One can add "-R ..." to MOD_LUA_LDADD and
MOD_DEFLATE_LDADD before configure to fix
the RPATH/RUNPATH of those modules.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1142938 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'modules/ssl/config.m4')
-rw-r--r-- | modules/ssl/config.m4 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/ssl/config.m4 b/modules/ssl/config.m4 index b020acafcb..79f1c64bfd 100644 --- a/modules/ssl/config.m4 +++ b/modules/ssl/config.m4 @@ -45,7 +45,7 @@ ssl_util_ocsp.lo dnl dnl # hook module into the Autoconf mechanism (--enable-ssl option) APACHE_MODULE(ssl, [SSL/TLS support (mod_ssl)], $ssl_objs, , no, [ APACHE_CHECK_SSL_TOOLKIT - APR_SETVAR(MOD_SSL_LDADD, [\$(SSL_LIBS)]) + APR_ADDTO(MOD_SSL_LDADD, [\$(SSL_LIBS)]) CHECK_OCSP if test "x$enable_ssl" = "xshared"; then # The only symbol which needs to be exported is the module |