about summary refs log tree commit diff
path: root/configure.in
diff options
context:
space:
mode:
authorAndrey Borzenkov <bor@users.sourceforge.net>2001-03-07 11:40:48 +0000
committerAndrey Borzenkov <bor@users.sourceforge.net>2001-03-07 11:40:48 +0000
commit8c978c4006683e8e3549116b2960c660ff04c225 (patch)
tree2ac8f23089afcff838e47be1495ffcf32e92a090 /configure.in
parent0156de0b0ed00eacc3db963ea039482851fae144 (diff)
downloadzsh-8c978c4006683e8e3549116b2960c660ff04c225.tar.gz
zsh-8c978c4006683e8e3549116b2960c660ff04c225.tar.xz
zsh-8c978c4006683e8e3549116b2960c660ff04c225.zip
unposted: support build with GCC on ReliantUNIX
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in34
1 files changed, 27 insertions, 7 deletions
diff --git a/configure.in b/configure.in
index c31190af1..722cd24f7 100644
--- a/configure.in
+++ b/configure.in
@@ -277,7 +277,14 @@ AC_PROG_CC
 dnl Check for large file support.
 dnl This needs to be done early to get the stuff into the flags.
 if test $lfs != no; then
-zsh_LARGE_FILE_SUPPORT
+dnl Gross hack for ReliantUNIX - GCC does not understand getconf options
+dnl For now just disable LFS in this case
+dnl Any takers?
+  if test "$host" = mips-sni-sysv4 -a -n "$GCC"; then
+    : 
+  else
+    zsh_LARGE_FILE_SUPPORT
+  fi
 fi
 
 dnl if the user hasn't specified CFLAGS, then
@@ -1505,8 +1512,17 @@ char *argv[];
   zsh_cv_sys_elf=yes)])
   DL_EXT="${DL_EXT=so}"
   if test $zsh_cv_sys_elf = yes; then
-    DLLD="${DLLD=$CC}"
-    DLLDARG="${LDARG}"
+    case "$host" in
+      mips-sni-sysv4*)
+        # Forcibly set ld to native compiler to avoid obscure GCC problems
+	DLLD="${DLLD=/usr/ccs/bin/cc}"
+	DLLDARG="${LDARG}"
+      ;;
+      * )
+	DLLD="${DLLD=$CC}"
+	DLLDARG="${LDARG}"
+      ;;
+    esac
   else
     DLLD="${DLLD=ld}"
     DLLDARG=""
@@ -1538,9 +1554,13 @@ char *argv[];
       # unfortunately, we have different compilers
       # that need different flags
       #
-      sni_cc_version=`$CC -V 2>&1 | head -1`
+      if test -n "$GCC"; then
+        sni_cc_version=GCC
+      else
+        sni_cc_version=`$CC -V 2>&1 | head -1`
+      fi
       case "$sni_cc_version" in
-        *CDS* )
+        *CDS*|GCC )
          EXTRA_LDFLAGS="${EXTRA_LDFLAGS=-Wl,-Blargedynsym}"
        ;;
        * )
@@ -1554,8 +1574,8 @@ char *argv[];
    [echo failed >conftestval && cat >conftest.c <<EOM
 fred () { }
 EOM
-    $CC -c $CFLAGS $CPPFLAGS $DLCFLAGS conftest.c 1>&5 2>&5 &&
-    $DLLD -o conftest.$DL_EXT $LDFLAGS $DLLDFLAGS conftest.o 1>&5 2>&5 &&
+    AC_TRY_COMMAND($CC -c $CFLAGS $CPPFLAGS $DLCFLAGS conftest.c 1>&AC_FD_CC) &&
+    AC_TRY_COMMAND($DLLD $LDFLAGS $DLLDFLAGS -o conftest.$DL_EXT conftest.o 1>&AC_FD_CC) &&
     AC_TRY_RUN([
 #include <stdio.h>
 #ifdef HPUXDYNAMIC