Commit 67473263 authored by Stefan Krah's avatar Stefan Krah

Issue #16534: On HP-UX ac_cv_olimit_ok=yes is a false positive.

parent 3a237ebc
......@@ -5792,7 +5792,14 @@ fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_olimit_ok" >&5
$as_echo "$ac_cv_olimit_ok" >&6; }
if test $ac_cv_olimit_ok = yes; then
BASECFLAGS="$BASECFLAGS -Olimit 1500"
case $ac_sys_system in
# Issue #16534: On HP-UX ac_cv_olimit_ok=yes is a false positive.
HP-UX*)
;;
*)
BASECFLAGS="$BASECFLAGS -Olimit 1500"
;;
esac
fi
fi
......
......@@ -1203,7 +1203,14 @@ else
CC="$ac_save_cc"])
AC_MSG_RESULT($ac_cv_olimit_ok)
if test $ac_cv_olimit_ok = yes; then
BASECFLAGS="$BASECFLAGS -Olimit 1500"
case $ac_sys_system in
# Issue #16534: On HP-UX ac_cv_olimit_ok=yes is a false positive.
HP-UX*)
;;
*)
BASECFLAGS="$BASECFLAGS -Olimit 1500"
;;
esac
fi
fi
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment