aboutsummaryrefslogtreecommitdiffstats
path: root/rdr
diff options
context:
space:
mode:
authorConstantin Kaplinsky <const@tightvnc.com>2006-03-02 12:03:30 +0000
committerConstantin Kaplinsky <const@tightvnc.com>2006-03-02 12:03:30 +0000
commita686690d0700fd62d24f831c5e25e08510a299a8 (patch)
tree2ddcb24ebcfaad57732ee7798ef55120e1a1e04b /rdr
parenta758843612429cfa03f46c71449f8020118bbe53 (diff)
downloadtigervnc-a686690d0700fd62d24f831c5e25e08510a299a8.tar.gz
tigervnc-a686690d0700fd62d24f831c5e25e08510a299a8.zip
Porting changes for LynxOS 2.3.
git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@499 3789f03b-4d11-0410-bbf8-ca57d06f2519
Diffstat (limited to 'rdr')
-rw-r--r--rdr/FdInStream.cxx5
-rw-r--r--rdr/FdOutStream.cxx5
2 files changed, 10 insertions, 0 deletions
diff --git a/rdr/FdInStream.cxx b/rdr/FdInStream.cxx
index f64f68e1..2b119735 100644
--- a/rdr/FdInStream.cxx
+++ b/rdr/FdInStream.cxx
@@ -48,6 +48,11 @@
#include <sys/select.h>
#endif
+// XXX Lynx/OS 2.3: protos for gettimeofday(), select(), bzero()
+#ifdef Lynx
+#include <sys/proto.h>
+#endif
+
#include <rdr/FdInStream.h>
#include <rdr/Exception.h>
diff --git a/rdr/FdOutStream.cxx b/rdr/FdOutStream.cxx
index e65133da..07ac04c2 100644
--- a/rdr/FdOutStream.cxx
+++ b/rdr/FdOutStream.cxx
@@ -33,6 +33,11 @@
#include <sys/time.h>
#endif
+// XXX Lynx/OS 2.3: protos for select(), bzero()
+#ifdef Lynx
+#include <sys/proto.h>
+#endif
+
#include <rdr/FdOutStream.h>
#include <rdr/Exception.h>