Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 7 Sep 2012 23:17:10 +0000 (UTC)
From:      Xin LI <delphij@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r303838 - head/lang/ezm3
Message-ID:  <201209072317.q87NHAZW080795@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: delphij
Date: Fri Sep  7 23:17:09 2012
New Revision: 303838
URL: http://svn.freebsd.org/changeset/ports/303838

Log:
  Unbreak for recent FreeBSD versions by zapping out malloc.c, which is no
  longer needed in modern FreeBSD versions.
  
  PORTREVISION intentionally not bumped.

Modified:
  head/lang/ezm3/Makefile

Modified: head/lang/ezm3/Makefile
==============================================================================
--- head/lang/ezm3/Makefile	Fri Sep  7 23:13:42 2012	(r303837)
+++ head/lang/ezm3/Makefile	Fri Sep  7 23:17:09 2012	(r303838)
@@ -83,6 +83,9 @@ pre-patch:
 	@cd ${WRKSRC} && ${PATCH} ${PATCH_ARGS} < ${WRKDIR}/${f}
 .endfor
 .endif
+.if ${OSVERSION} >= 1000012
+	@${FIND} ${WRKSRC} -name 'malloc.c' -exec truncate -s 0 {} +
+.endif
 
 do-build:
 	@${ECHO_MSG} "This port does everything in the install step."



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