diff options
author | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-05-20 02:27:28 +0000 |
---|---|---|
committer | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-05-20 02:27:28 +0000 |
commit | d77c0735f766fee662ed0c3baf55dfb251afd004 (patch) | |
tree | f3b270d6d29f042f14cece54b30d757857929fe9 /libf2c/configure.in | |
parent | ba3f323bf083fedebd3847d1b9a9e99824c7e109 (diff) | |
download | ppe42-gcc-d77c0735f766fee662ed0c3baf55dfb251afd004.tar.gz ppe42-gcc-d77c0735f766fee662ed0c3baf55dfb251afd004.zip |
libchill, libf2c, libobjc:
* configure.in (AC_PREREQ): Update to 2.13.
(AC_EXEEXT): Call to find possible file extension.
(compiler_name): Use.
* configure: Regenerate.
libio, libstdc++
* configure.in: Test for ${compiler_name}.exe as well.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@27050 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libf2c/configure.in')
-rw-r--r-- | libf2c/configure.in | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/libf2c/configure.in b/libf2c/configure.in index ea1acc2f836..a4c502c2424 100644 --- a/libf2c/configure.in +++ b/libf2c/configure.in @@ -35,11 +35,6 @@ dnl This is needed for a multilibbed build in the source tree so dnl that install-sh and config.sub get found. AC_CONFIG_AUX_DIR($topsrcdir) -# We have to handle 3 cases -- native, cross and canadian cross -- and -# the extension returned from this macro needs to be treated as a possible -# scenario and not the only one. -AC_EXEEXT - # If the language specific compiler does not exist, but the "gcc" directory # does, we do not build anything. Note, $r is set by the top-level Makefile. # Note that when we look for the compiler, we search both with and without @@ -52,7 +47,7 @@ AC_CACHE_VAL(g77_cv_compiler_exists, if test -n "$r"; then if test -d "$r"/gcc; then if test -f "$r"/gcc/$compiler_name \ - || test -f "$r"/gcc/$compiler_name$EXEEXT; then + || test -f "$r"/gcc/$compiler_name.exe; then true else g77_cv_compiler_exists=no |