Changeset 1391 for branches/GNU/src/gcc/fastjar/configure
- Timestamp:
- Apr 27, 2004, 8:39:34 PM (21 years ago)
- Location:
- branches/GNU/src/gcc
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/GNU/src/gcc
- Property svn:ignore
-
old new 26 26 configure.vr 27 27 configure.vrs 28 dir.info 28 29 Makefile 29 dir.info30 30 lost+found 31 31 update.out
-
- Property svn:ignore
-
branches/GNU/src/gcc/fastjar/configure
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.1.1.2
r1390 r1391 1692 1692 fi 1693 1693 1694 for ac_hdr in fcntl.h unistd.h sys/param.h stdlib.h 1694 for ac_hdr in fcntl.h unistd.h sys/param.h stdlib.h limits.h 1695 1695 do 1696 1696 ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` … … 1801 1801 1802 1802 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. 1804 echo $ac_n "checking if mkdir takes one argument""... $ac_c" 1>&6 1805 echo "configure:1806: checking if mkdir takes one argument" >&5 1806 if eval "test \"`echo '$''{'gcc_cv_mkdir_takes_one_arg'+set}'`\" = set"; then 1807 echo $ac_n "(cached) $ac_c" 1>&6 1810 1808 else 1811 1809 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 1823 int main() { 1824 mkdir ("foo", 0); 1825 ; return 0; } 1826 EOF 1827 if { (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 1826 1830 else 1827 1831 echo "configure: failed program was:" >&5 1828 1832 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 1835 fi 1836 rm -f conftest* 1837 fi 1838 1839 echo "$ac_t""$gcc_cv_mkdir_takes_one_arg" 1>&6 1840 if test $gcc_cv_mkdir_takes_one_arg = yes ; then 1841 cat >> confdefs.h <<\EOF 1842 #define MKDIR_TAKES_ONE_ARG 1 1843 EOF 1844 1845 fi 1846 1847 1848 echo $ac_n "checking size of char""... $ac_c" 1>&6 1849 echo "configure:1850: checking size of char" >&5 1850 if eval "test \"`echo '$''{'ac_cv_sizeof_char'+set}'`\" = set"; then 1851 echo $ac_n "(cached) $ac_c" 1>&6 1852 else 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 1861 int main() { 1862 switch (0) case 0: case (sizeof (char) == $ac_size):; 1863 ; return 0; } 1864 EOF 1865 if { (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 1868 else 1869 echo "configure: failed program was:" >&5 1870 cat conftest.$ac_ext >&5 1871 fi 1872 rm -f conftest* 1873 if test x$ac_cv_sizeof_char != x ; then break; fi 1874 done 1875 1876 fi 1877 1878 if test x$ac_cv_sizeof_char = x ; then 1879 { echo "configure: error: cannot determine a size for char" 1>&2; exit 1; } 1835 1880 fi 1836 1881 echo "$ac_t""$ac_cv_sizeof_char" 1>&6 … … 1841 1886 1842 1887 echo $ac_n "checking size of short""... $ac_c" 1>&6 1843 echo "configure:18 44: checking size of short" >&51888 echo "configure:1889: checking size of short" >&5 1844 1889 if eval "test \"`echo '$''{'ac_cv_sizeof_short'+set}'`\" = set"; then 1845 1890 echo $ac_n "(cached) $ac_c" 1>&6 1846 1891 else 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. 1850 1893 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 1900 int main() { 1901 switch (0) case 0: case (sizeof (short) == $ac_size):; 1902 ; return 0; } 1903 EOF 1904 if { (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 1865 1907 else 1866 1908 echo "configure: failed program was:" >&5 1867 1909 cat conftest.$ac_ext >&5 1868 rm -fr conftest* 1869 ac_cv_sizeof_short=0 1870 fi 1871 rm -fr conftest* 1872 fi 1873 1910 fi 1911 rm -f conftest* 1912 if test x$ac_cv_sizeof_short != x ; then break; fi 1913 done 1914 1915 fi 1916 1917 if test x$ac_cv_sizeof_short = x ; then 1918 { echo "configure: error: cannot determine a size for short" 1>&2; exit 1; } 1874 1919 fi 1875 1920 echo "$ac_t""$ac_cv_sizeof_short" 1>&6 … … 1880 1925 1881 1926 echo $ac_n "checking size of int""... $ac_c" 1>&6 1882 echo "configure:1 883: checking size of int" >&51927 echo "configure:1928: checking size of int" >&5 1883 1928 if eval "test \"`echo '$''{'ac_cv_sizeof_int'+set}'`\" = set"; then 1884 1929 echo $ac_n "(cached) $ac_c" 1>&6 1885 1930 else 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. 1889 1932 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 1939 int main() { 1940 switch (0) case 0: case (sizeof (int) == $ac_size):; 1941 ; return 0; } 1942 EOF 1943 if { (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 1904 1946 else 1905 1947 echo "configure: failed program was:" >&5 1906 1948 cat conftest.$ac_ext >&5 1907 rm -fr conftest* 1908 ac_cv_sizeof_int=0 1909 fi 1910 rm -fr conftest* 1911 fi 1912 1949 fi 1950 rm -f conftest* 1951 if test x$ac_cv_sizeof_int != x ; then break; fi 1952 done 1953 1954 fi 1955 1956 if test x$ac_cv_sizeof_int = x ; then 1957 { echo "configure: error: cannot determine a size for int" 1>&2; exit 1; } 1913 1958 fi 1914 1959 echo "$ac_t""$ac_cv_sizeof_int" 1>&6 … … 1919 1964 1920 1965 echo $ac_n "checking size of long""... $ac_c" 1>&6 1921 echo "configure:19 22: checking size of long" >&51966 echo "configure:1967: checking size of long" >&5 1922 1967 if eval "test \"`echo '$''{'ac_cv_sizeof_long'+set}'`\" = set"; then 1923 1968 echo $ac_n "(cached) $ac_c" 1>&6 1924 1969 else 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. 1928 1971 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 1978 int main() { 1979 switch (0) case 0: case (sizeof (long) == $ac_size):; 1980 ; return 0; } 1981 EOF 1982 if { (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 1943 1985 else 1944 1986 echo "configure: failed program was:" >&5 1945 1987 cat conftest.$ac_ext >&5 1946 rm -fr conftest* 1947 ac_cv_sizeof_long=0 1948 fi 1949 rm -fr conftest* 1950 fi 1951 1988 fi 1989 rm -f conftest* 1990 if test x$ac_cv_sizeof_long != x ; then break; fi 1991 done 1992 1993 fi 1994 1995 if test x$ac_cv_sizeof_long = x ; then 1996 { echo "configure: error: cannot determine a size for long" 1>&2; exit 1; } 1952 1997 fi 1953 1998 echo "$ac_t""$ac_cv_sizeof_long" 1>&6 … … 1958 2003 1959 2004 echo $ac_n "checking size of long long""... $ac_c" 1>&6 1960 echo "configure: 1961: checking size of long long" >&52005 echo "configure:2006: checking size of long long" >&5 1961 2006 if eval "test \"`echo '$''{'ac_cv_sizeof_long_long'+set}'`\" = set"; then 1962 2007 echo $ac_n "(cached) $ac_c" 1>&6 1963 2008 else 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. 1967 2010 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 2017 int main() { 2018 switch (0) case 0: case (sizeof (long long) == $ac_size):; 2019 ; return 0; } 2020 EOF 2021 if { (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 1982 2024 else 1983 2025 echo "configure: failed program was:" >&5 1984 2026 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 2027 fi 2028 rm -f conftest* 2029 if test x$ac_cv_sizeof_long_long != x ; then break; fi 2030 done 2031 2032 fi 2033 2034 if test x$ac_cv_sizeof_long_long = x ; then 2035 { echo "configure: error: cannot determine a size for long long" 1>&2; exit 1; } 1991 2036 fi 1992 2037 echo "$ac_t""$ac_cv_sizeof_long_long" 1>&6 … … 1997 2042 1998 2043 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. 2044 echo $ac_n "checking byte ordering""... $ac_c" 1>&6 2045 echo "configure:2046: checking byte ordering" >&5 2046 if eval "test \"`echo '$''{'ac_cv_c_compile_endian'+set}'`\" = set"; then 2047 echo $ac_n "(cached) $ac_c" 1>&6 2048 else 2049 ac_cv_c_compile_endian=unknown 2050 2051 ac_ext=c 2052 # CFLAGS is not in ac_cpp because -g, -O, etc. are not valid cpp options. 2053 ac_cpp='$CPP $CPPFLAGS' 2054 ac_compile='${CC-cc} -c $CFLAGS $CPPFLAGS conftest.$ac_ext 1>&5' 2055 ac_link='${CC-cc} -o conftest${ac_exeext} $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS 1>&5' 2056 cross_compiling=$ac_cv_prog_cc_cross 2057 2006 2058 cat > 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> 2015 2064 #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)) | 2030 2074 #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 }; 2078 EOF 2079 if { (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 2095 fi 2096 rm -rf conftest* 2097 ac_ext=c 2098 # CFLAGS is not in ac_cpp because -g, -O, etc. are not valid cpp options. 2099 ac_cpp='$CPP $CPPFLAGS' 2100 ac_compile='${CC-cc} -c $CFLAGS $CPPFLAGS conftest.$ac_ext 1>&5' 2101 ac_link='${CC-cc} -o conftest${ac_exeext} $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS 1>&5' 2102 cross_compiling=$ac_cv_prog_cc_cross 2103 2104 2105 fi 2106 2107 echo "$ac_t""$ac_cv_c_compile_endian" 1>&6 2108 if test $ac_cv_c_compile_endian = unknown; then 2109 { echo "configure: error: *** unable to determine endianness" 1>&2; exit 1; } 2110 elif test $ac_cv_c_compile_endian = big-endian; then 2083 2111 cat >> confdefs.h <<\EOF 2084 #define WORDS_BIG ENDIAN 12112 #define WORDS_BIG_ENDIAN 1 2085 2113 EOF 2086 2114 … … 2101 2129 if test "$with_system_zlib" = yes; then 2102 2130 echo $ac_n "checking for deflate in -lz""... $ac_c" 1>&6 2103 echo "configure:21 04: checking for deflate in -lz" >&52131 echo "configure:2132: checking for deflate in -lz" >&5 2104 2132 ac_lib_var=`echo z'_'deflate | sed 'y%./+-%__p_%'` 2105 2133 if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then … … 2109 2137 LIBS="-lz $LIBS" 2110 2138 cat > conftest.$ac_ext <<EOF 2111 #line 21 12"configure"2139 #line 2140 "configure" 2112 2140 #include "confdefs.h" 2113 2141 /* Override any gcc2 internal prototype to avoid an error. */ … … 2120 2148 ; return 0; } 2121 2149 EOF 2122 if { (eval echo configure:21 23: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then2150 if { (eval echo configure:2151: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 2123 2151 rm -rf conftest* 2124 2152 eval "ac_cv_lib_$ac_lib_var=yes" … … 2153 2181 2154 2182 2183 2184 2185 # Get the version trigger filename from the toplevel 2186 if test "${with_gcc_version_trigger+set}" = set; then 2187 gcc_version_trigger=$with_gcc_version_trigger 2188 else 2189 gcc_version_trigger=${srcdir}/version.c 2190 fi 2191 gcc_version_full=`grep version_string ${gcc_version_trigger} | sed -e 's/.*"\([^"]*\)".*/\1/'` 2192 gcc_version=`echo ${gcc_version_full} | sed -e 's/\([^ ]*\) .*/\1/'` 2155 2193 2156 2194 … … 2313 2351 s%@ZDEPS@%$ZDEPS%g 2314 2352 s%@ZINCS@%$ZINCS%g 2353 s%@gcc_version@%$gcc_version%g 2315 2354 2316 2355 CEOF … … 2321 2360 # Split the substitutions into bite-sized pieces for seds with 2322 2361 # 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.2362 ac_max_sed_cmds=60 # Maximum number of lines to put in a sed script. 2324 2363 ac_file=1 # Number of current file. 2325 2364 ac_beg=1 # First line for current file. -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.