This is the mail archive of the
gcc-patches@gcc.gnu.org
mailing list for the GCC project.
Re: [PATCH] libgomp sysctl check
- From: Jakub Jelinek <jakub at redhat dot com>
- To: Andreas Tobler <andreast-list at fgznet dot ch>
- Cc: GCC Patches <gcc-patches at gcc dot gnu dot org>
- Date: Tue, 23 Jun 2015 19:47:16 +0200
- Subject: Re: [PATCH] libgomp sysctl check
- Authentication-results: sourceware.org; auth=none
- References: <55899916 dot 1030309 at fgznet dot ch>
- Reply-to: Jakub Jelinek <jakub at redhat dot com>
On Tue, Jun 23, 2015 at 07:36:22PM +0200, Andreas Tobler wrote:
> Hi all,
>
> this patch fixes a long standing bug in the libgomp configury.
> The initial patch was correct, but the commit I did was wrong.
>
> Ok for trunk?
>
> Thanks,
>
> Andreas
>
> 2015-06-23 Andreas Tobler <andreast@gcc.gnu.org>
>
> * configure.ac: Fix check for header <sys/sysctl.h>
> * configure: Regenerate.
> * config.h.in: Likewise.
The last 2 lines are weidly indented (should be one tab before *),
the first line lacks full stop at the end.
Ok with those changes.
> --- configure.ac (revision 224759)
> +++ configure.ac (working copy)
> @@ -170,7 +170,7 @@
> AC_STDC_HEADERS
> AC_HEADER_TIME
> ACX_HEADER_STRING
> -AC_CHECK_HEADERS(pthread.h unistd.h semaphore.h sys/loadavg.h sys/time.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)
Jakub