configure: autoconf regen (2.69) LIBS

This commit is contained in:
Darryl L. Miles 2024-10-17 21:15:30 +01:00 committed by R. Timothy Edwards
parent a8f5291bd7
commit c3054f265b
1 changed files with 10 additions and 0 deletions

10
scripts/configure vendored
View File

@ -8678,6 +8678,16 @@ if test $usingX11 ; then
gr_libs="$gr_libs \${X11_LDFLAGS}"
fi
for find in \
cairo X11 GL GLU fontconfig freetype
do
if echo "$gr_libs" | grep -q -- "\-l${find}" ; then
LIBS=`echo "$LIBS" | sed -e "s/\-l${find} \?//" | tr -d '\n'`
LIBS=`echo "$LIBS" | sed -e "s/\-l${find} //" | tr -d '\n'`
LIBS=`echo "$LIBS" | sed -e "s/\-l${find}//" | tr -d '\n'`
fi
done
case $target in
*-linux*)