summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--desktop/netsurf.c3
-rw-r--r--utils/config.h3
-rw-r--r--utils/utils.h4
3 files changed, 6 insertions, 4 deletions
diff --git a/desktop/netsurf.c b/desktop/netsurf.c
index afefd50be..62adf63e8 100644
--- a/desktop/netsurf.c
+++ b/desktop/netsurf.c
@@ -104,7 +104,8 @@ void netsurf_init(int argc, char** argv)
* SIGPIPE, anyway, so may as well just ignore them all. */
signal(SIGPIPE, SIG_IGN);
-#if !((defined(__SVR4) && defined(__sun)) || defined(__NetBSD__))
+#if !((defined(__SVR4) && defined(__sun)) || defined(__NetBSD__) || \
+ defined(__OpenBSD__))
stdout = stderr;
#endif
diff --git a/utils/config.h b/utils/config.h
index fd1cf43fa..a406e3f1e 100644
--- a/utils/config.h
+++ b/utils/config.h
@@ -25,7 +25,8 @@
#define HAVE_STRNDUP
#if defined(__FreeBSD__) || (defined(__SRV4) && defined(__sun)) || \
- defined(__APPLE__) || defined(__HAIKU__) || defined(__BEOS__)
+ defined(__APPLE__) || defined(__HAIKU__) || defined(__BEOS__) \
+ || defined(__OpenBSD__)
/* FreeBSD and Solaris do not have this function, so
* we implement it ourselves in util.c
*/
diff --git a/utils/utils.h b/utils/utils.h
index e286de76f..f2cd2e0dd 100644
--- a/utils/utils.h
+++ b/utils/utils.h
@@ -82,8 +82,8 @@ void regcomp_wrapper(regex_t *preg, const char *regex, int cflags);
void unicode_transliterate(unsigned int c, char **r);
char *human_friendly_bytesize(unsigned long bytesize);
const char *rfc1123_date(time_t t);
-#if !(defined(_GNU_SOURCE) || defined(__NetBSD__)) || defined(riscos) || \
- defined(__APPLE__)
+#if !(defined(_GNU_SOURCE) || defined(__NetBSD__) || defined(__OpenBSD__)) \
+ || defined(riscos) || defined(__APPLE__)
char *strcasestr(const char *haystack, const char *needle);
#endif
unsigned int wallclock(void);