diff options
author | steve <steve@FreeBSD.org> | 1999-06-06 15:36:20 +0000 |
---|---|---|
committer | steve <steve@FreeBSD.org> | 1999-06-06 15:36:20 +0000 |
commit | 0287f4844b61b5f2c7b5d10f6af97f7699606915 (patch) | |
tree | 506bc2adc04fd15365b28bc9cc30ffccb5c0a571 /games/3dc | |
parent | 535354af953c363a2a8044f6f0f75b239cf6dbbd (diff) | |
download | FreeBSD-ports-0287f4844b61b5f2c7b5d10f6af97f7699606915.zip FreeBSD-ports-0287f4844b61b5f2c7b5d10f6af97f7699606915.tar.gz |
Don't include alloca.h on FreeBSD/Alpha.
Diffstat (limited to 'games/3dc')
-rw-r--r-- | games/3dc/files/patch-ab | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/games/3dc/files/patch-ab b/games/3dc/files/patch-ab new file mode 100644 index 0000000..8342b7c --- /dev/null +++ b/games/3dc/files/patch-ab @@ -0,0 +1,11 @@ +--- ../include/machine.h.orig Mon May 31 12:57:09 1999 ++++ ../include/machine.h Mon May 31 12:57:36 1999 +@@ -35,7 +35,7 @@ + #include <ulimit.h> + #endif + +-#ifdef __alpha__ ++#if defined(__alpha__) && !defined(__FreeBSD__) + #include <alloca.h> + #endif /* __alpha__ */ + |