texinfo-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

texinfo update (Mon May 16 09:52:01 EDT 2005)


From: Karl Berry
Subject: texinfo update (Mon May 16 09:52:01 EDT 2005)
Date: Mon, 16 May 2005 09:52:22 -0400

Index: config.guess
===================================================================
RCS file: /cvsroot/texinfo/texinfo/config.guess,v
retrieving revision 1.44
retrieving revision 1.45
diff -c -r1.44 -r1.45
*** config.guess        13 May 2005 13:38:38 -0000      1.44
--- config.guess        16 May 2005 13:25:44 -0000      1.45
***************
*** 3,9 ****
  #   Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
  #   2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
  
! timestamp='2005-05-12'
  
  # This file is free software; you can redistribute it and/or modify it
  # under the terms of the GNU General Public License as published by
--- 3,9 ----
  #   Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
  #   2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
  
! timestamp='2005-05-15'
  
  # This file is free software; you can redistribute it and/or modify it
  # under the terms of the GNU General Public License as published by
***************
*** 352,358 ****
        exit ;;
      DRS?6000:UNIX_SV:4.2*:7* | DRS?6000:isis:4.2*:7*)
        case `/usr/bin/uname -p` in
!           sparc) echo sparc-icl-nx7 && exit ;;
        esac ;;
      sun4H:SunOS:5.*:*)
        echo sparc-hal-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`
--- 352,358 ----
        exit ;;
      DRS?6000:UNIX_SV:4.2*:7* | DRS?6000:isis:4.2*:7*)
        case `/usr/bin/uname -p` in
!           sparc) echo sparc-icl-nx7; exit ;;
        esac ;;
      sun4H:SunOS:5.*:*)
        echo sparc-hal-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`
***************
*** 463,471 ****
          exit (-1);
        }
  EOF
!       $CC_FOR_BUILD -o $dummy $dummy.c \
!         && $dummy `echo "${UNAME_RELEASE}" | sed -n 's/\([0-9]*\).*/\1/p'` \
!         && exit 0
        echo mips-mips-riscos${UNAME_RELEASE}
        exit ;;
      Motorola:PowerMAX_OS:*:*)
--- 463,472 ----
          exit (-1);
        }
  EOF
!       $CC_FOR_BUILD -o $dummy $dummy.c &&
!         dummyarg=`echo "${UNAME_RELEASE}" | sed -n 's/\([0-9]*\).*/\1/p'` &&
!         SYSTEM_NAME=`$dummy $dummyarg` &&
!           { echo "$SYSTEM_NAME"; exit; }
        echo mips-mips-riscos${UNAME_RELEASE}
        exit ;;
      Motorola:PowerMAX_OS:*:*)
***************
*** 549,556 ****
                        exit(0);
                        }
  EOF
!               $CC_FOR_BUILD -o $dummy $dummy.c && $dummy && exit 0
!               echo rs6000-ibm-aix3.2.5
        elif grep bos324 /usr/include/stdio.h >/dev/null 2>&1; then
                echo rs6000-ibm-aix3.2.4
        else
--- 550,561 ----
                        exit(0);
                        }
  EOF
!               if $CC_FOR_BUILD -o $dummy $dummy.c && SYSTEM_NAME=`$dummy`
!               then
!                       echo "$SYSTEM_NAME"
!               else
!                       echo rs6000-ibm-aix3.2.5
!               fi
        elif grep bos324 /usr/include/stdio.h >/dev/null 2>&1; then
                echo rs6000-ibm-aix3.2.4
        else
***************
*** 655,661 ****
        then
            # avoid double evaluation of $set_cc_for_build
            test -n "$CC_FOR_BUILD" || eval $set_cc_for_build
!           
            # hppa2.0w-hp-hpux* has a 64-bit kernel and a compiler generating
            # 32-bit code.  hppa64-hp-hpux* has the same kernel and a compiler
            # generating 64-bit code.  GNU and HP use different nomenclature:
--- 660,666 ----
        then
            # avoid double evaluation of $set_cc_for_build
            test -n "$CC_FOR_BUILD" || eval $set_cc_for_build
! 
            # hppa2.0w-hp-hpux* has a 64-bit kernel and a compiler generating
            # 32-bit code.  hppa64-hp-hpux* has the same kernel and a compiler
            # generating 64-bit code.  GNU and HP use different nomenclature:
***************
*** 706,712 ****
          exit (0);
        }
  EOF
!       $CC_FOR_BUILD -o $dummy $dummy.c && $dummy && exit 0
        echo unknown-hitachi-hiuxwe2
        exit ;;
      9000/7??:4.3bsd:*:* | 9000/8?[79]:4.3bsd:*:* )
--- 711,718 ----
          exit (0);
        }
  EOF
!       $CC_FOR_BUILD -o $dummy $dummy.c && SYSTEM_NAME=`$dummy` &&
!               { echo "$SYSTEM_NAME"; exit; }
        echo unknown-hitachi-hiuxwe2
        exit ;;
      9000/7??:4.3bsd:*:* | 9000/8?[79]:4.3bsd:*:* )
***************
*** 799,805 ****
      i*:CYGWIN*:*)
        echo ${UNAME_MACHINE}-pc-cygwin
        exit ;;
!     i*:MINGW*:*)
        echo ${UNAME_MACHINE}-pc-mingw32
        exit ;;
      i*:PW*:*)
--- 805,811 ----
      i*:CYGWIN*:*)
        echo ${UNAME_MACHINE}-pc-cygwin
        exit ;;
!     i*:MINGW*:* | i*:windows32*:*)
        echo ${UNAME_MACHINE}-pc-mingw32
        exit ;;
      i*:PW*:*)
***************
*** 878,884 ****
        #endif
  EOF
        eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep ^CPU=`
!       test x"${CPU}" != x && echo "${CPU}-unknown-linux-gnu" && exit 0
        ;;
      mips64:Linux:*:*)
        eval $set_cc_for_build
--- 884,890 ----
        #endif
  EOF
        eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep ^CPU=`
!       test x"${CPU}" != x && { echo "${CPU}-unknown-linux-gnu"; exit; }
        ;;
      mips64:Linux:*:*)
        eval $set_cc_for_build
***************
*** 897,903 ****
        #endif
  EOF
        eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep ^CPU=`
!       test x"${CPU}" != x && echo "${CPU}-unknown-linux-gnu" && exit 0
        ;;
      ppc:Linux:*:*)
        echo powerpc-unknown-linux-gnu
--- 903,909 ----
        #endif
  EOF
        eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep ^CPU=`
!       test x"${CPU}" != x && { echo "${CPU}-unknown-linux-gnu"; exit; }
        ;;
      ppc:Linux:*:*)
        echo powerpc-unknown-linux-gnu
***************
*** 998,1005 ****
        #endif
  EOF
        eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep ^LIBC=`
!       test x"${LIBC}" != x && echo "${UNAME_MACHINE}-pc-linux-${LIBC}" && 
exit 0
!       test x"${TENTATIVE}" != x && echo "${TENTATIVE}" && exit 0
        ;;
      i*86:DYNIX/ptx:4*:*)
        # ptx 4.0 does uname -s correctly, with DYNIX/ptx in there.
--- 1004,1014 ----
        #endif
  EOF
        eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep ^LIBC=`
!       test x"${LIBC}" != x && {
!               echo "${UNAME_MACHINE}-pc-linux-${LIBC}"
!               exit
!       }
!       test x"${TENTATIVE}" != x && { echo "${TENTATIVE}"; exit; }
        ;;
      i*86:DYNIX/ptx:4*:*)
        # ptx 4.0 does uname -s correctly, with DYNIX/ptx in there.
***************
*** 1100,1117 ****
        echo m68k-diab-dnix
        exit ;;
      M68*:*:R3V[5678]*:*)
!       test -r /sysV68 && echo 'm68k-motorola-sysv' && exit 0 ;;
      3[345]??:*:4.0:3.0 | 3[34]??A:*:4.0:3.0 | 3[34]??,*:*:4.0:3.0 | 
3[34]??/*:*:4.0:3.0 | 4400:*:4.0:3.0 | 4850:*:4.0:3.0 | SKA40:*:4.0:3.0 | 
SDS2:*:4.0:3.0 | SHG2:*:4.0:3.0 | S7501*:*:4.0:3.0)
        OS_REL=''
        test -r /etc/.relid \
        && OS_REL=.`sed -n 's/[^ ]* [^ ]* \([0-9][0-9]\).*/\1/p' < /etc/.relid`
        /bin/uname -p 2>/dev/null | grep 86 >/dev/null \
!         && echo i486-ncr-sysv4.3${OS_REL} && exit 0
        /bin/uname -p 2>/dev/null | /bin/grep entium >/dev/null \
!         && echo i586-ncr-sysv4.3${OS_REL} && exit 0 ;;
      3[34]??:*:4.0:* | 3[34]??,*:*:4.0:*)
          /bin/uname -p 2>/dev/null | grep 86 >/dev/null \
!           && echo i486-ncr-sysv4 && exit 0 ;;
      m68*:LynxOS:2.*:* | m68*:LynxOS:3.0*:*)
        echo m68k-unknown-lynxos${UNAME_RELEASE}
        exit ;;
--- 1109,1126 ----
        echo m68k-diab-dnix
        exit ;;
      M68*:*:R3V[5678]*:*)
!       test -r /sysV68 && { echo 'm68k-motorola-sysv'; exit; } ;;
      3[345]??:*:4.0:3.0 | 3[34]??A:*:4.0:3.0 | 3[34]??,*:*:4.0:3.0 | 
3[34]??/*:*:4.0:3.0 | 4400:*:4.0:3.0 | 4850:*:4.0:3.0 | SKA40:*:4.0:3.0 | 
SDS2:*:4.0:3.0 | SHG2:*:4.0:3.0 | S7501*:*:4.0:3.0)
        OS_REL=''
        test -r /etc/.relid \
        && OS_REL=.`sed -n 's/[^ ]* [^ ]* \([0-9][0-9]\).*/\1/p' < /etc/.relid`
        /bin/uname -p 2>/dev/null | grep 86 >/dev/null \
!         && { echo i486-ncr-sysv4.3${OS_REL}; exit; }
        /bin/uname -p 2>/dev/null | /bin/grep entium >/dev/null \
!         && { echo i586-ncr-sysv4.3${OS_REL}; exit; } ;;
      3[34]??:*:4.0:* | 3[34]??,*:*:4.0:*)
          /bin/uname -p 2>/dev/null | grep 86 >/dev/null \
!           && { echo i486-ncr-sysv4; exit; } ;;
      m68*:LynxOS:2.*:* | m68*:LynxOS:3.0*:*)
        echo m68k-unknown-lynxos${UNAME_RELEASE}
        exit ;;
***************
*** 1404,1410 ****
  }
  EOF
  
! $CC_FOR_BUILD -o $dummy $dummy.c 2>/dev/null && $dummy && exit 0
  
  # Apollos put the system type in the environment.
  
--- 1413,1420 ----
  }
  EOF
  
! $CC_FOR_BUILD -o $dummy $dummy.c 2>/dev/null && SYSTEM_NAME=`$dummy` &&
!       { echo "$SYSTEM_NAME"; exit; }
  
  # Apollos put the system type in the environment.
  
P config.guess


reply via email to

[Prev in Thread] Current Thread [Next in Thread]