diff options
author | Joe Orton <jorton@apache.org> | 2017-11-28 10:31:00 +0100 |
---|---|---|
committer | Joe Orton <jorton@apache.org> | 2017-11-28 10:31:00 +0100 |
commit | df2cdee6e85a15c2be1c701e8a764527aed5b85b (patch) | |
tree | 6e3931910080f8f381a1777fcf2c86c6c8e0f35f /support/Makefile.in | |
parent | * build/config_vars.sh.in: Trim more variables from installed config_vars.mk. (diff) | |
download | apache2-df2cdee6e85a15c2be1c701e8a764527aed5b85b.tar.xz apache2-df2cdee6e85a15c2be1c701e8a764527aed5b85b.zip |
* support/Makefile.in, acinclude.m4: Add OpenSSL libraries at the end of the
ab link line, not the start.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1816534 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'support/Makefile.in')
-rw-r--r-- | support/Makefile.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/support/Makefile.in b/support/Makefile.in index 65b77c0e4f..4836cc2e57 100644 --- a/support/Makefile.in +++ b/support/Makefile.in @@ -60,12 +60,12 @@ htdbm: $(htdbm_OBJECTS) $(LINK) $(htdbm_LTFLAGS) $(htdbm_OBJECTS) $(PROGRAM_LDADD) $(CRYPT_LIBS) ab_OBJECTS = ab.lo -ab_LDADD = $(PROGRAM_LDADD) $(MATH_LIBS) +ab_LDADD = $(PROGRAM_LDADD) $(MATH_LIBS) $(ab_LIBS) ab.lo: ab.c $(LIBTOOL) --mode=compile $(CC) $(ab_CFLAGS) $(ALL_CFLAGS) $(ALL_CPPFLAGS) \ $(ALL_INCLUDES) $(PICFLAGS) $(LTCFLAGS) -c $< && touch $@ ab: $(ab_OBJECTS) - $(LIBTOOL) --mode=link $(CC) $(ALL_CFLAGS) $(ab_LDFLAGS) $(PILDFLAGS) \ + $(LIBTOOL) --mode=link $(CC) $(ALL_CFLAGS) $(PILDFLAGS) \ $(LT_LDFLAGS) $(ALL_LDFLAGS) -o $@ $(ab_LTFLAGS) $(ab_OBJECTS) $(ab_LDADD) checkgid_OBJECTS = checkgid.lo |