summaryrefslogtreecommitdiff
path: root/idlc
diff options
context:
space:
mode:
authorSander Vesik <svesik@openoffice.org>2001-05-14 11:48:24 +0000
committerSander Vesik <svesik@openoffice.org>2001-05-14 11:48:24 +0000
commitbffea28469e383ee26e5e7f1f513aea336fb90fb (patch)
tree772334492e148ab74aa2d1e3515a79647f0fd60e /idlc
parent9fea05dba7f8bc841065715d2e1fae0d66174f64 (diff)
Like FreeBSD/MacOSX NetBSD has sys/wait.h instead of wait.h
Contributed by: Michael Rauch <mrauch-openoffice@fs.tum.de>
Diffstat (limited to 'idlc')
-rw-r--r--idlc/source/idlccompile.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/idlc/source/idlccompile.cxx b/idlc/source/idlccompile.cxx
index 6939740f6..a934b5803 100644
--- a/idlc/source/idlccompile.cxx
+++ b/idlc/source/idlccompile.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: idlccompile.cxx,v $
*
- * $Revision: 1.2 $
+ * $Revision: 1.3 $
*
- * last change: $Author: svesik $ $Date: 2001-05-07 19:12:26 $
+ * last change: $Author: svesik $ $Date: 2001-05-14 12:48:24 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -81,7 +81,7 @@
#ifdef SAL_UNX
#include <unistd.h>
-#if defined(MACOSX) || defined(FREEBSD)
+#if defined(MACOSX) || defined(FREEBSD) || defined(NETBSD)
#include <sys/wait.h>
#else
#include <wait.h>