From: Justin Erenkrantz Date: Sun, 6 Jan 2002 23:39:50 +0000 (+0000) Subject: The -L and -R flags are linker flags not libraries. We need to add them to X-Git-Tag: 2.0.30~18 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=520de25b186afb40109b4debfa45743cd543c240;p=apache 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 --- 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])