Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 19 May 2019 18:23:49 +0000 (UTC)
From:      =?UTF-8?Q?Fernando_Apestegu=c3=ada?= <fernape@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r502032 - head/graphics/opennurbs
Message-ID:  <201905191823.x4JINndC022748@repo.freebsd.org>

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



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