gdb: disable libbfd installation
[oi-userland.git] / components / runtime / openjdk-8 / patches / 0020-patch-hotspot_make_solaris_makefiles_product.make.patch
blob32ba98d689ef6ef4428bff229eea65f2014fbef7
1 $NetBSD: patch-hotspot_make_solaris_makefiles_product.make,v 1.1 2015/07/03 20:40:59 fhajny Exp $
3 GCC support.
5 --- hotspot/make/solaris/makefiles/product.make.orig
6 +++ hotspot/make/solaris/makefiles/product.make
7 @@ -67,10 +67,16 @@
8 # Linker mapfiles
9 MAPFILE = $(GAMMADIR)/make/solaris/makefiles/mapfile-vers
11 -ifndef USE_GCC
12 # This mapfile is only needed when compiling with dtrace support,
13 # and mustn't be otherwise.
14 -MAPFILE_DTRACE = $(GAMMADIR)/make/solaris/makefiles/mapfile-vers-$(TYPE)
15 +ifdef USE_GCC
16 + MAPFILE_DTRACE = $(GAMMADIR)/make/solaris/makefiles/mapfile-vers-$(TYPE).gcc
17 +else
18 + MAPFILE_DTRACE = $(GAMMADIR)/make/solaris/makefiles/mapfile-vers-$(TYPE)
19 +endif # USE_GCC
21 +# reorder is not used with gcc
22 +ifndef USE_GCC
24 endif