Ignore:
Timestamp:
Nov 3, 2004, 6:47:21 AM (21 years ago)
Author:
bird
Message:

GCC v3.3.5 - official sources.

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 to 1.1.1.4
    r1587 r1588  
     12004-09-30  Release Manager
     2
     3        * GCC 3.3.5 Released.
     4
     52004-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
    1142004-05-31  Release Manager
    215
  • branches/GNU/src/gcc/fastjar/acinclude.m4

    • Property cvs2svn:cvs-rev changed from 1.1 to 1.1.1.2
    r1587 r1588  
    22dnl Host type sizes probe.
    33dnl By Kaveh R. Ghazi.  One typo fixed since.
     4dnl Modified to return a size of 0 if type doesn't exist
    45dnl
    56AC_DEFUN([gcc_AC_COMPILE_CHECK_SIZEOF],
     
    2122])
    2223if test x$AC_CV_NAME = x ; then
    23   AC_MSG_ERROR([cannot determine a size for $1])
     24  AC_CV_NAME=0
    2425fi
    2526AC_MSG_RESULT($AC_CV_NAME)
  • branches/GNU/src/gcc/fastjar/aclocal.m4

    • Property cvs2svn:cvs-rev changed from 1.1.1.2 to 1.1.1.3
    r1587 r1588  
    1414dnl Host type sizes probe.
    1515dnl By Kaveh R. Ghazi.  One typo fixed since.
     16dnl Modified to return a size of 0 if type doesn't exist
    1617dnl
    1718AC_DEFUN([gcc_AC_COMPILE_CHECK_SIZEOF],
     
    3334])
    3435if test x$AC_CV_NAME = x ; then
    35   AC_MSG_ERROR([cannot determine a size for $1])
     36  AC_CV_NAME=0
    3637fi
    3738AC_MSG_RESULT($AC_CV_NAME)
  • branches/GNU/src/gcc/fastjar/configure

    • Property cvs2svn:cvs-rev changed from 1.1.1.2 to 1.1.1.3
    r1587 r1588  
    18771877
    18781878if 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
    18801880fi
    18811881echo "$ac_t""$ac_cv_sizeof_char" 1>&6
     
    19161916
    19171917if 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
    19191919fi
    19201920echo "$ac_t""$ac_cv_sizeof_short" 1>&6
     
    19551955
    19561956if 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
    19581958fi
    19591959echo "$ac_t""$ac_cv_sizeof_int" 1>&6
     
    19941994
    19951995if 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
    19971997fi
    19981998echo "$ac_t""$ac_cv_sizeof_long" 1>&6
     
    20332033
    20342034if 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
    20362036fi
    20372037echo "$ac_t""$ac_cv_sizeof_long_long" 1>&6
Note: See TracChangeset for help on using the changeset viewer.