diff options
author | Jeff Law <law@gcc.gnu.org> | 1999-05-19 20:28:56 -0600 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 1999-05-19 20:28:56 -0600 |
commit | df118d7bcc102db536eb9c1f28161f7251ef8378 (patch) | |
tree | 0a83e08bcf1a6251f181d502a5f4cd825da619d1 /libio | |
parent | 1fa14a88c3b668655e55ee310fb5c955b6138a81 (diff) | |
download | gcc-df118d7bcc102db536eb9c1f28161f7251ef8378.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.
From-SVN: r27051
Diffstat (limited to 'libio')
-rw-r--r-- | libio/ChangeLog | 4 | ||||
-rw-r--r-- | libio/configure.in | 14 |
2 files changed, 5 insertions, 13 deletions
diff --git a/libio/ChangeLog b/libio/ChangeLog index 4bcc68412de..e7b75a1861f 100644 --- a/libio/ChangeLog +++ b/libio/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-17 Mark Kettenis <kettenis@gnu.org> * libioP.h: Only include libc-lock.h if _IO_MTSAFE_IO is defined. diff --git a/libio/configure.in b/libio/configure.in index 084e901aabf..9139a1d6a74 100644 --- a/libio/configure.in +++ b/libio/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 |