diff options
author | Ryan Bloom <rbb@apache.org> | 2001-09-28 04:19:39 +0000 |
---|---|---|
committer | Ryan Bloom <rbb@apache.org> | 2001-09-28 04:19:39 +0000 |
commit | ed0af9c112e429e0232bca8bf9d6ae832ec25df0 (patch) | |
tree | 1f1a6bd6fcfba8fdc6cc9b84c738be38a24db561 /support/Makefile.in | |
parent | 12d05cb79e29bb8aa3dd89294f001c01039efd0e (diff) | |
download | httpd-ed0af9c112e429e0232bca8bf9d6ae832ec25df0.tar.gz |
Allow support programs to be compiled against a static version
of libapr. This allows the smaller support programs to be
relocated.
Submitted by: Aaron Bannert <aaron@clove.org>
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@91167 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'support/Makefile.in')
-rw-r--r-- | support/Makefile.in | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/support/Makefile.in b/support/Makefile.in index a0c2c7580c..c64375948f 100644 --- a/support/Makefile.in +++ b/support/Makefile.in @@ -23,23 +23,23 @@ install: htpasswd_OBJECTS = htpasswd.lo htpasswd: $(htpasswd_OBJECTS) - $(LINK) $(htpasswd_OBJECTS) $(PROGRAM_LDADD) + $(LINK) $(htpasswd_LTFLAGS) $(htpasswd_OBJECTS) $(PROGRAM_LDADD) htdigest_OBJECTS = htdigest.lo htdigest: $(htdigest_OBJECTS) - $(LINK) $(htdigest_OBJECTS) $(PROGRAM_LDADD) + $(LINK) $(htdigest_LTFLAGS) $(htdigest_OBJECTS) $(PROGRAM_LDADD) rotatelogs_OBJECTS = rotatelogs.lo rotatelogs: $(rotatelogs_OBJECTS) - $(LINK) $(rotatelogs_OBJECTS) $(PROGRAM_LDADD) + $(LINK) $(rotatelogs_LTFLAGS) $(rotatelogs_OBJECTS) $(PROGRAM_LDADD) logresolve_OBJECTS = logresolve.lo logresolve: $(logresolve_OBJECTS) - $(LINK) $(logresolve_OBJECTS) $(PROGRAM_LDADD) + $(LINK) $(logresolve_LTFLAGS) $(logresolve_OBJECTS) $(PROGRAM_LDADD) ab_OBJECTS = ab.lo ab: $(ab_OBJECTS) - $(LINK) $(ab_OBJECTS) $(PROGRAM_LDADD) + $(LINK) $(ab_LTFLAGS) $(ab_OBJECTS) $(PROGRAM_LDADD) suexec_OBJECTS = suexec.lo suexec: $(suexec_OBJECTS) |