You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openoffice.apache.org by da...@apache.org on 2015/10/13 20:55:00 UTC

svn commit: r1708483 - /openoffice/trunk/main/sal/osl/unx/sockimpl.h

Author: damjan
Date: Tue Oct 13 18:54:59 2015
New Revision: 1708483

URL: http://svn.apache.org/viewvc?rev=1708483&view=rev
Log:
#i126586# don't break on non-Linux non-FreeBSD non-NetBSD *nix systems ...


Modified:
    openoffice/trunk/main/sal/osl/unx/sockimpl.h

Modified: openoffice/trunk/main/sal/osl/unx/sockimpl.h
URL: http://svn.apache.org/viewvc/openoffice/trunk/main/sal/osl/unx/sockimpl.h?rev=1708483&r1=1708482&r2=1708483&view=diff
==============================================================================
--- openoffice/trunk/main/sal/osl/unx/sockimpl.h (original)
+++ openoffice/trunk/main/sal/osl/unx/sockimpl.h Tue Oct 13 18:54:59 2015
@@ -36,6 +36,8 @@ typedef void* (*oslCloseCallback) (void*
 
 #if defined(LINUX) || defined(FREEBSD) || defined(NETBSD)
 #define CLOSESOCKET_DOESNT_WAKE_UP_ACCEPT 1
+#else
+#define CLOSESOCKET_DOESNT_WAKE_UP_ACCEPT 0
 #endif
 	
 struct oslSocketImpl {