summaryrefslogtreecommitdiff
path: root/support
diff options
context:
space:
mode:
authorStefan Fritsch <sf@apache.org>2011-02-16 22:38:52 +0000
committerStefan Fritsch <sf@apache.org>2011-02-16 22:38:52 +0000
commit0db0515ac74d10bfabf7bfaa04159c55ddcf369f (patch)
tree8b8644638615c90c8fc6e09bd7dead20c5472db0 /support
parentda84e719048691857ec81f7407c04efc45458559 (diff)
downloadhttpd-0db0515ac74d10bfabf7bfaa04159c55ddcf369f.tar.gz
Fix link errors for crypt() with --no-add-needed/--no-copy-dt-needed-entries,
which is the default for the gold linker. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1071426 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'support')
-rw-r--r--support/Makefile.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/support/Makefile.in b/support/Makefile.in
index 3425ffe7a6..92997b865f 100644
--- a/support/Makefile.in
+++ b/support/Makefile.in
@@ -31,7 +31,7 @@ install:
htpasswd_OBJECTS = htpasswd.lo
htpasswd: $(htpasswd_OBJECTS)
- $(LINK) $(htpasswd_LTFLAGS) $(htpasswd_OBJECTS) $(PROGRAM_LDADD)
+ $(LINK) $(htpasswd_LTFLAGS) $(htpasswd_OBJECTS) $(PROGRAM_LDADD) $(CRYPT_LIBS)
htdigest_OBJECTS = htdigest.lo
htdigest: $(htdigest_OBJECTS)
@@ -47,7 +47,7 @@ logresolve: $(logresolve_OBJECTS)
htdbm_OBJECTS = htdbm.lo
htdbm: $(htdbm_OBJECTS)
- $(LINK) $(htdbm_LTFLAGS) $(htdbm_OBJECTS) $(PROGRAM_LDADD)
+ $(LINK) $(htdbm_LTFLAGS) $(htdbm_OBJECTS) $(PROGRAM_LDADD) $(CRYPT_LIBS)
ab_OBJECTS = ab.lo
ab_LDADD = $(PROGRAM_LDADD) $(SSL_LIBS) $(MATH_LIBS)