diff options
author | Justin Erenkrantz <jerenkrantz@apache.org> | 2002-01-07 00:39:50 +0100 |
---|---|---|
committer | Justin Erenkrantz <jerenkrantz@apache.org> | 2002-01-07 00:39:50 +0100 |
commit | 520de25b186afb40109b4debfa45743cd543c240 (patch) | |
tree | fc1bb859660aa48069baea586aac7fb0cbdb3177 /acinclude.m4 | |
parent | Rearranged the log_request_time() code to eliminate the allocation (diff) | |
download | apache2-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.m4 | 4 |
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]) |