Ignore:
Timestamp:
Apr 27, 2004, 8:39:34 PM (21 years ago)
Author:
bird
Message:

GCC v3.3.3 sources.

Location:
branches/GNU/src/gcc
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/GNU/src/gcc

    • Property svn:ignore
      •  

        old new  
        2626configure.vr
        2727configure.vrs
         28dir.info
        2829Makefile
        29 dir.info
        3030lost+found
        3131update.out
  • branches/GNU/src/gcc/fastjar/configure

    • Property cvs2svn:cvs-rev changed from 1.1 to 1.1.1.2
    r1390 r1391  
    16921692fi
    16931693
    1694 for ac_hdr in fcntl.h unistd.h sys/param.h stdlib.h
     1694for ac_hdr in fcntl.h unistd.h sys/param.h stdlib.h limits.h
    16951695do
    16961696ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'`
     
    18011801
    18021802
    1803 echo $ac_n "checking size of char""... $ac_c" 1>&6
    1804 echo "configure:1805: checking size of char" >&5
    1805 if eval "test \"`echo '$''{'ac_cv_sizeof_char'+set}'`\" = set"; then
    1806   echo $ac_n "(cached) $ac_c" 1>&6
    1807 else
    1808   if test "$cross_compiling" = yes; then
    1809     { echo "configure: error: can not run test program while cross compiling" 1>&2; exit 1; }
     1803# mkdir takes a single argument on some systems.
     1804echo $ac_n "checking if mkdir takes one argument""... $ac_c" 1>&6
     1805echo "configure:1806: checking if mkdir takes one argument" >&5
     1806if eval "test \"`echo '$''{'gcc_cv_mkdir_takes_one_arg'+set}'`\" = set"; then
     1807  echo $ac_n "(cached) $ac_c" 1>&6
    18101808else
    18111809  cat > conftest.$ac_ext <<EOF
    1812 #line 1813 "configure"
    1813 #include "confdefs.h"
    1814 #include <stdio.h>
    1815 main()
    1816 {
    1817   FILE *f=fopen("conftestval", "w");
    1818   if (!f) exit(1);
    1819   fprintf(f, "%d\n", sizeof(char));
    1820   exit(0);
    1821 }
    1822 EOF
    1823 if { (eval echo configure:1824: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
    1824 then
    1825   ac_cv_sizeof_char=`cat conftestval`
     1810#line 1811 "configure"
     1811#include "confdefs.h"
     1812
     1813#include <sys/types.h>
     1814#ifdef HAVE_SYS_STAT_H
     1815# include <sys/stat.h>
     1816#endif
     1817#ifdef HAVE_UNISTD_H
     1818# include <unistd.h>
     1819#endif
     1820#ifdef HAVE_DIRECT_H
     1821# include <direct.h>
     1822#endif
     1823int main() {
     1824mkdir ("foo", 0);
     1825; return 0; }
     1826EOF
     1827if { (eval echo configure:1828: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
     1828  rm -rf conftest*
     1829  gcc_cv_mkdir_takes_one_arg=no
    18261830else
    18271831  echo "configure: failed program was:" >&5
    18281832  cat conftest.$ac_ext >&5
    1829   rm -fr conftest*
    1830   ac_cv_sizeof_char=0
    1831 fi
    1832 rm -fr conftest*
    1833 fi
    1834 
     1833  rm -rf conftest*
     1834  gcc_cv_mkdir_takes_one_arg=yes
     1835fi
     1836rm -f conftest*
     1837fi
     1838
     1839echo "$ac_t""$gcc_cv_mkdir_takes_one_arg" 1>&6
     1840if test $gcc_cv_mkdir_takes_one_arg = yes ; then
     1841   cat >> confdefs.h <<\EOF
     1842#define MKDIR_TAKES_ONE_ARG 1
     1843EOF
     1844
     1845fi
     1846
     1847
     1848echo $ac_n "checking size of char""... $ac_c" 1>&6
     1849echo "configure:1850: checking size of char" >&5
     1850if eval "test \"`echo '$''{'ac_cv_sizeof_char'+set}'`\" = set"; then
     1851  echo $ac_n "(cached) $ac_c" 1>&6
     1852else
     1853  for ac_size in 4 8 1 2 16  ; do # List sizes in rough order of prevalence.
     1854  cat > conftest.$ac_ext <<EOF
     1855#line 1856 "configure"
     1856#include "confdefs.h"
     1857#include "confdefs.h"
     1858#include <sys/types.h>
     1859
     1860
     1861int main() {
     1862switch (0) case 0: case (sizeof (char) == $ac_size):;
     1863; return 0; }
     1864EOF
     1865if { (eval echo configure:1866: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
     1866  rm -rf conftest*
     1867  ac_cv_sizeof_char=$ac_size
     1868else
     1869  echo "configure: failed program was:" >&5
     1870  cat conftest.$ac_ext >&5
     1871fi
     1872rm -f conftest*
     1873  if test x$ac_cv_sizeof_char != x ; then break; fi
     1874done
     1875
     1876fi
     1877
     1878if test x$ac_cv_sizeof_char = x ; then
     1879  { echo "configure: error: cannot determine a size for char" 1>&2; exit 1; }
    18351880fi
    18361881echo "$ac_t""$ac_cv_sizeof_char" 1>&6
     
    18411886
    18421887echo $ac_n "checking size of short""... $ac_c" 1>&6
    1843 echo "configure:1844: checking size of short" >&5
     1888echo "configure:1889: checking size of short" >&5
    18441889if eval "test \"`echo '$''{'ac_cv_sizeof_short'+set}'`\" = set"; then
    18451890  echo $ac_n "(cached) $ac_c" 1>&6
    18461891else
    1847   if test "$cross_compiling" = yes; then
    1848     { echo "configure: error: can not run test program while cross compiling" 1>&2; exit 1; }
    1849 else
     1892  for ac_size in 4 8 1 2 16  ; do # List sizes in rough order of prevalence.
    18501893  cat > conftest.$ac_ext <<EOF
    1851 #line 1852 "configure"
    1852 #include "confdefs.h"
    1853 #include <stdio.h>
    1854 main()
    1855 {
    1856   FILE *f=fopen("conftestval", "w");
    1857   if (!f) exit(1);
    1858   fprintf(f, "%d\n", sizeof(short));
    1859   exit(0);
    1860 }
    1861 EOF
    1862 if { (eval echo configure:1863: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
    1863 then
    1864   ac_cv_sizeof_short=`cat conftestval`
     1894#line 1895 "configure"
     1895#include "confdefs.h"
     1896#include "confdefs.h"
     1897#include <sys/types.h>
     1898
     1899
     1900int main() {
     1901switch (0) case 0: case (sizeof (short) == $ac_size):;
     1902; return 0; }
     1903EOF
     1904if { (eval echo configure:1905: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
     1905  rm -rf conftest*
     1906  ac_cv_sizeof_short=$ac_size
    18651907else
    18661908  echo "configure: failed program was:" >&5
    18671909  cat conftest.$ac_ext >&5
    1868   rm -fr conftest*
    1869   ac_cv_sizeof_short=0
    1870 fi
    1871 rm -fr conftest*
    1872 fi
    1873 
     1910fi
     1911rm -f conftest*
     1912  if test x$ac_cv_sizeof_short != x ; then break; fi
     1913done
     1914
     1915fi
     1916
     1917if test x$ac_cv_sizeof_short = x ; then
     1918  { echo "configure: error: cannot determine a size for short" 1>&2; exit 1; }
    18741919fi
    18751920echo "$ac_t""$ac_cv_sizeof_short" 1>&6
     
    18801925
    18811926echo $ac_n "checking size of int""... $ac_c" 1>&6
    1882 echo "configure:1883: checking size of int" >&5
     1927echo "configure:1928: checking size of int" >&5
    18831928if eval "test \"`echo '$''{'ac_cv_sizeof_int'+set}'`\" = set"; then
    18841929  echo $ac_n "(cached) $ac_c" 1>&6
    18851930else
    1886   if test "$cross_compiling" = yes; then
    1887     { echo "configure: error: can not run test program while cross compiling" 1>&2; exit 1; }
    1888 else
     1931  for ac_size in 4 8 1 2 16  ; do # List sizes in rough order of prevalence.
    18891932  cat > conftest.$ac_ext <<EOF
    1890 #line 1891 "configure"
    1891 #include "confdefs.h"
    1892 #include <stdio.h>
    1893 main()
    1894 {
    1895   FILE *f=fopen("conftestval", "w");
    1896   if (!f) exit(1);
    1897   fprintf(f, "%d\n", sizeof(int));
    1898   exit(0);
    1899 }
    1900 EOF
    1901 if { (eval echo configure:1902: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
    1902 then
    1903   ac_cv_sizeof_int=`cat conftestval`
     1933#line 1934 "configure"
     1934#include "confdefs.h"
     1935#include "confdefs.h"
     1936#include <sys/types.h>
     1937
     1938
     1939int main() {
     1940switch (0) case 0: case (sizeof (int) == $ac_size):;
     1941; return 0; }
     1942EOF
     1943if { (eval echo configure:1944: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
     1944  rm -rf conftest*
     1945  ac_cv_sizeof_int=$ac_size
    19041946else
    19051947  echo "configure: failed program was:" >&5
    19061948  cat conftest.$ac_ext >&5
    1907   rm -fr conftest*
    1908   ac_cv_sizeof_int=0
    1909 fi
    1910 rm -fr conftest*
    1911 fi
    1912 
     1949fi
     1950rm -f conftest*
     1951  if test x$ac_cv_sizeof_int != x ; then break; fi
     1952done
     1953
     1954fi
     1955
     1956if test x$ac_cv_sizeof_int = x ; then
     1957  { echo "configure: error: cannot determine a size for int" 1>&2; exit 1; }
    19131958fi
    19141959echo "$ac_t""$ac_cv_sizeof_int" 1>&6
     
    19191964
    19201965echo $ac_n "checking size of long""... $ac_c" 1>&6
    1921 echo "configure:1922: checking size of long" >&5
     1966echo "configure:1967: checking size of long" >&5
    19221967if eval "test \"`echo '$''{'ac_cv_sizeof_long'+set}'`\" = set"; then
    19231968  echo $ac_n "(cached) $ac_c" 1>&6
    19241969else
    1925   if test "$cross_compiling" = yes; then
    1926     { echo "configure: error: can not run test program while cross compiling" 1>&2; exit 1; }
    1927 else
     1970  for ac_size in 4 8 1 2 16  ; do # List sizes in rough order of prevalence.
    19281971  cat > conftest.$ac_ext <<EOF
    1929 #line 1930 "configure"
    1930 #include "confdefs.h"
    1931 #include <stdio.h>
    1932 main()
    1933 {
    1934   FILE *f=fopen("conftestval", "w");
    1935   if (!f) exit(1);
    1936   fprintf(f, "%d\n", sizeof(long));
    1937   exit(0);
    1938 }
    1939 EOF
    1940 if { (eval echo configure:1941: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
    1941 then
    1942   ac_cv_sizeof_long=`cat conftestval`
     1972#line 1973 "configure"
     1973#include "confdefs.h"
     1974#include "confdefs.h"
     1975#include <sys/types.h>
     1976
     1977
     1978int main() {
     1979switch (0) case 0: case (sizeof (long) == $ac_size):;
     1980; return 0; }
     1981EOF
     1982if { (eval echo configure:1983: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
     1983  rm -rf conftest*
     1984  ac_cv_sizeof_long=$ac_size
    19431985else
    19441986  echo "configure: failed program was:" >&5
    19451987  cat conftest.$ac_ext >&5
    1946   rm -fr conftest*
    1947   ac_cv_sizeof_long=0
    1948 fi
    1949 rm -fr conftest*
    1950 fi
    1951 
     1988fi
     1989rm -f conftest*
     1990  if test x$ac_cv_sizeof_long != x ; then break; fi
     1991done
     1992
     1993fi
     1994
     1995if test x$ac_cv_sizeof_long = x ; then
     1996  { echo "configure: error: cannot determine a size for long" 1>&2; exit 1; }
    19521997fi
    19531998echo "$ac_t""$ac_cv_sizeof_long" 1>&6
     
    19582003
    19592004echo $ac_n "checking size of long long""... $ac_c" 1>&6
    1960 echo "configure:1961: checking size of long long" >&5
     2005echo "configure:2006: checking size of long long" >&5
    19612006if eval "test \"`echo '$''{'ac_cv_sizeof_long_long'+set}'`\" = set"; then
    19622007  echo $ac_n "(cached) $ac_c" 1>&6
    19632008else
    1964   if test "$cross_compiling" = yes; then
    1965     { echo "configure: error: can not run test program while cross compiling" 1>&2; exit 1; }
    1966 else
     2009  for ac_size in 4 8 1 2 16  ; do # List sizes in rough order of prevalence.
    19672010  cat > conftest.$ac_ext <<EOF
    1968 #line 1969 "configure"
    1969 #include "confdefs.h"
    1970 #include <stdio.h>
    1971 main()
    1972 {
    1973   FILE *f=fopen("conftestval", "w");
    1974   if (!f) exit(1);
    1975   fprintf(f, "%d\n", sizeof(long long));
    1976   exit(0);
    1977 }
    1978 EOF
    1979 if { (eval echo configure:1980: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
    1980 then
    1981   ac_cv_sizeof_long_long=`cat conftestval`
     2011#line 2012 "configure"
     2012#include "confdefs.h"
     2013#include "confdefs.h"
     2014#include <sys/types.h>
     2015
     2016
     2017int main() {
     2018switch (0) case 0: case (sizeof (long long) == $ac_size):;
     2019; return 0; }
     2020EOF
     2021if { (eval echo configure:2022: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
     2022  rm -rf conftest*
     2023  ac_cv_sizeof_long_long=$ac_size
    19822024else
    19832025  echo "configure: failed program was:" >&5
    19842026  cat conftest.$ac_ext >&5
    1985   rm -fr conftest*
    1986   ac_cv_sizeof_long_long=0
    1987 fi
    1988 rm -fr conftest*
    1989 fi
    1990 
     2027fi
     2028rm -f conftest*
     2029  if test x$ac_cv_sizeof_long_long != x ; then break; fi
     2030done
     2031
     2032fi
     2033
     2034if test x$ac_cv_sizeof_long_long = x ; then
     2035  { echo "configure: error: cannot determine a size for long long" 1>&2; exit 1; }
    19912036fi
    19922037echo "$ac_t""$ac_cv_sizeof_long_long" 1>&6
     
    19972042
    19982043
    1999 echo $ac_n "checking whether byte ordering is bigendian""... $ac_c" 1>&6
    2000 echo "configure:2001: checking whether byte ordering is bigendian" >&5
    2001 if eval "test \"`echo '$''{'ac_cv_c_bigendian'+set}'`\" = set"; then
    2002   echo $ac_n "(cached) $ac_c" 1>&6
    2003 else
    2004   ac_cv_c_bigendian=unknown
    2005 # See if sys/param.h defines the BYTE_ORDER macro.
     2044echo $ac_n "checking byte ordering""... $ac_c" 1>&6
     2045echo "configure:2046: checking byte ordering" >&5
     2046if eval "test \"`echo '$''{'ac_cv_c_compile_endian'+set}'`\" = set"; then
     2047  echo $ac_n "(cached) $ac_c" 1>&6
     2048else
     2049  ac_cv_c_compile_endian=unknown
     2050
     2051ac_ext=c
     2052# CFLAGS is not in ac_cpp because -g, -O, etc. are not valid cpp options.
     2053ac_cpp='$CPP $CPPFLAGS'
     2054ac_compile='${CC-cc} -c $CFLAGS $CPPFLAGS conftest.$ac_ext 1>&5'
     2055ac_link='${CC-cc} -o conftest${ac_exeext} $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS 1>&5'
     2056cross_compiling=$ac_cv_prog_cc_cross
     2057
    20062058cat > conftest.$ac_ext <<EOF
    2007 #line 2008 "configure"
    2008 #include "confdefs.h"
    2009 #include <sys/types.h>
    2010 #include <sys/param.h>
    2011 int main() {
    2012 
    2013 #if !BYTE_ORDER || !BIG_ENDIAN || !LITTLE_ENDIAN
    2014  bogus endian macros
     2059#line 2060 "configure"
     2060#include "confdefs.h"
     2061
     2062#ifdef HAVE_LIMITS_H
     2063# include <limits.h>
    20152064#endif
    2016 ; return 0; }
    2017 EOF
    2018 if { (eval echo configure:2019: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
    2019   rm -rf conftest*
    2020   # It does; now see whether it defined to BIG_ENDIAN or not.
    2021 cat > conftest.$ac_ext <<EOF
    2022 #line 2023 "configure"
    2023 #include "confdefs.h"
    2024 #include <sys/types.h>
    2025 #include <sys/param.h>
    2026 int main() {
    2027 
    2028 #if BYTE_ORDER != BIG_ENDIAN
    2029  not big endian
     2065/* This structure must have no internal padding.  */
     2066  struct {
     2067    char prefix[sizeof "\nendian:" - 1];
     2068    short word;
     2069    char postfix[2];
     2070 } tester = {
     2071    "\nendian:",
     2072#if SIZEOF_SHORT == 4
     2073    ('A' << (CHAR_BIT * 3)) | ('B' << (CHAR_BIT * 2)) |
    20302074#endif
    2031 ; return 0; }
    2032 EOF
    2033 if { (eval echo configure:2034: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
    2034   rm -rf conftest*
    2035   ac_cv_c_bigendian=yes
    2036 else
    2037   echo "configure: failed program was:" >&5
    2038   cat conftest.$ac_ext >&5
    2039   rm -rf conftest*
    2040   ac_cv_c_bigendian=no
    2041 fi
    2042 rm -f conftest*
    2043 else
    2044   echo "configure: failed program was:" >&5
    2045   cat conftest.$ac_ext >&5
    2046 fi
    2047 rm -f conftest*
    2048 if test $ac_cv_c_bigendian = unknown; then
    2049 if test "$cross_compiling" = yes; then
    2050     { echo "configure: error: can not run test program while cross compiling" 1>&2; exit 1; }
    2051 else
    2052   cat > conftest.$ac_ext <<EOF
    2053 #line 2054 "configure"
    2054 #include "confdefs.h"
    2055 main () {
    2056   /* Are we little or big endian?  From Harbison&Steele.  */
    2057   union
    2058   {
    2059     long l;
    2060     char c[sizeof (long)];
    2061   } u;
    2062   u.l = 1;
    2063   exit (u.c[sizeof (long) - 1] == 1);
    2064 }
    2065 EOF
    2066 if { (eval echo configure:2067: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
    2067 then
    2068   ac_cv_c_bigendian=no
    2069 else
    2070   echo "configure: failed program was:" >&5
    2071   cat conftest.$ac_ext >&5
    2072   rm -fr conftest*
    2073   ac_cv_c_bigendian=yes
    2074 fi
    2075 rm -fr conftest*
    2076 fi
    2077 
    2078 fi
    2079 fi
    2080 
    2081 echo "$ac_t""$ac_cv_c_bigendian" 1>&6
    2082 if test $ac_cv_c_bigendian = yes; then
     2075    ('A' << CHAR_BIT) | 'B',
     2076    'X', '\n'
     2077};
     2078EOF
     2079if { (eval echo configure:2080: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
     2080  od -c conftest.o |
     2081    sed 's/^[0-7]*[     ]*/ /
     2082          s/\*/./g
     2083          s/ \\n/*/g
     2084          s/ [0-9][0-9][0-9]/./g
     2085          s/  \\[^ ]/./g' |
     2086    tr -d '
     2087 ' | tr -s '*' '
     2088' | fold | sed '$a\
     2089' > conftest.dmp
     2090  if   grep 'endian:AB' conftest.dmp >/dev/null 2>&1; then
     2091    ac_cv_c_compile_endian=big-endian
     2092  elif grep 'endian:BA' conftest.dmp >/dev/null 2>&1; then
     2093    ac_cv_c_compile_endian=little-endian
     2094  fi
     2095fi
     2096rm -rf conftest*
     2097ac_ext=c
     2098# CFLAGS is not in ac_cpp because -g, -O, etc. are not valid cpp options.
     2099ac_cpp='$CPP $CPPFLAGS'
     2100ac_compile='${CC-cc} -c $CFLAGS $CPPFLAGS conftest.$ac_ext 1>&5'
     2101ac_link='${CC-cc} -o conftest${ac_exeext} $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS 1>&5'
     2102cross_compiling=$ac_cv_prog_cc_cross
     2103
     2104
     2105fi
     2106
     2107echo "$ac_t""$ac_cv_c_compile_endian" 1>&6
     2108if test $ac_cv_c_compile_endian = unknown; then
     2109  { echo "configure: error: *** unable to determine endianness" 1>&2; exit 1; }
     2110elif test $ac_cv_c_compile_endian = big-endian; then
    20832111  cat >> confdefs.h <<\EOF
    2084 #define WORDS_BIGENDIAN 1
     2112#define WORDS_BIG_ENDIAN 1
    20852113EOF
    20862114
     
    21012129if test "$with_system_zlib" = yes; then
    21022130   echo $ac_n "checking for deflate in -lz""... $ac_c" 1>&6
    2103 echo "configure:2104: checking for deflate in -lz" >&5
     2131echo "configure:2132: checking for deflate in -lz" >&5
    21042132ac_lib_var=`echo z'_'deflate | sed 'y%./+-%__p_%'`
    21052133if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
     
    21092137LIBS="-lz  $LIBS"
    21102138cat > conftest.$ac_ext <<EOF
    2111 #line 2112 "configure"
     2139#line 2140 "configure"
    21122140#include "confdefs.h"
    21132141/* Override any gcc2 internal prototype to avoid an error.  */
     
    21202148; return 0; }
    21212149EOF
    2122 if { (eval echo configure:2123: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
     2150if { (eval echo configure:2151: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
    21232151  rm -rf conftest*
    21242152  eval "ac_cv_lib_$ac_lib_var=yes"
     
    21532181
    21542182
     2183
     2184
     2185# Get the version trigger filename from the toplevel
     2186if test "${with_gcc_version_trigger+set}" = set; then
     2187   gcc_version_trigger=$with_gcc_version_trigger
     2188else
     2189   gcc_version_trigger=${srcdir}/version.c
     2190fi
     2191gcc_version_full=`grep version_string ${gcc_version_trigger} | sed -e 's/.*"\([^"]*\)".*/\1/'`
     2192gcc_version=`echo ${gcc_version_full} | sed -e 's/\([^ ]*\) .*/\1/'`
    21552193
    21562194
     
    23132351s%@ZDEPS@%$ZDEPS%g
    23142352s%@ZINCS@%$ZINCS%g
     2353s%@gcc_version@%$gcc_version%g
    23152354
    23162355CEOF
     
    23212360# Split the substitutions into bite-sized pieces for seds with
    23222361# small command number limits, like on Digital OSF/1 and HP-UX.
    2323 ac_max_sed_cmds=90 # Maximum number of lines to put in a sed script.
     2362ac_max_sed_cmds=60 # Maximum number of lines to put in a sed script.
    23242363ac_file=1 # Number of current file.
    23252364ac_beg=1 # First line for current file.
Note: See TracChangeset for help on using the changeset viewer.