mirror of git://sourceware.org/git/glibc.git
hurd: Fix hurd installed headers test
* sysdeps/hurd/include/hurd.h [!_ISOMAC]: Do not declare libc hidden prototypes. * sysdeps/hurd/include/hurd/fd.h [!_ISOMAC]: Likewise. * sysdeps/hurd/include/hurd/signal.h [!_ISOMAC]: Likewise.
This commit is contained in:
parent
a279b8ed9b
commit
5dbfe13b35
|
@ -84,6 +84,10 @@
|
||||||
[__USE_XOPEN] (OFDEL): New macro.
|
[__USE_XOPEN] (OFDEL): New macro.
|
||||||
[__USE_XOPEN && !__USE_XOPEN2K] (XCASE): New macro.
|
[__USE_XOPEN && !__USE_XOPEN2K] (XCASE): New macro.
|
||||||
* bits/resource.h (RLIM_SAVED_MAX, RLIM_SAVED_CUR): New macros.
|
* bits/resource.h (RLIM_SAVED_MAX, RLIM_SAVED_CUR): New macros.
|
||||||
|
* sysdeps/hurd/include/hurd.h [!_ISOMAC]: Do not declare libc hidden
|
||||||
|
prototypes.
|
||||||
|
* sysdeps/hurd/include/hurd/fd.h [!_ISOMAC]: Likewise.
|
||||||
|
* sysdeps/hurd/include/hurd/signal.h [!_ISOMAC]: Likewise.
|
||||||
|
|
||||||
2018-04-18 Joseph Myers <joseph@codesourcery.com>
|
2018-04-18 Joseph Myers <joseph@codesourcery.com>
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,7 @@
|
||||||
#ifndef _HURD_H
|
#ifndef _HURD_H
|
||||||
#include_next <hurd.h>
|
#include_next <hurd.h>
|
||||||
|
#ifndef _ISOMAC
|
||||||
libc_hidden_proto (_hurd_exec_paths)
|
libc_hidden_proto (_hurd_exec_paths)
|
||||||
libc_hidden_proto (_hurd_init)
|
libc_hidden_proto (_hurd_init)
|
||||||
#endif
|
#endif
|
||||||
|
#endif
|
||||||
|
|
|
@ -1,10 +1,12 @@
|
||||||
#ifndef _HURD_FD_H
|
#ifndef _HURD_FD_H
|
||||||
#include_next <hurd/fd.h>
|
#include_next <hurd/fd.h>
|
||||||
|
#ifndef _ISOMAC
|
||||||
libc_hidden_proto (_hurd_intern_fd)
|
libc_hidden_proto (_hurd_intern_fd)
|
||||||
libc_hidden_proto (_hurd_fd_error)
|
libc_hidden_proto (_hurd_fd_error)
|
||||||
libc_hidden_proto (_hurd_fd_error_signal)
|
libc_hidden_proto (_hurd_fd_error_signal)
|
||||||
#ifdef _HURD_FD_H_HIDDEN_DEF
|
# ifdef _HURD_FD_H_HIDDEN_DEF
|
||||||
libc_hidden_def (_hurd_fd_error)
|
libc_hidden_def (_hurd_fd_error)
|
||||||
libc_hidden_def (_hurd_fd_error_signal)
|
libc_hidden_def (_hurd_fd_error_signal)
|
||||||
|
# endif
|
||||||
#endif
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -1,7 +1,9 @@
|
||||||
#ifndef _HURD_SIGNAL_H
|
#ifndef _HURD_SIGNAL_H
|
||||||
#include_next <hurd/signal.h>
|
#include_next <hurd/signal.h>
|
||||||
|
#ifndef _ISOMAC
|
||||||
libc_hidden_proto (_hurd_exception2signal)
|
libc_hidden_proto (_hurd_exception2signal)
|
||||||
libc_hidden_proto (_hurd_intr_rpc_mach_msg)
|
libc_hidden_proto (_hurd_intr_rpc_mach_msg)
|
||||||
libc_hidden_proto (_hurd_thread_sigstate)
|
libc_hidden_proto (_hurd_thread_sigstate)
|
||||||
libc_hidden_proto (_hurd_raise_signal)
|
libc_hidden_proto (_hurd_raise_signal)
|
||||||
#endif
|
#endif
|
||||||
|
#endif
|
||||||
|
|
Loading…
Reference in New Issue