diff options
Diffstat (limited to 'lang/llvm-gcc4/files')
-rw-r--r-- | lang/llvm-gcc4/files/patch-.._gcc_Makefile.in | 24 | ||||
-rw-r--r-- | lang/llvm-gcc4/files/patch-gcc::config::freebsd.h | 18 | ||||
-rw-r--r-- | lang/llvm-gcc4/files/patch-gcc_config_freebsd-spec.h | 13 |
3 files changed, 24 insertions, 31 deletions
diff --git a/lang/llvm-gcc4/files/patch-.._gcc_Makefile.in b/lang/llvm-gcc4/files/patch-.._gcc_Makefile.in new file mode 100644 index 000000000000..cbd6055f1070 --- /dev/null +++ b/lang/llvm-gcc4/files/patch-.._gcc_Makefile.in @@ -0,0 +1,24 @@ + +$FreeBSD$ + +--- ../gcc/Makefile.in.orig ++++ ../gcc/Makefile.in +@@ -3805,7 +3805,7 @@ + echo rm -f $(@D)/* + $(TEXI2HTML) -I $(abs_docdir) -I $(abs_docdir)/include -o $(@D) $< + +-MANFILES = doc/gcov.1 doc/cpp.1 doc/gcc.1 doc/gfdl.7 doc/gpl.7 doc/fsf-funding.7 ++MANFILES = doc/gcov.1 doc/cpp.1 doc/gcc.1 + + generated-manpages: man + +@@ -4118,9 +4118,6 @@ + $(DESTDIR)$(man1dir)/$(GCC_INSTALL_NAME)$(man1ext) \ + $(DESTDIR)$(man1dir)/$(CPP_INSTALL_NAME)$(man1ext) \ + $(DESTDIR)$(man1dir)/$(GCOV_INSTALL_NAME)$(man1ext) \ +- $(DESTDIR)$(man7dir)/fsf-funding$(man7ext) \ +- $(DESTDIR)$(man7dir)/gfdl$(man7ext) \ +- $(DESTDIR)$(man7dir)/gpl$(man7ext) + + $(DESTDIR)$(man7dir)/%$(man7ext): doc/%.7 installdirs + -rm -f $@ diff --git a/lang/llvm-gcc4/files/patch-gcc::config::freebsd.h b/lang/llvm-gcc4/files/patch-gcc::config::freebsd.h deleted file mode 100644 index 5d1a5bcae7b0..000000000000 --- a/lang/llvm-gcc4/files/patch-gcc::config::freebsd.h +++ /dev/null @@ -1,18 +0,0 @@ -Author: asl -Date: Wed Sep 26 02:36:55 2007 -New Revision: 42351 - -Log: -FreeBSD really supports #pragma pack(push). This fixes PR1702 - -============================================================================== ---- ../gcc/config/freebsd.h (original) -+++ ../gcc/config/freebsd.h Wed Sep 26 02:36:55 2007 -@@ -85,3 +85,7 @@ - This enables the test coverage code to use file locking when exiting a - program, which avoids race conditions if the program has forked. */ - #define TARGET_HAS_F_SETLKW -+ -+/* LLVM LOCAL begin */ -+#define HANDLE_PRAGMA_PACK_PUSH_POP -+/* LLVM LOCAL end */ diff --git a/lang/llvm-gcc4/files/patch-gcc_config_freebsd-spec.h b/lang/llvm-gcc4/files/patch-gcc_config_freebsd-spec.h deleted file mode 100644 index 5ce9d438d0ab..000000000000 --- a/lang/llvm-gcc4/files/patch-gcc_config_freebsd-spec.h +++ /dev/null @@ -1,13 +0,0 @@ ---- ../gcc/config/freebsd-spec.h.orig 2007-12-21 20:20:55.000000000 -0500 -+++ ../gcc/config/freebsd-spec.h 2007-12-21 20:21:32.000000000 -0500 -@@ -75,7 +75,9 @@ - #define FBSD_TARGET_OS_CPP_BUILTINS() \ - do \ - { \ -- if (FBSD_MAJOR == 7) \ -+ if (FBSD_MAJOR == 8) \ -+ builtin_define ("__FreeBSD__=8"); \ -+ else if (FBSD_MAJOR == 7) \ - builtin_define ("__FreeBSD__=7"); \ - else if (FBSD_MAJOR == 6) \ - builtin_define ("__FreeBSD__=6"); \ |