Commit 810f316d by Jakub Jelinek Committed by Jakub Jelinek

configure.ac: Remove GCC_HEADER_STDINT(gstdint.h).

	* configure.ac: Remove GCC_HEADER_STDINT(gstdint.h).
	* libgomp.h: Include <stdint.h> instead of "gstdint.h".
	* oacc-parallel.c: Don't include "libgomp_g.h".
	* plugin/plugin-hsa.c: Include <stdint.h> instead of "gstdint.h".
	* plugin/plugin-nvptx.c: Don't include "gstdint.h".
	* aclocal.m4: Regenerated.
	* config.h.in: Regenerated.
	* configure: Regenerated.
	* Makefile.in: Regenerated.

From-SVN: r276389
parent ba8fa8da
2019-10-01 Jakub Jelinek <jakub@redhat.com>
* configure.ac: Remove GCC_HEADER_STDINT(gstdint.h).
* libgomp.h: Include <stdint.h> instead of "gstdint.h".
* oacc-parallel.c: Don't include "libgomp_g.h".
* plugin/plugin-hsa.c: Include <stdint.h> instead of "gstdint.h".
* plugin/plugin-nvptx.c: Don't include "gstdint.h".
* aclocal.m4: Regenerated.
* config.h.in: Regenerated.
* configure: Regenerated.
* Makefile.in: Regenerated.
2019-09-30 Kwok Cheung Yeung <kcy@codesourcery.com> 2019-09-30 Kwok Cheung Yeung <kcy@codesourcery.com>
* libgomp_g.h: Include stdint.h instead of gstdint.h. * libgomp_g.h: Include stdint.h instead of gstdint.h.
......
...@@ -132,7 +132,6 @@ am__aclocal_m4_deps = $(top_srcdir)/../config/acx.m4 \ ...@@ -132,7 +132,6 @@ am__aclocal_m4_deps = $(top_srcdir)/../config/acx.m4 \
$(top_srcdir)/../config/lthostflags.m4 \ $(top_srcdir)/../config/lthostflags.m4 \
$(top_srcdir)/../config/multi.m4 \ $(top_srcdir)/../config/multi.m4 \
$(top_srcdir)/../config/override.m4 \ $(top_srcdir)/../config/override.m4 \
$(top_srcdir)/../config/stdint.m4 \
$(top_srcdir)/../config/tls.m4 $(top_srcdir)/../ltoptions.m4 \ $(top_srcdir)/../config/tls.m4 $(top_srcdir)/../ltoptions.m4 \
$(top_srcdir)/../ltsugar.m4 $(top_srcdir)/../ltversion.m4 \ $(top_srcdir)/../ltsugar.m4 $(top_srcdir)/../ltversion.m4 \
$(top_srcdir)/../lt~obsolete.m4 $(top_srcdir)/acinclude.m4 \ $(top_srcdir)/../lt~obsolete.m4 $(top_srcdir)/acinclude.m4 \
......
...@@ -1176,7 +1176,6 @@ m4_include([../config/lead-dot.m4]) ...@@ -1176,7 +1176,6 @@ m4_include([../config/lead-dot.m4])
m4_include([../config/lthostflags.m4]) m4_include([../config/lthostflags.m4])
m4_include([../config/multi.m4]) m4_include([../config/multi.m4])
m4_include([../config/override.m4]) m4_include([../config/override.m4])
m4_include([../config/stdint.m4])
m4_include([../config/tls.m4]) m4_include([../config/tls.m4])
m4_include([../ltoptions.m4]) m4_include([../ltoptions.m4])
m4_include([../ltsugar.m4]) m4_include([../ltsugar.m4])
......
...@@ -183,21 +183,6 @@ ...@@ -183,21 +183,6 @@
/* Define if all infrastructure, needed for plugins, is supported. */ /* Define if all infrastructure, needed for plugins, is supported. */
#undef PLUGIN_SUPPORT #undef PLUGIN_SUPPORT
/* The size of `char', as computed by sizeof. */
#undef SIZEOF_CHAR
/* The size of `int', as computed by sizeof. */
#undef SIZEOF_INT
/* The size of `long', as computed by sizeof. */
#undef SIZEOF_LONG
/* The size of `short', as computed by sizeof. */
#undef SIZEOF_SHORT
/* The size of `void *', as computed by sizeof. */
#undef SIZEOF_VOID_P
/* Define to 1 if you have the ANSI C header files. */ /* Define to 1 if you have the ANSI C header files. */
#undef STDC_HEADERS #undef STDC_HEADERS
......
...@@ -171,8 +171,6 @@ AC_HEADER_TIME ...@@ -171,8 +171,6 @@ AC_HEADER_TIME
ACX_HEADER_STRING ACX_HEADER_STRING
AC_CHECK_HEADERS(pthread.h unistd.h semaphore.h sys/loadavg.h sys/sysctl.h sys/time.h) AC_CHECK_HEADERS(pthread.h unistd.h semaphore.h sys/loadavg.h sys/sysctl.h sys/time.h)
GCC_HEADER_STDINT(gstdint.h)
XPCFLAGS="" XPCFLAGS=""
case "$host" in case "$host" in
*-*-rtems*) *-*-rtems*)
......
...@@ -42,7 +42,7 @@ ...@@ -42,7 +42,7 @@
#endif #endif
#include "config.h" #include "config.h"
#include "gstdint.h" #include <stdint.h>
#include "libgomp-plugin.h" #include "libgomp-plugin.h"
#include "gomp-constants.h" #include "gomp-constants.h"
......
...@@ -28,7 +28,6 @@ ...@@ -28,7 +28,6 @@
#include "openacc.h" #include "openacc.h"
#include "libgomp.h" #include "libgomp.h"
#include "libgomp_g.h"
#include "gomp-constants.h" #include "gomp-constants.h"
#include "oacc-int.h" #include "oacc-int.h"
#ifdef HAVE_INTTYPES_H #ifdef HAVE_INTTYPES_H
......
...@@ -28,7 +28,7 @@ ...@@ -28,7 +28,7 @@
<http://www.gnu.org/licenses/>. */ <http://www.gnu.org/licenses/>. */
#include "config.h" #include "config.h"
#include "gstdint.h" #include <stdint.h>
#include <stdio.h> #include <stdio.h>
#include <stdlib.h> #include <stdlib.h>
#include <string.h> #include <string.h>
......
...@@ -34,7 +34,6 @@ ...@@ -34,7 +34,6 @@
#define _GNU_SOURCE #define _GNU_SOURCE
#include "openacc.h" #include "openacc.h"
#include "config.h" #include "config.h"
#include "gstdint.h"
#include "libgomp-plugin.h" #include "libgomp-plugin.h"
#include "oacc-plugin.h" #include "oacc-plugin.h"
#include "gomp-constants.h" #include "gomp-constants.h"
......
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