diff options
author | John Marino <marino@FreeBSD.org> | 2015-11-13 08:53:52 +0000 |
---|---|---|
committer | John Marino <marino@FreeBSD.org> | 2015-11-13 08:53:52 +0000 |
commit | bbe2ea9e1d954f626c3afbf448644db197bba07e (patch) | |
tree | a38c86bd47201fa9271e29a1e3e913b4f29c6b18 | |
parent | 1ba0b6874ea21463c2ae605dcdd810573c13bcbf (diff) | |
download | freebsd-ports-bbe2ea9e1d954f626c3afbf448644db197bba07e.zip |
emulators/visualboyadvance-m: Expand patch to support malloc.h-less DF
-rw-r--r-- | emulators/visualboyadvance-m/files/patch-src-gba-GBALink.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/emulators/visualboyadvance-m/files/patch-src-gba-GBALink.cpp b/emulators/visualboyadvance-m/files/patch-src-gba-GBALink.cpp index 9e21ce9e173f..db6e961da920 100644 --- a/emulators/visualboyadvance-m/files/patch-src-gba-GBALink.cpp +++ b/emulators/visualboyadvance-m/files/patch-src-gba-GBALink.cpp @@ -8,7 +8,7 @@ // malloc.h does not seem to exist on Mac OS 10.7 -#ifdef __APPLE__ -+#if defined(__APPLE__) || defined(__FreeBSD__) ++#if defined(__APPLE__) || defined(__FreeBSD__) || defined(__DragonFly__) #include <stdlib.h> #else #include <malloc.h> |