Changeset 1588 for branches/GNU/src/gcc/fastjar
- Timestamp:
- Nov 3, 2004, 6:47:21 AM (21 years ago)
- Location:
- branches/GNU/src/gcc/fastjar
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/GNU/src/gcc/fastjar/ChangeLog
-
Property cvs2svn:cvs-rev
changed from
1.1.1.3
to1.1.1.4
r1587 r1588 1 2004-09-30 Release Manager 2 3 * GCC 3.3.5 Released. 4 5 2004-07-27 Jones Desougi <jones@ingate.com> 6 Kelley Cook <kcook@gcc.gnu.org> 7 8 PR bootstrap/15194 9 * acinclude.m4 (gcc_AC_COMPILE_CHECK_SIZEOF): Return 0 when type 10 doesn't exist. 11 * aclocal.m4: Regenerate. 12 * configure: Regenearate. 13 1 14 2004-05-31 Release Manager 2 15 -
Property cvs2svn:cvs-rev
changed from
-
branches/GNU/src/gcc/fastjar/acinclude.m4
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.1.1.2
r1587 r1588 2 2 dnl Host type sizes probe. 3 3 dnl By Kaveh R. Ghazi. One typo fixed since. 4 dnl Modified to return a size of 0 if type doesn't exist 4 5 dnl 5 6 AC_DEFUN([gcc_AC_COMPILE_CHECK_SIZEOF], … … 21 22 ]) 22 23 if test x$AC_CV_NAME = x ; then 23 AC_ MSG_ERROR([cannot determine a size for $1])24 AC_CV_NAME=0 24 25 fi 25 26 AC_MSG_RESULT($AC_CV_NAME) -
Property cvs2svn:cvs-rev
changed from
-
branches/GNU/src/gcc/fastjar/aclocal.m4
-
Property cvs2svn:cvs-rev
changed from
1.1.1.2
to1.1.1.3
r1587 r1588 14 14 dnl Host type sizes probe. 15 15 dnl By Kaveh R. Ghazi. One typo fixed since. 16 dnl Modified to return a size of 0 if type doesn't exist 16 17 dnl 17 18 AC_DEFUN([gcc_AC_COMPILE_CHECK_SIZEOF], … … 33 34 ]) 34 35 if test x$AC_CV_NAME = x ; then 35 AC_ MSG_ERROR([cannot determine a size for $1])36 AC_CV_NAME=0 36 37 fi 37 38 AC_MSG_RESULT($AC_CV_NAME) -
Property cvs2svn:cvs-rev
changed from
-
branches/GNU/src/gcc/fastjar/configure
-
Property cvs2svn:cvs-rev
changed from
1.1.1.2
to1.1.1.3
r1587 r1588 1877 1877 1878 1878 if test x$ac_cv_sizeof_char = x ; then 1879 { echo "configure: error: cannot determine a size for char" 1>&2; exit 1; }1879 ac_cv_sizeof_char=0 1880 1880 fi 1881 1881 echo "$ac_t""$ac_cv_sizeof_char" 1>&6 … … 1916 1916 1917 1917 if test x$ac_cv_sizeof_short = x ; then 1918 { echo "configure: error: cannot determine a size for short" 1>&2; exit 1; }1918 ac_cv_sizeof_short=0 1919 1919 fi 1920 1920 echo "$ac_t""$ac_cv_sizeof_short" 1>&6 … … 1955 1955 1956 1956 if test x$ac_cv_sizeof_int = x ; then 1957 { echo "configure: error: cannot determine a size for int" 1>&2; exit 1; }1957 ac_cv_sizeof_int=0 1958 1958 fi 1959 1959 echo "$ac_t""$ac_cv_sizeof_int" 1>&6 … … 1994 1994 1995 1995 if test x$ac_cv_sizeof_long = x ; then 1996 { echo "configure: error: cannot determine a size for long" 1>&2; exit 1; }1996 ac_cv_sizeof_long=0 1997 1997 fi 1998 1998 echo "$ac_t""$ac_cv_sizeof_long" 1>&6 … … 2033 2033 2034 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; }2035 ac_cv_sizeof_long_long=0 2036 2036 fi 2037 2037 echo "$ac_t""$ac_cv_sizeof_long_long" 1>&6 -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.