* ltconfig: Check for host_os beeing one of `cygwin', `mingw' or

`os2'. Force ac_cv_exeext to be ".exe" in that case.
This commit is contained in:
Corinna Vinschen 2000-06-28 20:26:53 +00:00
parent ba2048d3ca
commit d3b715788a
2 changed files with 31 additions and 19 deletions

View File

@ -1,3 +1,8 @@
2000-06-28 Corinna Vinschen <vinschen@cygnus.com>
* ltconfig: Check for host_os beeing one of `cygwin', `mingw' or
`os2'. Force ac_cv_exeext to be ".exe" in that case.
2000-06-19 Timothy Wall <twall@cygnus.com>
* configure.in (noconfigdirs): Set noconfigdirs for tic54x target.

View File

@ -623,26 +623,33 @@ echo $ac_n "checking for executable suffix... $ac_c" 1>&6
if eval "test \"`echo '$''{'ac_cv_exeext'+set}'`\" = set"; then
echo $ac_n "(cached) $ac_c" 1>&6
else
ac_cv_exeext="no"
$rm conftest*
echo 'main () { return 0; }' > conftest.c
echo "$progname:629: checking for executable suffix" >& 5
if { (eval echo $progname:630: \"$ac_link\") 1>&5; (eval $ac_link) 2>conftest.err; }; then
# Append any warnings to the config.log.
cat conftest.err 1>&5
case "$host_os" in
cygwin* | mingw* | os2*)
ac_cv_exeext=.exe
;;
*)
ac_cv_exeext="no"
$rm conftest*
echo 'main () { return 0; }' > conftest.c
echo "$progname:634: checking for executable suffix" >& 5
if { (eval echo $progname:635: \"$ac_link\") 1>&5; (eval $ac_link) 2>conftest.err; }; then
# Append any warnings to the config.log.
cat conftest.err 1>&5
for ac_file in conftest.*; do
case $ac_file in
*.c | *.err | *.$objext ) ;;
*) ac_cv_exeext=.`echo $ac_file | sed -e s/conftest.//` ;;
esac
done
else
cat conftest.err 1>&5
echo "$progname: failed program was:" >&5
cat conftest.c >&5
fi
$rm conftest*
for ac_file in conftest.*; do
case $ac_file in
*.c | *.err | *.$objext ) ;;
*) ac_cv_exeext=.`echo $ac_file | sed -e s/conftest.//` ;;
esac
done
else
cat conftest.err 1>&5
echo "$progname: failed program was:" >&5
cat conftest.c >&5
fi
$rm conftest*
;;
esac
fi
if test "X$ac_cv_exeext" = Xno; then
exeext=""