configure: Avoid problem with recent autoconf.
This commit is contained in:
parent
6a77a36b24
commit
4736c9933f
|
@ -215,16 +215,19 @@ Use the --without-$1 option if you really want this.]) ;;
|
||||||
esac])])
|
esac])])
|
||||||
|
|
||||||
AC_DEFUN([WINE_PRINT_MESSAGES],[ac_save_IFS="$IFS"
|
AC_DEFUN([WINE_PRINT_MESSAGES],[ac_save_IFS="$IFS"
|
||||||
IFS="|"
|
|
||||||
if test "x$wine_notices != "x; then
|
if test "x$wine_notices != "x; then
|
||||||
echo >&AS_MESSAGE_FD
|
echo >&AS_MESSAGE_FD
|
||||||
|
IFS="|"
|
||||||
for msg in $wine_notices; do
|
for msg in $wine_notices; do
|
||||||
|
IFS="$ac_save_IFS"
|
||||||
if test -n "$msg"; then
|
if test -n "$msg"; then
|
||||||
AC_MSG_NOTICE([$msg])
|
AC_MSG_NOTICE([$msg])
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
fi
|
fi
|
||||||
|
IFS="|"
|
||||||
for msg in $wine_warnings; do
|
for msg in $wine_warnings; do
|
||||||
|
IFS="$ac_save_IFS"
|
||||||
if test -n "$msg"; then
|
if test -n "$msg"; then
|
||||||
echo >&2
|
echo >&2
|
||||||
AC_MSG_WARN([$msg])
|
AC_MSG_WARN([$msg])
|
||||||
|
|
|
@ -27744,17 +27744,20 @@ then
|
||||||
fi
|
fi
|
||||||
|
|
||||||
ac_save_IFS="$IFS"
|
ac_save_IFS="$IFS"
|
||||||
IFS="|"
|
|
||||||
if test "x$wine_notices != "x; then
|
if test "x$wine_notices != "x; then
|
||||||
echo >&6
|
echo >&6
|
||||||
|
IFS="|"
|
||||||
for msg in $wine_notices; do
|
for msg in $wine_notices; do
|
||||||
|
IFS="$ac_save_IFS"
|
||||||
if test -n "$msg"; then
|
if test -n "$msg"; then
|
||||||
{ echo "$as_me:$LINENO: $msg" >&5
|
{ echo "$as_me:$LINENO: $msg" >&5
|
||||||
echo "$as_me: $msg" >&6;}
|
echo "$as_me: $msg" >&6;}
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
fi
|
fi
|
||||||
|
IFS="|"
|
||||||
for msg in $wine_warnings; do
|
for msg in $wine_warnings; do
|
||||||
|
IFS="$ac_save_IFS"
|
||||||
if test -n "$msg"; then
|
if test -n "$msg"; then
|
||||||
echo >&2
|
echo >&2
|
||||||
{ echo "$as_me:$LINENO: WARNING: $msg" >&5
|
{ echo "$as_me:$LINENO: WARNING: $msg" >&5
|
||||||
|
|
Loading…
Reference in New Issue