Commit c18b8a1c by Kai Tietz Committed by Paolo Bonzini

configure: Regenerate.

libgfortran:
2007-04-11  Kai Tietz   <kai.tietz@onevision.com>

        * configure: Regenerate.

libdecnumber:
2007-04-11  Kai Tietz   <kai.tietz@onevision.com>

        * configure: Regenerate.

config:
2007-04-11  Kai Tietz  <kai.tietz@onevision.com>

	* stdint.m4: Make template compatible with older cygwin 
	types.h, wrapping each type in a __XXX_t_defined #ifdef.

From-SVN: r123746
parent 3efd5670
2007-04-11 Kai Tietz <kai.tietz@onevision.com>
* stdint.m4: Make template compatible with older cygwin
types.h, wrapping each type in a __XXX_t_defined #ifdef.
2007-03-26 H.J. Lu <hongjiu.lu@intel.com> 2007-03-26 H.J. Lu <hongjiu.lu@intel.com>
* acx.m4 (ACX_BUGURL): Set BUGURL first. Quote $BUGURL first * acx.m4 (ACX_BUGURL): Set BUGURL first. Quote $BUGURL first
......
...@@ -218,33 +218,51 @@ if test "$acx_cv_header_stdint" = stddef.h; then ...@@ -218,33 +218,51 @@ if test "$acx_cv_header_stdint" = stddef.h; then
#ifndef _UINT8_T #ifndef _UINT8_T
#define _UINT8_T #define _UINT8_T
#ifndef __uint8_t_defined
#define __uint8_t_defined
typedef unsigned $acx_cv_type_int8_t uint8_t; typedef unsigned $acx_cv_type_int8_t uint8_t;
#endif #endif
#endif
#ifndef _UINT16_T #ifndef _UINT16_T
#define _UINT16_T #define _UINT16_T
#ifndef __uint16_t_defined
#define __uint16_t_defined
typedef unsigned $acx_cv_type_int16_t uint16_t; typedef unsigned $acx_cv_type_int16_t uint16_t;
#endif #endif
#endif
#ifndef _UINT32_T #ifndef _UINT32_T
#define _UINT32_T #define _UINT32_T
#ifndef __uint32_t_defined
#define __uint32_t_defined
typedef unsigned $acx_cv_type_int32_t uint32_t; typedef unsigned $acx_cv_type_int32_t uint32_t;
#endif #endif
#endif
#ifndef _INT8_T #ifndef _INT8_T
#define _INT8_T #define _INT8_T
#ifndef __int8_t_defined
#define __int8_t_defined
typedef $acx_cv_type_int8_t int8_t; typedef $acx_cv_type_int8_t int8_t;
#endif #endif
#endif
#ifndef _INT16_T #ifndef _INT16_T
#define _INT16_T #define _INT16_T
#ifndef __int16_t_defined
#define __int16_t_defined
typedef $acx_cv_type_int16_t int16_t; typedef $acx_cv_type_int16_t int16_t;
#endif #endif
#endif
#ifndef _INT32_T #ifndef _INT32_T
#define _INT32_T #define _INT32_T
#ifndef __int32_t_defined
#define __int32_t_defined
typedef $acx_cv_type_int32_t int32_t; typedef $acx_cv_type_int32_t int32_t;
#endif #endif
#endif
EOF EOF
elif test "$ac_cv_type_u_int32_t" = yes; then elif test "$ac_cv_type_u_int32_t" = yes; then
sed 's/^ *//' >> tmp-stdint.h <<EOF sed 's/^ *//' >> tmp-stdint.h <<EOF
...@@ -262,18 +280,27 @@ elif test "$ac_cv_type_u_int32_t" = yes; then ...@@ -262,18 +280,27 @@ elif test "$ac_cv_type_u_int32_t" = yes; then
#ifndef _UINT8_T #ifndef _UINT8_T
#define _UINT8_T #define _UINT8_T
#ifndef __uint8_t_defined
#define __uint8_t_defined
typedef u_int8_t uint8_t; typedef u_int8_t uint8_t;
#endif #endif
#endif
#ifndef _UINT16_T #ifndef _UINT16_T
#define _UINT16_T #define _UINT16_T
#ifndef __uint16_t_defined
#define __uint16_t_defined
typedef u_int16_t uint16_t; typedef u_int16_t uint16_t;
#endif #endif
#endif
#ifndef _UINT32_T #ifndef _UINT32_T
#define _UINT32_T #define _UINT32_T
#ifndef __uint32_t_defined
#define __uint32_t_defined
typedef u_int32_t uint32_t; typedef u_int32_t uint32_t;
#endif #endif
#endif
EOF EOF
else else
sed 's/^ *//' >> tmp-stdint.h <<EOF sed 's/^ *//' >> tmp-stdint.h <<EOF
...@@ -321,8 +348,11 @@ elif test "$ac_cv_type_u_int64_t" = yes; then ...@@ -321,8 +348,11 @@ elif test "$ac_cv_type_u_int64_t" = yes; then
#endif #endif
#ifndef _UINT64_T #ifndef _UINT64_T
#define _UINT64_T #define _UINT64_T
#ifndef __uint64_t_defined
#define __uint64_t_defined
typedef u_int64_t uint64_t; typedef u_int64_t uint64_t;
#endif #endif
#endif
EOF EOF
elif test -n "$acx_cv_type_int64_t"; then elif test -n "$acx_cv_type_int64_t"; then
sed 's/^ *//' >> tmp-stdint.h <<EOF sed 's/^ *//' >> tmp-stdint.h <<EOF
...@@ -334,8 +364,11 @@ elif test -n "$acx_cv_type_int64_t"; then ...@@ -334,8 +364,11 @@ elif test -n "$acx_cv_type_int64_t"; then
#endif #endif
#ifndef _UINT64_T #ifndef _UINT64_T
#define _UINT64_T #define _UINT64_T
#ifndef __uint64_t_defined
#define __uint64_t_defined
typedef unsigned $acx_cv_type_int64_t uint64_t; typedef unsigned $acx_cv_type_int64_t uint64_t;
#endif #endif
#endif
EOF EOF
else else
sed 's/^ *//' >> tmp-stdint.h <<EOF sed 's/^ *//' >> tmp-stdint.h <<EOF
...@@ -344,8 +377,10 @@ else ...@@ -344,8 +377,10 @@ else
#if defined __STDC_VERSION__ && (__STDC_VERSION__-0) >= 199901L #if defined __STDC_VERSION__ && (__STDC_VERSION__-0) >= 199901L
#ifndef _INT64_T #ifndef _INT64_T
#define _INT64_T #define _INT64_T
#ifndef __int64_t_defined
typedef long long int64_t; typedef long long int64_t;
#endif #endif
#endif
#ifndef _UINT64_T #ifndef _UINT64_T
#define _UINT64_T #define _UINT64_T
typedef unsigned long long uint64_t; typedef unsigned long long uint64_t;
...@@ -390,8 +425,12 @@ if test "$ac_cv_type_uintptr_t" != yes; then ...@@ -390,8 +425,12 @@ if test "$ac_cv_type_uintptr_t" != yes; then
sed 's/^ *//' >> tmp-stdint.h <<EOF sed 's/^ *//' >> tmp-stdint.h <<EOF
/* Define intptr_t based on sizeof(void*) = $ac_cv_sizeof_void_p */ /* Define intptr_t based on sizeof(void*) = $ac_cv_sizeof_void_p */
#ifndef __uintptr_t_defined
typedef u$acx_cv_type_intptr_t uintptr_t; typedef u$acx_cv_type_intptr_t uintptr_t;
#endif
#ifndef __intptr_t_defined
typedef $acx_cv_type_intptr_t intptr_t; typedef $acx_cv_type_intptr_t intptr_t;
#endif
EOF EOF
fi fi
......
2007-04-11 Kai Tietz <kai.tietz@onevision.com>
* configure: Regenerate.
2007-03-23 Michael Meissner <michael.meissner@amd.com> 2007-03-23 Michael Meissner <michael.meissner@amd.com>
H.J. Lu <hongjiu.lu@intel.com> H.J. Lu <hongjiu.lu@intel.com>
Marius Cornea <marius.cornea@intel.com> Marius Cornea <marius.cornea@intel.com>
......
...@@ -8882,33 +8882,51 @@ if test "$acx_cv_header_stdint" = stddef.h; then ...@@ -8882,33 +8882,51 @@ if test "$acx_cv_header_stdint" = stddef.h; then
#ifndef _UINT8_T #ifndef _UINT8_T
#define _UINT8_T #define _UINT8_T
#ifndef __uint8_t_defined
#define __uint8_t_defined
typedef unsigned $acx_cv_type_int8_t uint8_t; typedef unsigned $acx_cv_type_int8_t uint8_t;
#endif #endif
#endif
#ifndef _UINT16_T #ifndef _UINT16_T
#define _UINT16_T #define _UINT16_T
#ifndef __uint16_t_defined
#define __uint16_t_defined
typedef unsigned $acx_cv_type_int16_t uint16_t; typedef unsigned $acx_cv_type_int16_t uint16_t;
#endif #endif
#endif
#ifndef _UINT32_T #ifndef _UINT32_T
#define _UINT32_T #define _UINT32_T
#ifndef __uint32_t_defined
#define __uint32_t_defined
typedef unsigned $acx_cv_type_int32_t uint32_t; typedef unsigned $acx_cv_type_int32_t uint32_t;
#endif #endif
#endif
#ifndef _INT8_T #ifndef _INT8_T
#define _INT8_T #define _INT8_T
#ifndef __int8_t_defined
#define __int8_t_defined
typedef $acx_cv_type_int8_t int8_t; typedef $acx_cv_type_int8_t int8_t;
#endif #endif
#endif
#ifndef _INT16_T #ifndef _INT16_T
#define _INT16_T #define _INT16_T
#ifndef __int16_t_defined
#define __int16_t_defined
typedef $acx_cv_type_int16_t int16_t; typedef $acx_cv_type_int16_t int16_t;
#endif #endif
#endif
#ifndef _INT32_T #ifndef _INT32_T
#define _INT32_T #define _INT32_T
#ifndef __int32_t_defined
#define __int32_t_defined
typedef $acx_cv_type_int32_t int32_t; typedef $acx_cv_type_int32_t int32_t;
#endif #endif
#endif
EOF EOF
elif test "$ac_cv_type_u_int32_t" = yes; then elif test "$ac_cv_type_u_int32_t" = yes; then
sed 's/^ *//' >> tmp-stdint.h <<EOF sed 's/^ *//' >> tmp-stdint.h <<EOF
...@@ -8926,18 +8944,27 @@ elif test "$ac_cv_type_u_int32_t" = yes; then ...@@ -8926,18 +8944,27 @@ elif test "$ac_cv_type_u_int32_t" = yes; then
#ifndef _UINT8_T #ifndef _UINT8_T
#define _UINT8_T #define _UINT8_T
#ifndef __uint8_t_defined
#define __uint8_t_defined
typedef u_int8_t uint8_t; typedef u_int8_t uint8_t;
#endif #endif
#endif
#ifndef _UINT16_T #ifndef _UINT16_T
#define _UINT16_T #define _UINT16_T
#ifndef __uint16_t_defined
#define __uint16_t_defined
typedef u_int16_t uint16_t; typedef u_int16_t uint16_t;
#endif #endif
#endif
#ifndef _UINT32_T #ifndef _UINT32_T
#define _UINT32_T #define _UINT32_T
#ifndef __uint32_t_defined
#define __uint32_t_defined
typedef u_int32_t uint32_t; typedef u_int32_t uint32_t;
#endif #endif
#endif
EOF EOF
else else
sed 's/^ *//' >> tmp-stdint.h <<EOF sed 's/^ *//' >> tmp-stdint.h <<EOF
...@@ -8985,8 +9012,11 @@ elif test "$ac_cv_type_u_int64_t" = yes; then ...@@ -8985,8 +9012,11 @@ elif test "$ac_cv_type_u_int64_t" = yes; then
#endif #endif
#ifndef _UINT64_T #ifndef _UINT64_T
#define _UINT64_T #define _UINT64_T
#ifndef __uint64_t_defined
#define __uint64_t_defined
typedef u_int64_t uint64_t; typedef u_int64_t uint64_t;
#endif #endif
#endif
EOF EOF
elif test -n "$acx_cv_type_int64_t"; then elif test -n "$acx_cv_type_int64_t"; then
sed 's/^ *//' >> tmp-stdint.h <<EOF sed 's/^ *//' >> tmp-stdint.h <<EOF
...@@ -8998,8 +9028,11 @@ elif test -n "$acx_cv_type_int64_t"; then ...@@ -8998,8 +9028,11 @@ elif test -n "$acx_cv_type_int64_t"; then
#endif #endif
#ifndef _UINT64_T #ifndef _UINT64_T
#define _UINT64_T #define _UINT64_T
#ifndef __uint64_t_defined
#define __uint64_t_defined
typedef unsigned $acx_cv_type_int64_t uint64_t; typedef unsigned $acx_cv_type_int64_t uint64_t;
#endif #endif
#endif
EOF EOF
else else
sed 's/^ *//' >> tmp-stdint.h <<EOF sed 's/^ *//' >> tmp-stdint.h <<EOF
...@@ -9008,8 +9041,10 @@ else ...@@ -9008,8 +9041,10 @@ else
#if defined __STDC_VERSION__ && (__STDC_VERSION__-0) >= 199901L #if defined __STDC_VERSION__ && (__STDC_VERSION__-0) >= 199901L
#ifndef _INT64_T #ifndef _INT64_T
#define _INT64_T #define _INT64_T
#ifndef __int64_t_defined
typedef long long int64_t; typedef long long int64_t;
#endif #endif
#endif
#ifndef _UINT64_T #ifndef _UINT64_T
#define _UINT64_T #define _UINT64_T
typedef unsigned long long uint64_t; typedef unsigned long long uint64_t;
...@@ -9054,8 +9089,12 @@ if test "$ac_cv_type_uintptr_t" != yes; then ...@@ -9054,8 +9089,12 @@ if test "$ac_cv_type_uintptr_t" != yes; then
sed 's/^ *//' >> tmp-stdint.h <<EOF sed 's/^ *//' >> tmp-stdint.h <<EOF
/* Define intptr_t based on sizeof(void*) = $ac_cv_sizeof_void_p */ /* Define intptr_t based on sizeof(void*) = $ac_cv_sizeof_void_p */
#ifndef __uintptr_t_defined
typedef u$acx_cv_type_intptr_t uintptr_t; typedef u$acx_cv_type_intptr_t uintptr_t;
#endif
#ifndef __intptr_t_defined
typedef $acx_cv_type_intptr_t intptr_t; typedef $acx_cv_type_intptr_t intptr_t;
#endif
EOF EOF
fi fi
......
2007-04-11 Kai Tietz <kai.tietz@onevision.com>
* configure: Regenerate.
2007-04-06 Francois-Xavier Coudert <fxcoudert@gcc.gnu.org> 2007-04-06 Francois-Xavier Coudert <fxcoudert@gcc.gnu.org>
* intrinsics/cpu_time.c: Don't include headers already included * intrinsics/cpu_time.c: Don't include headers already included
......
...@@ -25831,33 +25831,51 @@ if test "$acx_cv_header_stdint" = stddef.h; then ...@@ -25831,33 +25831,51 @@ if test "$acx_cv_header_stdint" = stddef.h; then
#ifndef _UINT8_T #ifndef _UINT8_T
#define _UINT8_T #define _UINT8_T
#ifndef __uint8_t_defined
#define __uint8_t_defined
typedef unsigned $acx_cv_type_int8_t uint8_t; typedef unsigned $acx_cv_type_int8_t uint8_t;
#endif #endif
#endif
#ifndef _UINT16_T #ifndef _UINT16_T
#define _UINT16_T #define _UINT16_T
#ifndef __uint16_t_defined
#define __uint16_t_defined
typedef unsigned $acx_cv_type_int16_t uint16_t; typedef unsigned $acx_cv_type_int16_t uint16_t;
#endif #endif
#endif
#ifndef _UINT32_T #ifndef _UINT32_T
#define _UINT32_T #define _UINT32_T
#ifndef __uint32_t_defined
#define __uint32_t_defined
typedef unsigned $acx_cv_type_int32_t uint32_t; typedef unsigned $acx_cv_type_int32_t uint32_t;
#endif #endif
#endif
#ifndef _INT8_T #ifndef _INT8_T
#define _INT8_T #define _INT8_T
#ifndef __int8_t_defined
#define __int8_t_defined
typedef $acx_cv_type_int8_t int8_t; typedef $acx_cv_type_int8_t int8_t;
#endif #endif
#endif
#ifndef _INT16_T #ifndef _INT16_T
#define _INT16_T #define _INT16_T
#ifndef __int16_t_defined
#define __int16_t_defined
typedef $acx_cv_type_int16_t int16_t; typedef $acx_cv_type_int16_t int16_t;
#endif #endif
#endif
#ifndef _INT32_T #ifndef _INT32_T
#define _INT32_T #define _INT32_T
#ifndef __int32_t_defined
#define __int32_t_defined
typedef $acx_cv_type_int32_t int32_t; typedef $acx_cv_type_int32_t int32_t;
#endif #endif
#endif
EOF EOF
elif test "$ac_cv_type_u_int32_t" = yes; then elif test "$ac_cv_type_u_int32_t" = yes; then
sed 's/^ *//' >> tmp-stdint.h <<EOF sed 's/^ *//' >> tmp-stdint.h <<EOF
...@@ -25875,18 +25893,27 @@ elif test "$ac_cv_type_u_int32_t" = yes; then ...@@ -25875,18 +25893,27 @@ elif test "$ac_cv_type_u_int32_t" = yes; then
#ifndef _UINT8_T #ifndef _UINT8_T
#define _UINT8_T #define _UINT8_T
#ifndef __uint8_t_defined
#define __uint8_t_defined
typedef u_int8_t uint8_t; typedef u_int8_t uint8_t;
#endif #endif
#endif
#ifndef _UINT16_T #ifndef _UINT16_T
#define _UINT16_T #define _UINT16_T
#ifndef __uint16_t_defined
#define __uint16_t_defined
typedef u_int16_t uint16_t; typedef u_int16_t uint16_t;
#endif #endif
#endif
#ifndef _UINT32_T #ifndef _UINT32_T
#define _UINT32_T #define _UINT32_T
#ifndef __uint32_t_defined
#define __uint32_t_defined
typedef u_int32_t uint32_t; typedef u_int32_t uint32_t;
#endif #endif
#endif
EOF EOF
else else
sed 's/^ *//' >> tmp-stdint.h <<EOF sed 's/^ *//' >> tmp-stdint.h <<EOF
...@@ -25934,8 +25961,11 @@ elif test "$ac_cv_type_u_int64_t" = yes; then ...@@ -25934,8 +25961,11 @@ elif test "$ac_cv_type_u_int64_t" = yes; then
#endif #endif
#ifndef _UINT64_T #ifndef _UINT64_T
#define _UINT64_T #define _UINT64_T
#ifndef __uint64_t_defined
#define __uint64_t_defined
typedef u_int64_t uint64_t; typedef u_int64_t uint64_t;
#endif #endif
#endif
EOF EOF
elif test -n "$acx_cv_type_int64_t"; then elif test -n "$acx_cv_type_int64_t"; then
sed 's/^ *//' >> tmp-stdint.h <<EOF sed 's/^ *//' >> tmp-stdint.h <<EOF
...@@ -25947,8 +25977,11 @@ elif test -n "$acx_cv_type_int64_t"; then ...@@ -25947,8 +25977,11 @@ elif test -n "$acx_cv_type_int64_t"; then
#endif #endif
#ifndef _UINT64_T #ifndef _UINT64_T
#define _UINT64_T #define _UINT64_T
#ifndef __uint64_t_defined
#define __uint64_t_defined
typedef unsigned $acx_cv_type_int64_t uint64_t; typedef unsigned $acx_cv_type_int64_t uint64_t;
#endif #endif
#endif
EOF EOF
else else
sed 's/^ *//' >> tmp-stdint.h <<EOF sed 's/^ *//' >> tmp-stdint.h <<EOF
...@@ -25957,8 +25990,10 @@ else ...@@ -25957,8 +25990,10 @@ else
#if defined __STDC_VERSION__ && (__STDC_VERSION__-0) >= 199901L #if defined __STDC_VERSION__ && (__STDC_VERSION__-0) >= 199901L
#ifndef _INT64_T #ifndef _INT64_T
#define _INT64_T #define _INT64_T
#ifndef __int64_t_defined
typedef long long int64_t; typedef long long int64_t;
#endif #endif
#endif
#ifndef _UINT64_T #ifndef _UINT64_T
#define _UINT64_T #define _UINT64_T
typedef unsigned long long uint64_t; typedef unsigned long long uint64_t;
...@@ -26003,8 +26038,12 @@ if test "$ac_cv_type_uintptr_t" != yes; then ...@@ -26003,8 +26038,12 @@ if test "$ac_cv_type_uintptr_t" != yes; then
sed 's/^ *//' >> tmp-stdint.h <<EOF sed 's/^ *//' >> tmp-stdint.h <<EOF
/* Define intptr_t based on sizeof(void*) = $ac_cv_sizeof_void_p */ /* Define intptr_t based on sizeof(void*) = $ac_cv_sizeof_void_p */
#ifndef __uintptr_t_defined
typedef u$acx_cv_type_intptr_t uintptr_t; typedef u$acx_cv_type_intptr_t uintptr_t;
#endif
#ifndef __intptr_t_defined
typedef $acx_cv_type_intptr_t intptr_t; typedef $acx_cv_type_intptr_t intptr_t;
#endif
EOF EOF
fi fi
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment