Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 1 Oct 2015 18:20:04 +0000 (UTC)
From:      Steve Wills <swills@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r398376 - head/devel/luajava/files
Message-ID:  <201510011820.t91IK44x027491@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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@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.



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201510011820.t91IK44x027491>