summaryrefslogtreecommitdiffstats
path: root/acinclude.m4
diff options
context:
space:
mode:
authorJustin Erenkrantz <jerenkrantz@apache.org>2002-01-07 00:39:50 +0100
committerJustin Erenkrantz <jerenkrantz@apache.org>2002-01-07 00:39:50 +0100
commit520de25b186afb40109b4debfa45743cd543c240 (patch)
treefc1bb859660aa48069baea586aac7fb0cbdb3177 /acinclude.m4
parentRearranged the log_request_time() code to eliminate the allocation (diff)
downloadapache2-520de25b186afb40109b4debfa45743cd543c240.tar.xz
apache2-520de25b186afb40109b4debfa45743cd543c240.zip
The -L and -R flags are linker flags not libraries. We need to add them to
the correct variable (LDFLAGS) so we can fix 'em up later on. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@92759 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'acinclude.m4')
-rw-r--r--acinclude.m44
1 files changed, 2 insertions, 2 deletions
diff --git a/acinclude.m4 b/acinclude.m4
index ddde36bafb..bda7b56b91 100644
--- a/acinclude.m4
+++ b/acinclude.m4
@@ -478,9 +478,9 @@ if test "x$ap_ssltk_base" = "x"; then
APR_ADDTO(INCLUDES, [-I$ap_ssltk_incdir])
fi
if test "x$ap_ssltk_libdir" != "x/usr/lib"; then
- APR_ADDTO(LIBS, [-L$ap_ssltk_libdir])
+ APR_ADDTO(LDFLAGS, [-L$ap_ssltk_libdir])
if test "x$ap_platform_runtime_link_flag" != "x"; then
- APR_ADDTO(LIBS, [$ap_platform_runtime_link_flag$ap_ssltk_libdir])
+ APR_ADDTO(LDFLAGS, [$ap_platform_runtime_link_flag$ap_ssltk_libdir])
fi
fi
APR_ADDTO(LIBS, [-lssl -lcrypto])