diff options
author | Tom Tromey <tromey@gcc.gnu.org> | 1999-06-24 20:06:09 +0000 |
---|---|---|
committer | Tom Tromey <tromey@gcc.gnu.org> | 1999-06-24 20:06:09 +0000 |
commit | 0d16618c58103a8956b58e7d7476b7262828d93e (patch) | |
tree | f577c36db61fa83932e1fd4b93c845f64b0d2b7a /libjava/include | |
parent | fe574d5d92f83b0b34a8d4cb782f2885a28d3754 (diff) | |
download | gcc-0d16618c58103a8956b58e7d7476b7262828d93e.zip gcc-0d16618c58103a8956b58e7d7476b7262828d93e.tar.gz gcc-0d16618c58103a8956b58e7d7476b7262828d93e.tar.bz2 |
[multiple changes]
Fri May 28 22:20:03 1999 Anthony Green <green@cygnus.com>
* java/lang/fdlibm.h: Don't use __uint32_t. Include mprec.h.
* java/lang/e_log.c: Don't use __uint32_t.
1999-05-27 Eric Christopher <echristo@cygnus.com>
* configure: Rebuilt
* configure.in: Fixed ISO C9X and namespace collision with __uint32_t
* acconfig.h: Rebuilt
* include/config.h.in: Rebuilt
* java/lang/mprec.h, java/lang/e_acos.c, java/lang/e_asin.c,
java/lang/e_atan2.c, java/lang/e_exp.c, java/lang/e_fmod.c,
e_log.c, java/lang/e_pow.c, java/lang/e_rem_pio2.c,
java/lang/e_remainder.c, java/lang/e_sqrt.c, java/lang/fdlibm.h,
k_tan.c, java/lang/mprec.h, java/lang/s_atan.c,
java/lang/s_ceil.c, java/lang/s_copysign.c, java/lang/s_fabs.c,
s_floor.c, java/lang/s_rint.c, java/lang/sf_rint.c: Fixed ISO C9X
and namespace collision with __uint32_t
From-SVN: r27729
Diffstat (limited to 'libjava/include')
-rw-r--r-- | libjava/include/config.h.in | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/libjava/include/config.h.in b/libjava/include/config.h.in index c4acd69..be94a75 100644 --- a/libjava/include/config.h.in +++ b/libjava/include/config.h.in @@ -40,9 +40,12 @@ /* Define if you have strerror. */ #undef HAVE_STRERROR -/* Define if you have __int32_t and __uint32_t. */ +/* Define if you have int32_t and uint32_t. */ #undef HAVE_INT32_DEFINED +/* Define if you have u_int32_t */ +#undef HAVE_BSD_INT32_DEFINED + /* Define if you're running eCos. */ #undef ECOS @@ -214,6 +217,9 @@ /* Define if you have the <fcntl.h> header file. */ #undef HAVE_FCNTL_H +/* Define if you have the <inttypes.h> header file. */ +#undef HAVE_INTTYPES_H + /* Define if you have the <netdb.h> header file. */ #undef HAVE_NETDB_H @@ -223,6 +229,12 @@ /* Define if you have the <pwd.h> header file. */ #undef HAVE_PWD_H +/* Define if you have the <stdint.h> header file. */ +#undef HAVE_STDINT_H + +/* Define if you have the <sys/config.h> header file. */ +#undef HAVE_SYS_CONFIG_H + /* Define if you have the <sys/filio.h> header file. */ #undef HAVE_SYS_FILIO_H |