]> git.lyx.org Git - lyx.git/blobdiff - src/support/socktools.C
hopefully fix tex2lyx linking.
[lyx.git] / src / support / socktools.C
index 640e73f700cfdf02cc898d306b605206b3ac24b9..d22a201c5b63efbae6c01ddf4d199631002e4a23 100644 (file)
 
 #include <config.h>
 
-#include "socktools.h"
+#include "support/socktools.h"
+
+#if !defined (HAVE_FCNTL)
+// We provide stubs because we don't (yet?) support the native OS API.
+
+namespace lyx {
+namespace support {
+namespace socktools {
+
+int listen(std::string const &, int)
+{
+       return -1;
+}
+
+
+int accept(int)
+{
+       return -1;
+}
+
+} // namespace socktools
+} // namespace support
+} // namespace lyx
+
+#else // defined (HAVE_FCNTL)
+
+#include "support/lyxlib.h"
+
 #include "debug.h"
-#include "lyxlib.h"
 
 #include <sys/socket.h>
 #include <sys/un.h>
 #include <fcntl.h>
-#include <unistd.h>
+#ifdef HAVE_UNISTD_H
+# include <unistd.h>
+#endif
 
 #include <cerrno>
 
 using std::endl;
-using std::strerror;
-
 using std::string;
 
+#ifndef CXX_GLOBAL_CSTD
+using std::strerror;
+#endif
+
 // This MACRO eppears to be defined only on Linux.
 #if !defined(SUN_LEN)
 #define SUN_LEN(su) \
@@ -132,3 +162,5 @@ int accept(int sd)
 } // namespace socktools
 } // namespace support
 } // namespace lyx
+
+#endif // defined (HAVE_FCNTL)