summaryrefslogtreecommitdiffstats
path: root/support
diff options
context:
space:
mode:
authorJoe Orton <jorton@apache.org>2004-03-06 17:47:41 +0100
committerJoe Orton <jorton@apache.org>2004-03-06 17:47:41 +0100
commit15e2a44274e9af57a61b75357f75ecedd953cbfb (patch)
tree786db5b00e8c7a6e236dd0f416ac4213064953d1 /support
parent* include/mpm_common.h (ap_pod_t): Remove 'sa' field. (diff)
downloadapache2-15e2a44274e9af57a61b75357f75ecedd953cbfb.tar.xz
apache2-15e2a44274e9af57a61b75357f75ecedd953cbfb.zip
Fix use of mod_ssl as a DSO linked against static SSL libraries; also
stop linking all of support/* against the SSL libraries: * acinclude.m4 (APACHE_MODULE): Define MOD_FOO_LDADD which each module .la library will be linked against. (APACHE_MODPATH_ADD): Link static modules against the provided libraries. (APACHE_CHECK_SSL_TOOLKIT): Put SSL libraries in SSL_LIBS and export that to config_vars.mk. * support/Makefile.in: Link ab against SSL_LIBS. * modules/ssl/config.m4: Add SSL_LIBS and distcache libraries to MOD_SSL_LDADD. PR: 17217 git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@102870 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'support')
-rw-r--r--support/Makefile.in3
1 files changed, 2 insertions, 1 deletions
diff --git a/support/Makefile.in b/support/Makefile.in
index 9c0ba751bb..8fca31c52b 100644
--- a/support/Makefile.in
+++ b/support/Makefile.in
@@ -50,8 +50,9 @@ htdbm: $(htdbm_OBJECTS)
$(LINK) $(htdbm_LTFLAGS) $(htdbm_OBJECTS) $(PROGRAM_LDADD)
ab_OBJECTS = ab.lo
+ab_LDADD = $(PROGRAM_LDADD) $(SSL_LIBS)
ab: $(ab_OBJECTS)
- $(LINK) $(ab_LTFLAGS) $(ab_OBJECTS) $(PROGRAM_LDADD)
+ $(LINK) $(ab_LTFLAGS) $(ab_OBJECTS) $(ab_LDADD)
checkgid_OBJECTS = checkgid.lo
checkgid: $(checkgid_OBJECTS)