From e275c9685e295cf8d7d212afc3885383e49da89a Mon Sep 17 00:00:00 2001 From: Justin Erenkrantz Date: Sun, 6 Jan 2002 23:39:50 +0000 Subject: [PATCH] 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 --- acinclude.m4 | 4 ++-- 1 file 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]) -- 2.50.1