svn commit: r502032 - head/graphics/opennurbs

Fernando Apesteguía fernape at FreeBSD.org
Sun May 19 18:23:50 UTC 2019


Author: fernape
Date: Sun May 19 18:23:48 2019
New Revision: 502032
URL: https://svnweb.freebsd.org/changeset/ports/502032

Log:
  graphics/opennurbs: unbreak in 13-CURRENT
  
  In r311275 zlib.h was moved to contrib/zlib/zlib.h from lib/libz/zlib.h.
  Update the port Makefile to reflect this possibility.
  
  PR:	237936
  Submitted by:	phk@

Modified:
  head/graphics/opennurbs/Makefile

Modified: head/graphics/opennurbs/Makefile
==============================================================================
--- head/graphics/opennurbs/Makefile	Sun May 19 18:20:39 2019	(r502031)
+++ head/graphics/opennurbs/Makefile	Sun May 19 18:23:48 2019	(r502032)
@@ -24,10 +24,13 @@ OPTIONS_DEFINE=	EXAMPLES
 # In r311275 zlib.h was moved to contrib/zlib/zlib.h from lib/libz/zlib.h
 LIBZ=		${SRC_BASE}/contrib/zlib
 .if !exists(${LIBZ}/zlib.h)
+LIBZ=		${SRC_BASE}/sys/contrib/zlib
+.endif
+.if !exists(${LIBZ}/zlib.h)
 LIBZ:=		${SRC_BASE}/lib/libz
-.  if !exists(${LIBZ}/zlib.h)
+.endif
+.if !exists(${LIBZ}/zlib.h)
 IGNORE=		needs SRC_BASE to compile. Install base system sources and try again
-.  endif
 .endif
 
 .if ${ARCH} != i386


More information about the svn-ports-head mailing list