openbsd-ports/x11/vlc/patches/patch-aclocal_m4
naddy a10987a3cd Make sure that the dynamic libiconv and libintl are found. Linking
with the static ones leads to problems down the road.  ok jolan@
2004-10-05 20:49:08 +00:00

28 lines
1.4 KiB
Plaintext

$OpenBSD: patch-aclocal_m4,v 1.1 2004/10/05 20:49:08 naddy Exp $
--- aclocal.m4.orig Tue Oct 5 19:38:32 2004
+++ aclocal.m4 Tue Oct 5 19:40:46 2004
@@ -2212,9 +2212,9 @@ AC_DEFUN([AC_LIB_LINKFLAGS_BODY],
found_so=
found_a=
if test $use_additional = yes; then
- if test -n "$shlibext" && test -f "$additional_libdir/lib$name.$shlibext"; then
+ if test -n "$shlibext" && test "`echo $additional_libdir/lib$name.$shlibext*`" != "$additional_libdir/lib$name.$shlibext*"; then
found_dir="$additional_libdir"
- found_so="$additional_libdir/lib$name.$shlibext"
+ found_so="-l$name"
if test -f "$additional_libdir/lib$name.la"; then
found_la="$additional_libdir/lib$name.la"
fi
@@ -2234,9 +2234,9 @@ AC_DEFUN([AC_LIB_LINKFLAGS_BODY],
case "$x" in
-L*)
dir=`echo "X$x" | sed -e 's/^X-L//'`
- if test -n "$shlibext" && test -f "$dir/lib$name.$shlibext"; then
+ if test -n "$shlibext" && test "`echo $dir/lib$name.$shlibext*`" != "$dir/lib$name.$shlibext*"; then
found_dir="$dir"
- found_so="$dir/lib$name.$shlibext"
+ found_so="-l$name"
if test -f "$dir/lib$name.la"; then
found_la="$dir/lib$name.la"
fi