summaryrefslogtreecommitdiff
path: root/java/openjdk8/files/patch-bsd (unfollow)
Commit message (Collapse)AuthorFilesLines
2019-04-19* Update to 8u212.Greg Lewis1-20572/+0
* Change master site to Github * Remove patches and Makefile fixes that have been upstreamed to Github Notes: svn path=/head/; revision=499375
2019-02-12. Update to 8u202.Greg Lewis1-702/+1114
Notes: svn path=/head/; revision=492778
2018-12-08. Update to 8u192.Greg Lewis1-828/+987
PR: 230364 Notes: svn path=/head/; revision=486973
2018-09-08. Update to 8u181.Greg Lewis1-416/+606
Notes: svn path=/head/; revision=479258
2018-05-21. Update to 8u172.Greg Lewis1-449/+475
Notes: svn path=/head/; revision=470492
2018-02-03. Update to 8u162.Greg Lewis1-452/+503
Notes: svn path=/head/; revision=460849
2017-11-19. Update to 8u152.Greg Lewis1-522/+625
Notes: svn path=/head/; revision=454477
2017-08-27. Update to 8u144.Greg Lewis1-469/+556
Notes: svn path=/head/; revision=448833
2017-04-19Update to 8u131.Greg Lewis1-564/+853
Notes: svn path=/head/; revision=438840
2017-01-29. Update to 8u121.Greg Lewis1-400/+583
Notes: svn path=/head/; revision=432697
2016-12-29. Add support for the HotSpot Serviceability Agent for ppc64.Greg Lewis1-202/+2430
. This also pulls in some OpenBSD tweaks, I believe. These should be a no-op for FreeBSD though. PR: 212709 (partial) Submitted by: Curtis Hamilton <hamiltcl@verizon.net> Notes: svn path=/head/; revision=429875
2016-10-30. Update to 8u112.Greg Lewis1-355/+355
Notes: svn path=/head/; revision=424926
2016-07-30. Update to 8u102.Greg Lewis1-1356/+381
Notes: svn path=/head/; revision=419318
2016-06-18. Regenerate patch-bsd and patch-bsd-test. This obsoletes another patchGreg Lewis1-2033/+1460
and should also fix ppc64 support. Notes: svn path=/head/; revision=417048
2016-05-17. Update to 8u92.Greg Lewis1-3012/+6753
Notes: svn path=/head/; revision=415373
2016-01-31. Update to 8u72.Greg Lewis1-7521/+731
Notes: svn path=/head/; revision=407661
2015-12-13. Update to 8u66.Greg Lewis1-1540/+4438
Notes: svn path=/head/; revision=403646
2015-09-07. Update to 8u60.Greg Lewis1-738/+4673
Notes: svn path=/head/; revision=396257
2015-07-19. Update to 8u51.Greg Lewis1-386/+1344
Notes: svn path=/head/; revision=392506
2015-05-19Do not use static libjli for stable/10 and head. This complements PR193009.Jung-uk Kim1-43/+1
Re-apply r381431 while I am here. Submitted by: Kurt Miller <kurt@intricatesoftware.com> Notes: svn path=/head/; revision=386818
2015-05-06. Update to 8u45.Greg Lewis1-309/+309
Notes: svn path=/head/; revision=385506
2015-03-16Clean up patches again. No functional change.Jung-uk Kim1-43/+1
Notes: svn path=/head/; revision=381431
2015-03-15. Update to 8u40.Greg Lewis1-813/+572
Notes: svn path=/head/; revision=381360
2015-02-27- Revert all damages done in r372338 and r379049.Jung-uk Kim1-44/+2
- Really fix non-release builds. [1] PR: 193009 [1] Notes: svn path=/head/; revision=380064
2015-02-02. Update to 8u31.Greg Lewis1-372/+295
Notes: svn path=/head/; revision=378297
2014-11-20- Add an empty directory to plist to fix staging.Jung-uk Kim1-0/+11
- Fix build for 8.x on amd64. [1] - Use tar(1) to extract all distfiles. [2] PR: 194988 [1] Submitted by: Mikhail T. (mi at aldan dot algebra dot com) [2] Notes: svn path=/head/; revision=372834
2014-11-11- Fix build on i386 with clang. [1]Jung-uk Kim1-4/+21
- Fix mismerged libnio.so. [2] Reported by: antoine [1] Tested by: antoine [1] PR: 194941 [2] Notes: svn path=/head/; revision=372474
2014-11-09. Update to 8u25.Greg Lewis1-893/+4806
Notes: svn path=/head/; revision=372338
2014-10-30Merge Linux-specific changes to BSD patches. Most importantly, this changeJung-uk Kim1-0/+23
corrects 'os.arch' property for i386 to fix regressions. PR: 194419 Notes: svn path=/head/; revision=371759
2014-10-18The MAP_NORESERVE flag to mmap() has never been implemented in FreeBSD andJohn Baldwin1-1/+28
is being removed. No portrev bump needed since the kernel will continue to accept this flag for old binaries even after support for it in new binaries is removed. PR: 193961 Approved by: portmgr (antoine) Notes: svn path=/head/; revision=371117
2014-07-20. Update to 8u11. This requires moving the patch file for 8u5 to startGreg Lewis1-14/+5
with 8u05 to preserve patch file ordering. Notes: svn path=/head/; revision=362333
2014-06-27Implement current and signal methods for sun.nio.ch.NativeThread. Note thisJung-uk Kim1-0/+51
fixes a test case in the following Apache Solr bug report. https://issues.apache.org/jira/browse/SOLR-6204 Reported by: Dawid Weiss <dawid.weiss@gmail.com> Notes: svn path=/head/; revision=359595
2014-05-21Fix printing services. When CUPS is used, ${LOCALBASE}/bin/lpr must be usedJung-uk Kim1-6/+33
to print a generated PostScript file. When lpd(8) is used, lpr(1) from base must be used. Also, status command for lpc(8) requires a printer name. If no argument is specified, i.e., "/usr/sbin/lpc status", then it displays the command usage, i.e., "usage: status {all | printer ...}". Unfortunately, "usage" is interpreted as a printer name because ":" is included. Add "all" and adjust an expression for grep(1). Notes: svn path=/head/; revision=354762
2014-05-17Always link libjli statically. When launchers are symlinked, it may not beJung-uk Kim1-145/+170
able to find libjli.so from RPATH because argv[0] points to the symlink. Note it seems Linux does not have the problem when /proc/self/exe exists. If it does not exist, it also fails to find libjli.so. Clean up patches while I am here. Notes: svn path=/head/; revision=354285
2014-05-15Add support for java/icedtea-web. Clean up some patches while I am here.Jung-uk Kim1-27/+33
Notes: svn path=/head/; revision=354182
2014-05-01Merge more HotSpot patches from java/openjdk6 and clean up.Jung-uk Kim1-963/+452
Notes: svn path=/head/; revision=352721
2014-04-29- Unbreak libnet. Obviously, bsd_close.c must not be excluded for BSD.Jung-uk Kim1-15/+64
- Move jspawnhelper to jre/lib/<arch> directory as Solaris does. [1] - Add sigset(2) wrapper for libsig.so. - Disable UseMembar by default. Inspired by: Kurt Miller (kurt at intricatesoftware dot com) [1] Notes: svn path=/head/; revision=352573
2014-04-28Add couple of patches missed in the previous commit.Jung-uk Kim1-0/+232
Notes: svn path=/head/; revision=352548
2014-04-28Merge more patches for JDK from java/openjdk6 and clean up.Jung-uk Kim1-35/+621
Notes: svn path=/head/; revision=352544
2014-04-25- Disable ccache. Precompiled headers seem to cause troubles with it. [1]Jung-uk Kim1-38/+2831
- Add more BSD patches for Java files and fix endianness issues for C files. Reported by: Jenkins (via swills) [1] Notes: svn path=/head/; revision=352085
2014-04-21Update to 8u5.Jung-uk Kim1-0/+11
Notes: svn path=/head/; revision=351721
2014-03-28Add a port of OpenJDK8.Jung-uk Kim1-0/+6843
Submitted by: Brian Gardner <openjdk@getsnappy.com> (preliminary version) Notes: svn path=/head/; revision=349468