diff options
author | Kirill Ponomarev <krion@FreeBSD.org> | 2004-02-01 22:02:22 +0000 |
---|---|---|
committer | Kirill Ponomarev <krion@FreeBSD.org> | 2004-02-01 22:02:22 +0000 |
commit | d39eb55ced06144ce8218982305477b20421e547 (patch) | |
tree | bbc4184993a144fc5fed524e63691bf350dba07e /biology/babel/files/patch-block.c | |
parent | - Unbreak install (fix WRKSRC) (diff) |
- Fix build on AMD64
- Use DOCSDIR
Diffstat (limited to '')
-rw-r--r-- | biology/babel/files/patch-block.c | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/biology/babel/files/patch-block.c b/biology/babel/files/patch-block.c new file mode 100644 index 000000000000..ab963562f575 --- /dev/null +++ b/biology/babel/files/patch-block.c @@ -0,0 +1,39 @@ +--- block.c.orig Tue Jan 21 16:52:32 1997 ++++ block.c Sun Feb 1 22:56:41 2004 +@@ -7,6 +7,10 @@ + */ + + #include "bbltyp.h" ++#include <osreldate.h> ++#if __FreeBSD_version > 500000 ++#include <stdarg.h> ++#endif + + /* the routine that does all the work */ + static int block__doalloc(int, block_ptr *, const char *, va_list); +@@ -99,7 +103,11 @@ + void *array; + + /* calc how much space we are gonna need */ ++ #if __FreeBSD_version > 500000 && defined(__amd64__) ++ va_copy(ap, initap); ++ #else + ap = initap; ++ #endif + size = 0; + for(i=0; types[i] != '\0'; i++) + { +@@ -115,8 +123,12 @@ + + /* set up the ptrs if we can alloc the memory */ + if(*handle != NULL) +- { ++ { ++ #if __FreeBSD_version > 500000 && defined(__amd64__) ++ va_copy(ap, initap); ++ #else + ap = initap; ++ #endif + ptr = 0; + for(i=0; types[i] != '\0'; i++) + { |