summaryrefslogtreecommitdiff
path: root/lang/TenDRA/files/patch-ag
diff options
context:
space:
mode:
authorTilman Keskinoz <arved@FreeBSD.org>2003-06-03 08:16:58 +0000
committerTilman Keskinoz <arved@FreeBSD.org>2003-06-03 08:16:58 +0000
commita334cf60edab25703bfd69449fadcf1dd815b235 (patch)
tree1e93a9f74904c9c8fdb783d50ccabb5f5903cbe2 /lang/TenDRA/files/patch-ag
parentUpdate to 5.0.18 (diff)
- Update to CVS snapshot 20030526, which fixes the build problems on 5.x
- Give maintainership to submitter "Unfortunately FreeBSD 5.x uses the GNU C extension __attribute__((__aligned__(x))) in a couple of system headers (<machine/npx.h>, <machine/signal.h> and <machine/ucontext.h> for i386). To avoid a syntax error __aligned(x) is removed by a #define, but programs that use struct sigcontext, struct savexmm or mcontext_t probably won't work." PR: 52619 Submitted by: Stefan Farfeleder <stefan@fafoe.dyndns.org>
Notes
Notes: svn path=/head/; revision=82189
Diffstat (limited to 'lang/TenDRA/files/patch-ag')
-rw-r--r--lang/TenDRA/files/patch-ag59
1 files changed, 0 insertions, 59 deletions
diff --git a/lang/TenDRA/files/patch-ag b/lang/TenDRA/files/patch-ag
deleted file mode 100644
index fe46438a2a88..000000000000
--- a/lang/TenDRA/files/patch-ag
+++ /dev/null
@@ -1,59 +0,0 @@
---- src/installers/80x86/common/assembler.h.orig Mon Mar 16 13:25:20 1998
-+++ src/installers/80x86/common/assembler.h Mon Sep 28 23:46:57 1998
-@@ -97,6 +97,9 @@
- #if islinux
- extern void set_linux_format PROTO_S ((int elf)); /* machine.c */
- #endif
-+#if isfreebsd
-+extern void set_freebsd_format PROTO_S ((int elf)); /* machine.c */
-+#endif
- extern void out_main_prelude PROTO_S ((void));
- extern void out_main_postlude PROTO_S ((void));
- #endif
---- src/installers/80x86/common/cproc.c.orig Mon Mar 16 13:25:21 1998
-+++ src/installers/80x86/common/cproc.c Mon Sep 28 23:48:05 1998
-@@ -687,6 +687,9 @@
- #if islinux
- !linux_elf &&
- #endif
-+#if isfreebsd
-+ !freebsd_elf &&
-+#endif
- pname[0] != local_prefix[0] &&
- !strcmp (pname+prefix_length, "main")) {
- out_main_prelude();
-@@ -1003,6 +1006,9 @@
- if (
- #if islinux
- !linux_elf &&
-+#endif
-+#if isfreebsd
-+ !freebsd_elf &&
- #endif
- pname[0] != local_prefix[0] &&
- !strcmp (pname+prefix_length, "main")) {
---- src/installers/80x86/common/trans.c.orig Wed Mar 11 13:03:06 1998
-+++ src/installers/80x86/common/trans.c Mon Sep 28 23:49:29 1998
-@@ -387,6 +387,11 @@
- set_linux_format (s[2] == '1');
- break;
- #endif
-+#if isfreebsd
-+ case 'k':
-+ set_freebsd_format (s[2] == '1');
-+ break;
-+#endif
- #if issco
- case 's':
- sco_gas = 1;
-@@ -402,6 +407,10 @@
- #if islinux
- if (gcc_compatible < 0)
- gcc_compatible = ! linux_elf;
-+#endif
-+#if isfreebsd
-+ if (gcc_compatible < 0)
-+ gcc_compatible = ! freebsd_elf;
- #endif
-
- if (i == argc)