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 /libstdc++ | |
parent | ba3f323bf083fedebd3847d1b9a9e99824c7e109 (diff) | |
download | gcc-d77c0735f766fee662ed0c3baf55dfb251afd004.tar.gz |
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 'libstdc++')
-rw-r--r-- | libstdc++/ChangeLog | 4 | ||||
-rw-r--r-- | libstdc++/configure.in | 14 |
2 files changed, 5 insertions, 13 deletions
diff --git a/libstdc++/ChangeLog b/libstdc++/ChangeLog index f6fa7dd3838..8dd6c35bfd4 100644 --- a/libstdc++/ChangeLog +++ b/libstdc++/ChangeLog @@ -1,3 +1,7 @@ +1999-05-20 Angela Marie Thomas <angela@cygnus.com> + + * configure.in: Test for ${compiler_name}.exe as well. + 1999-05-15 Mark Kettenis <kettenis@gnu.org> * configure.in: Add shared library support for the Hurd diff --git a/libstdc++/configure.in b/libstdc++/configure.in index 8262565bd88..af1d9314f4d 100644 --- a/libstdc++/configure.in +++ b/libstdc++/configure.in @@ -2,18 +2,6 @@ # necessary for a configure script to process the program in # this directory. For more information, look at ../configure. -# find a possible extension of the just-built C++ compiler. Note that this -# is not the only choice, taking into cross and canadian cross into -# account, and we need to search for with and without the extension. -case "${host_alias}" in -*cygwin* | *mingw32*) - EXEEXT=.exe - ;; -*) - EXEEXT= - ;; -esac - # 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 @@ -25,7 +13,7 @@ rm -f skip-this-dir if test -n "$r" && [ -z "$norecursion" ] ; 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 echo "rm -f multilib.out" > skip-this-dir |