diff options
author | Chris D. Faulhaber <jedgar@FreeBSD.org> | 2002-07-09 20:08:36 +0000 |
---|---|---|
committer | Chris D. Faulhaber <jedgar@FreeBSD.org> | 2002-07-09 20:08:36 +0000 |
commit | 70b251aaf9e4d385162d657bfe4f7779b0fcd189 (patch) | |
tree | 30db9e3c9acfdabafa7e71be34250a2cc1e1afa0 | |
parent | cad5ff7efb0defd4d4f093d7a2e06768aa090c2e (diff) | |
download | freebsd-ports-70b251aaf9e4d385162d657bfe4f7779b0fcd189.zip |
Use the native sys/types.h to pull in the definitions of __int8_t and
friends to fix RELENG_4 builds.
-rw-r--r-- | sysutils/grub/files/patch-stage2_Makefile.in | 11 | ||||
-rw-r--r-- | sysutils/grub/files/patch-stage2_xfs.h | 13 |
2 files changed, 24 insertions, 0 deletions
diff --git a/sysutils/grub/files/patch-stage2_Makefile.in b/sysutils/grub/files/patch-stage2_Makefile.in new file mode 100644 index 000000000000..aff172bc3a74 --- /dev/null +++ b/sysutils/grub/files/patch-stage2_Makefile.in @@ -0,0 +1,11 @@ +--- stage2/Makefile.in.orig Sun Apr 28 20:13:21 2002 ++++ stage2/Makefile.in Tue Jul 9 16:01:39 2002 +@@ -157,7 +157,7 @@ + @HERCULES_SUPPORT_TRUE@HERCULES_FLAGS = -DSUPPORT_HERCULES=1 + @HERCULES_SUPPORT_FALSE@HERCULES_FLAGS = + +-STAGE2_COMPILE = $(STAGE2_CFLAGS) -fno-builtin -nostdinc \ ++STAGE2_COMPILE = $(STAGE2_CFLAGS) -fno-builtin \ + $(NETBOOT_FLAGS) $(SERIAL_FLAGS) $(HERCULES_FLAGS) + + diff --git a/sysutils/grub/files/patch-stage2_xfs.h b/sysutils/grub/files/patch-stage2_xfs.h new file mode 100644 index 000000000000..d8865297ae94 --- /dev/null +++ b/sysutils/grub/files/patch-stage2_xfs.h @@ -0,0 +1,13 @@ +--- stage2/xfs.h.orig Sat Oct 27 12:04:25 2001 ++++ stage2/xfs.h Tue Jul 9 16:03:40 2002 +@@ -33,7 +33,9 @@ + * http://oss.sgi.com/projects/GenInfo/SGIGPLNoticeExplan/ + */ + +-#ifndef _BITS_TYPES_H ++#include <sys/types.h> ++ ++#if 0 + typedef signed char __int8_t; + typedef unsigned char __uint8_t; + typedef short __int16_t; |