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

This commit is contained in:
John Marino 2015-11-13 12:42:12 +00:00
parent 400d82bff3
commit e34ab12aa0
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=401507
2 changed files with 12 additions and 1 deletions

View file

@ -12,7 +12,7 @@ COMMENT= Small build tool that can be used as a replacement for make(1)
OPTIONS_DEFINE= DOCS OPTIONS_DEFINE= DOCS
USES= dos2unix gmake tar:bzip2 USES= dos2unix gmake tar:bzip2
DOS2UNIX_GLOB= *.c DOS2UNIX_GLOB= *.c jam.h
PORTDOCS= Jam.html \ PORTDOCS= Jam.html \
Jambase.html \ Jambase.html \

View file

@ -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