svn commit: r401507 - in head/devel/ftjam: . files

John Marino marino at FreeBSD.org
Fri Nov 13 12:42:14 UTC 2015


Author: marino
Date: Fri Nov 13 12:42:12 2015
New Revision: 401507
URL: https://svnweb.freebsd.org/changeset/ports/401507

Log:
  devel/ftjam: Add patch to support malloc.h-free DF

Added:
  head/devel/ftjam/files/patch-jam.h   (contents, props changed)
Modified:
  head/devel/ftjam/Makefile

Modified: head/devel/ftjam/Makefile
==============================================================================
--- head/devel/ftjam/Makefile	Fri Nov 13 12:41:49 2015	(r401506)
+++ head/devel/ftjam/Makefile	Fri Nov 13 12:42:12 2015	(r401507)
@@ -12,7 +12,7 @@ COMMENT=	Small build tool that can be us
 OPTIONS_DEFINE=	DOCS
 
 USES=		dos2unix gmake tar:bzip2
-DOS2UNIX_GLOB=	*.c
+DOS2UNIX_GLOB=	*.c jam.h
 
 PORTDOCS=	Jam.html \
 		Jambase.html \

Added: head/devel/ftjam/files/patch-jam.h
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/ftjam/files/patch-jam.h	Fri Nov 13 12:42:12 2015	(r401507)
@@ -0,0 +1,11 @@
+--- jam.h.orig	2015-11-13 12:38:24 UTC
++++ jam.h
+@@ -227,7 +227,7 @@
+ # define OSMINOR "OS=CYGWIN"
+ # define OS_CYGWIN
+ # endif
+-# ifdef __FreeBSD__
++# if defined __FreeBSD__ || defined __DragonFly__
+ # define OSMINOR "OS=FREEBSD"
+ # define OS_FREEBSD
+ # endif


More information about the svn-ports-all mailing list