svn commit: r398376 - head/devel/luajava/files

Steve Wills swills at FreeBSD.org
Thu Oct 1 18:20:04 UTC 2015


Author: swills
Date: Thu Oct  1 18:20:03 2015
New Revision: 398376
URL: https://svnweb.freebsd.org/changeset/ports/398376

Log:
  devel/luajava: fix build with OpenJDK8
  
  PR:		203061
  Submitted by:	glewis
  Approved by:	maintainer timeout (sunghyuk at gmail.com, >2 weeks)

Added:
  head/devel/luajava/files/patch-Makefile   (contents, props changed)

Added: head/devel/luajava/files/patch-Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/luajava/files/patch-Makefile	Thu Oct  1 18:20:03 2015	(r398376)
@@ -0,0 +1,18 @@
+--- Makefile.orig	2015-09-10 23:58:50.499075000 -0700
++++ Makefile	2015-09-11 00:01:10.958396000 -0700
+@@ -55,7 +55,14 @@
+ # Create the API Documentation
+ #
+ apidoc:
+-	$(JDK)/bin/javadoc -public -classpath src/java/ -quiet -d "doc/us/API" $(DOC_CLASSES)
++	case $(JDK) in \
++		*openjdk8*) \
++			$(JDK)/bin/javadoc -Xdoclint:none -public -classpath src/java/ -quiet -d "doc/us/API" $(DOC_CLASSES) \
++			;; \
++		*) \
++			$(JDK)/bin/javadoc -public -classpath src/java/ -quiet -d "doc/us/API" $(DOC_CLASSES) \
++			;; \
++	esac
+ 
+ #
+ # Build .c files.


More information about the svn-ports-head mailing list