diff options
author | Jeff Law <law@gcc.gnu.org> | 1999-05-19 20:27:28 -0600 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 1999-05-19 20:27:28 -0600 |
commit | 6de94858b971f7e73295163d0a28854ce93024b5 (patch) | |
tree | f3b270d6d29f042f14cece54b30d757857929fe9 /libobjc/configure.in | |
parent | 3d3fcaef678cf102ea7f8b4faa38582e0fc20244 (diff) | |
download | gcc-6de94858b971f7e73295163d0a28854ce93024b5.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: r27050
Diffstat (limited to 'libobjc/configure.in')
-rw-r--r-- | libobjc/configure.in | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/libobjc/configure.in b/libobjc/configure.in index 619ba32a9eb..821dcd2a9de 100644 --- a/libobjc/configure.in +++ b/libobjc/configure.in @@ -36,11 +36,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 @@ -53,7 +48,7 @@ AC_CACHE_VAL(objc_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 objc_cv_compiler_exists=no |