diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2018-03-04 02:11:46 +0100 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2018-03-04 02:13:56 +0100 |
commit | 95dfdbd28cb78f82817f6f965c303d03d1d420dd (patch) | |
tree | e07c820167e8256d5bd21846e5217c4b88a3b6dd /hurd | |
parent | 44c6376ca357531fe8169f821acde8c4b574d5ac (diff) | |
download | glibc-95dfdbd28cb78f82817f6f965c303d03d1d420dd.tar glibc-95dfdbd28cb78f82817f6f965c303d03d1d420dd.tar.gz glibc-95dfdbd28cb78f82817f6f965c303d03d1d420dd.tar.bz2 glibc-95dfdbd28cb78f82817f6f965c303d03d1d420dd.zip |
hurd: Avoid using ino64_t and loff_t in headers
* mach/Machrules ($(patsubst %,$(objpfx)%.h,$(user-interfaces)):
Process mig output through $(migheaderpipe).
* hurd/Makefile (migheaderpipe): Define variable.
Diffstat (limited to 'hurd')
-rw-r--r-- | hurd/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/hurd/Makefile b/hurd/Makefile index f71dc36043..cca08a175a 100644 --- a/hurd/Makefile +++ b/hurd/Makefile @@ -86,6 +86,8 @@ generated += $(inlines:=.c) CFLAGS-hurdstartup.o = $(no-stack-protector) CFLAGS-RPC_exec_startup_get_info.o = $(no-stack-protector) +# Make generated headers compatible with all support standards +migheaderpipe := | sed -e 's/\<ino64_t\>/__ino64_t/' -e 's/\<loff_t\>/__loff_t/' include ../mach/Machrules include ../Rules |