From 2569906e5ab6c9e11923f668cf028a9a758eeeaf Mon Sep 17 00:00:00 2001 From: Tim Potter Date: Sun, 28 Sep 2003 11:11:07 +0000 Subject: Change AC_CHECK_LIB_EXT to prepend libraries instead of append. This is the same way AC_CHECK_LIB works. Fix for bug 508. This may have to go a few rounds on the build farm to ensure it works everywhere. (This used to be commit afe8c708f1a7f0c0eb5b7f28b5af193c75ec2178) --- source3/aclocal.m4 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source3/aclocal.m4 b/source3/aclocal.m4 index 52396e56d6..e1ea9385fd 100644 --- a/source3/aclocal.m4 +++ b/source3/aclocal.m4 @@ -179,7 +179,7 @@ AS_IF([test AS_VAR_GET(ac_Lib_ext) = yes], *-l$1*) ;; *) - $2="$$2 -l$1" + $2="-l$1 $$2" ;; esac]) [$6] -- cgit