summaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
authorAdrien Destugues <pulkomandy@gmail.com>2015-07-13 19:45:02 +0200
committerVincent Sanders <vince@kyllikki.org>2015-07-14 09:12:44 +0100
commit989bc6e190ac37f60c273dafa8556741b28618b0 (patch)
tree4f986fedd7caac8c364e6ab1506c583eebe36fcc /utils
parentf24b4b94bc3aaf9eb725025a9104a8a0eaee6466 (diff)
downloadnetsurf-989bc6e190ac37f60c273dafa8556741b28618b0.tar.gz
netsurf-989bc6e190ac37f60c273dafa8556741b28618b0.tar.bz2
Fix build on 64-bit Haiku
- Fix path to look for libnetwork to work also on non-hybrid systems - Remove references to /boot/common as it is not used anymore - Fix a few type errors - Use compiler provided va_copy when available
Diffstat (limited to 'utils')
-rw-r--r--utils/talloc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/talloc.c b/utils/talloc.c
index 44b65aa3c..408e94b46 100644
--- a/utils/talloc.c
+++ b/utils/talloc.c
@@ -55,7 +55,7 @@
#include "replace.h"
#else
#include <stdarg.h>
-#if !defined(__BEOS__) && !defined(__HAIKU__) && __GNUC__ > 2
+#if !defined(__BEOS__) && __GNUC__ > 2
/* Assume we've got va_copy */
#define HAVE_VA_COPY
#include <string.h>