summaryrefslogtreecommitdiff
path: root/lang/gcc45/files
diff options
context:
space:
mode:
authorGerald Pfeifer <gerald@FreeBSD.org>2011-11-23 22:27:34 +0000
committerGerald Pfeifer <gerald@FreeBSD.org>2011-11-23 22:27:34 +0000
commitd4de1b182bd7811959bb73107b66f9f5e652ab4f (patch)
treeb39a0cafef6f1c895d5b09730c0c7ed27384fcf2 /lang/gcc45/files
parent- Applied the startup script patch from PR ports/161524 to the local (diff)
Remove lang/gcc45 in favor of lang/gcc46 and later. Nothing in the
tree uses this version of GCC (GCC 4.5.x) any longer and GCC 4.6 has been the default for USE_FORTRAN=yes and USE_GCC=4.X+ for a while and has proven itself. Plus, only GCC 4.6 and GCC 4.7 have been patched to work with FreeBSD 10.x and later. Feature safe: yes
Notes
Notes: svn path=/head/; revision=286330
Diffstat (limited to 'lang/gcc45/files')
-rw-r--r--lang/gcc45/files/java-patch-hier13
-rw-r--r--lang/gcc45/files/patch-unwind-ia64.h19
2 files changed, 0 insertions, 32 deletions
diff --git a/lang/gcc45/files/java-patch-hier b/lang/gcc45/files/java-patch-hier
deleted file mode 100644
index edb122b087b8..000000000000
--- a/lang/gcc45/files/java-patch-hier
+++ /dev/null
@@ -1,13 +0,0 @@
-Index: libjava/Makefile.in
-===================================================================
---- libjava/Makefile.in (revision 117734)
-+++ libjava/Makefile.in (working copy)
-@@ -712,7 +712,7 @@
- $(am__append_2) $(am__append_3)
- toolexecmainlib_DATA = libgcj.spec
- dbexec_LTLIBRARIES = libjvm.la
--pkgconfigdir = $(libdir)/pkgconfig
-+pkgconfigdir = $(prefix)/libdata/pkgconfig
- jardir = $(datadir)/java
- jar_DATA = libgcj-$(gcc_version).jar libgcj-tools-$(gcc_version).jar
- @JAVA_HOME_SET_FALSE@JAVA_HOME_DIR = $(prefix)
diff --git a/lang/gcc45/files/patch-unwind-ia64.h b/lang/gcc45/files/patch-unwind-ia64.h
deleted file mode 100644
index 265c82c77042..000000000000
--- a/lang/gcc45/files/patch-unwind-ia64.h
+++ /dev/null
@@ -1,19 +0,0 @@
-2010-09-12 Gerald Pfeifer <gerald@pfeifer.com>
-
- PR target/45650
- * config/ia64/unwind-ia64.h: Do not mark _Unwind_FindTableEntry
- hidden on FreeBSD.
-
-Index: gcc/config/ia64/unwind-ia64.h
-===================================================================
---- gcc/config/ia64/unwind-ia64.h (revision 164211)
-+++ gcc/config/ia64/unwind-ia64.h (working copy)
-@@ -40,4 +40,7 @@
- extern struct unw_table_entry *
- _Unwind_FindTableEntry (void *pc, unsigned long *segment_base,
- unsigned long *gp, struct unw_table_entry *ent)
-- __attribute__ ((__visibility__ ("hidden")));
-+#ifndef __FreeBSD__
-+ __attribute__ ((__visibility__ ("hidden")))
-+#endif
-+ ;