diff options
author | Rainer Jung <rjung@apache.org> | 2009-01-03 01:58:11 +0100 |
---|---|---|
committer | Rainer Jung <rjung@apache.org> | 2009-01-03 01:58:11 +0100 |
commit | 7567264bca73ad9ec13c185595039a65b970614c (patch) | |
tree | c8f85e5a6d9d02551de523437a8ceb2b97fc98be /support/Makefile.in | |
parent | Need to close temporary file before using it (diff) | |
download | apache2-7567264bca73ad9ec13c185595039a65b970614c.tar.xz apache2-7567264bca73ad9ec13c185595039a65b970614c.zip |
We need to link only ab against libm (because of
sqrt()).
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@730881 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'support/Makefile.in')
-rw-r--r-- | support/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/support/Makefile.in b/support/Makefile.in index 670e465d9d..3425ffe7a6 100644 --- a/support/Makefile.in +++ b/support/Makefile.in @@ -50,7 +50,7 @@ htdbm: $(htdbm_OBJECTS) $(LINK) $(htdbm_LTFLAGS) $(htdbm_OBJECTS) $(PROGRAM_LDADD) ab_OBJECTS = ab.lo -ab_LDADD = $(PROGRAM_LDADD) $(SSL_LIBS) +ab_LDADD = $(PROGRAM_LDADD) $(SSL_LIBS) $(MATH_LIBS) ab: $(ab_OBJECTS) $(LINK) $(ab_LTFLAGS) $(ab_OBJECTS) $(ab_LDADD) |