summaryrefslogtreecommitdiff
path: root/editors/openoffice-devel/files/patch-sal::osl::unx::socket.c
diff options
context:
space:
mode:
authorMartin Blapp <mbr@FreeBSD.org>2002-10-21 09:02:08 +0000
committerMartin Blapp <mbr@FreeBSD.org>2002-10-21 09:02:08 +0000
commit403bb5464a5b30c3853b1554265d0c8741c72690 (patch)
treec828046c732cde09938fa2839d8f8c5d8855f415 /editors/openoffice-devel/files/patch-sal::osl::unx::socket.c
parentAll patches have been repocopied to use + as separator and not "::". (diff)
All patches will be a repocopy from ports/openoffice/files. Remove old
patches with "::" delimiters.
Notes
Notes: svn path=/head/; revision=68481
Diffstat (limited to 'editors/openoffice-devel/files/patch-sal::osl::unx::socket.c')
-rw-r--r--editors/openoffice-devel/files/patch-sal::osl::unx::socket.c26
1 files changed, 0 insertions, 26 deletions
diff --git a/editors/openoffice-devel/files/patch-sal::osl::unx::socket.c b/editors/openoffice-devel/files/patch-sal::osl::unx::socket.c
deleted file mode 100644
index 9541cac8583f..000000000000
--- a/editors/openoffice-devel/files/patch-sal::osl::unx::socket.c
+++ /dev/null
@@ -1,26 +0,0 @@
---- ../sal/osl/unx/socket.c.orig Tue Apr 9 20:09:53 2002
-+++ ../sal/osl/unx/socket.c Fri Oct 18 20:00:19 2002
-@@ -82,12 +82,12 @@
- #undef HAVE_POLL_H
- #endif
-
--#if defined(LINUX) || defined (IRIX) || defined(NETBSD)
-+#if defined(LINUX) || defined (IRIX) || defined(NETBSD) || defined ( FREEBSD )
- #include <sys/poll.h>
- #define HAVE_POLL_H
- #endif /* HAVE_POLL_H */
-
--#if defined(SOLARIS) || defined ( FREEBSD )
-+#if defined(SOLARIS)
- #include <poll.h>
- #define HAVE_POLL_H
- #endif /* SOLARIS */
-@@ -1965,7 +1965,7 @@
- /*****************************************************************************/
- oslSocketAddr SAL_CALL osl_getLocalAddrOfSocket(oslSocket pSocket)
- {
--#ifdef LINUX
-+#ifdef LINUX || defined(FREEBSD)
- socklen_t AddrLen;
- #else
- /* mfe: Solaris 'cc +w' means Addrlen should be signed! */