summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--editors/openoffice-1.0/files/patch-sfx2+source+appl+officeacceptthread.cxx18
-rw-r--r--editors/openoffice-1.0/files/patch-sfx2::source::appl::officeacceptthread.cxx18
-rw-r--r--editors/openoffice-1.1-devel/files/patch-sfx2+source+appl+officeacceptthread.cxx18
-rw-r--r--editors/openoffice-1.1/files/patch-sfx2+source+appl+officeacceptthread.cxx18
-rw-r--r--editors/openoffice-2.0-devel/files/patch-sfx2+source+appl+officeacceptthread.cxx18
-rw-r--r--editors/openoffice-3-devel/files/patch-sfx2+source+appl+officeacceptthread.cxx18
-rw-r--r--editors/openoffice-3/files/patch-sfx2+source+appl+officeacceptthread.cxx18
-rw-r--r--editors/openoffice-devel/files/patch-sfx2+source+appl+officeacceptthread.cxx18
-rw-r--r--editors/openoffice.org-1.0/files/patch-sfx2+source+appl+officeacceptthread.cxx18
-rw-r--r--editors/openoffice.org-1.0/files/patch-sfx2::source::appl::officeacceptthread.cxx18
-rw-r--r--editors/openoffice.org-1.1-devel/files/patch-sfx2+source+appl+officeacceptthread.cxx18
-rw-r--r--editors/openoffice.org-1.1/files/patch-sfx2+source+appl+officeacceptthread.cxx18
-rw-r--r--editors/openoffice.org-2-RC/files/patch-sfx2+source+appl+officeacceptthread.cxx18
-rw-r--r--editors/openoffice.org-2-devel/files/patch-sfx2+source+appl+officeacceptthread.cxx18
-rw-r--r--editors/openoffice.org-2.0-devel/files/patch-sfx2+source+appl+officeacceptthread.cxx18
-rw-r--r--editors/openoffice.org-2.0/files/patch-sfx2+source+appl+officeacceptthread.cxx18
-rw-r--r--editors/openoffice.org-2/files/patch-sfx2+source+appl+officeacceptthread.cxx18
-rw-r--r--editors/openoffice.org-3-RC/files/patch-sfx2+source+appl+officeacceptthread.cxx18
-rw-r--r--editors/openoffice.org-3-devel/files/patch-sfx2+source+appl+officeacceptthread.cxx18
-rw-r--r--editors/openoffice.org-3/files/patch-sfx2+source+appl+officeacceptthread.cxx18
-rw-r--r--editors/openoffice.org-vcltesttool/files/patch-sfx2+source+appl+officeacceptthread.cxx18
-rw-r--r--editors/openoffice/files/patch-sfx2+source+appl+officeacceptthread.cxx18
-rw-r--r--editors/openoffice/files/patch-sfx2::source::appl::officeacceptthread.cxx18
23 files changed, 414 insertions, 0 deletions
diff --git a/editors/openoffice-1.0/files/patch-sfx2+source+appl+officeacceptthread.cxx b/editors/openoffice-1.0/files/patch-sfx2+source+appl+officeacceptthread.cxx
new file mode 100644
index 000000000000..a33491e0d8b2
--- /dev/null
+++ b/editors/openoffice-1.0/files/patch-sfx2+source+appl+officeacceptthread.cxx
@@ -0,0 +1,18 @@
+--- ../sfx2/source/appl/officeacceptthread.cxx.orig Sat Jul 20 22:56:19 2002
++++ ../sfx2/source/appl/officeacceptthread.cxx Sat Jul 20 22:56:54 2002
+@@ -123,13 +123,13 @@
+ sal_Bool static isProcessRunning( ::vos::OProcess::TProcessInfo& aProcessInfo )
+ {
+ int nRet;
+-#if defined (SOLARIS) || defined (IRIX)
++#if defined (SOLARIS) || defined (IRIX) || defined (FREEBSD) || defined (NETBSD)
+ int status;
+ nRet = waitpid(aProcessInfo.Ident, &status,WNOHANG);
+ #elif defined(LINUX)
+ nRet = kill(aProcessInfo.Ident, 0);
+ #endif
+-#if defined (LINUX) || defined (SOLARIS) || defined (IRIX)
++#if defined (LINUX) || defined (SOLARIS) || defined (IRIX) || defined (FREEBSD) || defined (NETBSD)
+ if ( nRet == 0 )
+ return sal_True; // process is running
+ if ( nRet < 0 )
diff --git a/editors/openoffice-1.0/files/patch-sfx2::source::appl::officeacceptthread.cxx b/editors/openoffice-1.0/files/patch-sfx2::source::appl::officeacceptthread.cxx
new file mode 100644
index 000000000000..a33491e0d8b2
--- /dev/null
+++ b/editors/openoffice-1.0/files/patch-sfx2::source::appl::officeacceptthread.cxx
@@ -0,0 +1,18 @@
+--- ../sfx2/source/appl/officeacceptthread.cxx.orig Sat Jul 20 22:56:19 2002
++++ ../sfx2/source/appl/officeacceptthread.cxx Sat Jul 20 22:56:54 2002
+@@ -123,13 +123,13 @@
+ sal_Bool static isProcessRunning( ::vos::OProcess::TProcessInfo& aProcessInfo )
+ {
+ int nRet;
+-#if defined (SOLARIS) || defined (IRIX)
++#if defined (SOLARIS) || defined (IRIX) || defined (FREEBSD) || defined (NETBSD)
+ int status;
+ nRet = waitpid(aProcessInfo.Ident, &status,WNOHANG);
+ #elif defined(LINUX)
+ nRet = kill(aProcessInfo.Ident, 0);
+ #endif
+-#if defined (LINUX) || defined (SOLARIS) || defined (IRIX)
++#if defined (LINUX) || defined (SOLARIS) || defined (IRIX) || defined (FREEBSD) || defined (NETBSD)
+ if ( nRet == 0 )
+ return sal_True; // process is running
+ if ( nRet < 0 )
diff --git a/editors/openoffice-1.1-devel/files/patch-sfx2+source+appl+officeacceptthread.cxx b/editors/openoffice-1.1-devel/files/patch-sfx2+source+appl+officeacceptthread.cxx
new file mode 100644
index 000000000000..a33491e0d8b2
--- /dev/null
+++ b/editors/openoffice-1.1-devel/files/patch-sfx2+source+appl+officeacceptthread.cxx
@@ -0,0 +1,18 @@
+--- ../sfx2/source/appl/officeacceptthread.cxx.orig Sat Jul 20 22:56:19 2002
++++ ../sfx2/source/appl/officeacceptthread.cxx Sat Jul 20 22:56:54 2002
+@@ -123,13 +123,13 @@
+ sal_Bool static isProcessRunning( ::vos::OProcess::TProcessInfo& aProcessInfo )
+ {
+ int nRet;
+-#if defined (SOLARIS) || defined (IRIX)
++#if defined (SOLARIS) || defined (IRIX) || defined (FREEBSD) || defined (NETBSD)
+ int status;
+ nRet = waitpid(aProcessInfo.Ident, &status,WNOHANG);
+ #elif defined(LINUX)
+ nRet = kill(aProcessInfo.Ident, 0);
+ #endif
+-#if defined (LINUX) || defined (SOLARIS) || defined (IRIX)
++#if defined (LINUX) || defined (SOLARIS) || defined (IRIX) || defined (FREEBSD) || defined (NETBSD)
+ if ( nRet == 0 )
+ return sal_True; // process is running
+ if ( nRet < 0 )
diff --git a/editors/openoffice-1.1/files/patch-sfx2+source+appl+officeacceptthread.cxx b/editors/openoffice-1.1/files/patch-sfx2+source+appl+officeacceptthread.cxx
new file mode 100644
index 000000000000..a33491e0d8b2
--- /dev/null
+++ b/editors/openoffice-1.1/files/patch-sfx2+source+appl+officeacceptthread.cxx
@@ -0,0 +1,18 @@
+--- ../sfx2/source/appl/officeacceptthread.cxx.orig Sat Jul 20 22:56:19 2002
++++ ../sfx2/source/appl/officeacceptthread.cxx Sat Jul 20 22:56:54 2002
+@@ -123,13 +123,13 @@
+ sal_Bool static isProcessRunning( ::vos::OProcess::TProcessInfo& aProcessInfo )
+ {
+ int nRet;
+-#if defined (SOLARIS) || defined (IRIX)
++#if defined (SOLARIS) || defined (IRIX) || defined (FREEBSD) || defined (NETBSD)
+ int status;
+ nRet = waitpid(aProcessInfo.Ident, &status,WNOHANG);
+ #elif defined(LINUX)
+ nRet = kill(aProcessInfo.Ident, 0);
+ #endif
+-#if defined (LINUX) || defined (SOLARIS) || defined (IRIX)
++#if defined (LINUX) || defined (SOLARIS) || defined (IRIX) || defined (FREEBSD) || defined (NETBSD)
+ if ( nRet == 0 )
+ return sal_True; // process is running
+ if ( nRet < 0 )
diff --git a/editors/openoffice-2.0-devel/files/patch-sfx2+source+appl+officeacceptthread.cxx b/editors/openoffice-2.0-devel/files/patch-sfx2+source+appl+officeacceptthread.cxx
new file mode 100644
index 000000000000..a33491e0d8b2
--- /dev/null
+++ b/editors/openoffice-2.0-devel/files/patch-sfx2+source+appl+officeacceptthread.cxx
@@ -0,0 +1,18 @@
+--- ../sfx2/source/appl/officeacceptthread.cxx.orig Sat Jul 20 22:56:19 2002
++++ ../sfx2/source/appl/officeacceptthread.cxx Sat Jul 20 22:56:54 2002
+@@ -123,13 +123,13 @@
+ sal_Bool static isProcessRunning( ::vos::OProcess::TProcessInfo& aProcessInfo )
+ {
+ int nRet;
+-#if defined (SOLARIS) || defined (IRIX)
++#if defined (SOLARIS) || defined (IRIX) || defined (FREEBSD) || defined (NETBSD)
+ int status;
+ nRet = waitpid(aProcessInfo.Ident, &status,WNOHANG);
+ #elif defined(LINUX)
+ nRet = kill(aProcessInfo.Ident, 0);
+ #endif
+-#if defined (LINUX) || defined (SOLARIS) || defined (IRIX)
++#if defined (LINUX) || defined (SOLARIS) || defined (IRIX) || defined (FREEBSD) || defined (NETBSD)
+ if ( nRet == 0 )
+ return sal_True; // process is running
+ if ( nRet < 0 )
diff --git a/editors/openoffice-3-devel/files/patch-sfx2+source+appl+officeacceptthread.cxx b/editors/openoffice-3-devel/files/patch-sfx2+source+appl+officeacceptthread.cxx
new file mode 100644
index 000000000000..a33491e0d8b2
--- /dev/null
+++ b/editors/openoffice-3-devel/files/patch-sfx2+source+appl+officeacceptthread.cxx
@@ -0,0 +1,18 @@
+--- ../sfx2/source/appl/officeacceptthread.cxx.orig Sat Jul 20 22:56:19 2002
++++ ../sfx2/source/appl/officeacceptthread.cxx Sat Jul 20 22:56:54 2002
+@@ -123,13 +123,13 @@
+ sal_Bool static isProcessRunning( ::vos::OProcess::TProcessInfo& aProcessInfo )
+ {
+ int nRet;
+-#if defined (SOLARIS) || defined (IRIX)
++#if defined (SOLARIS) || defined (IRIX) || defined (FREEBSD) || defined (NETBSD)
+ int status;
+ nRet = waitpid(aProcessInfo.Ident, &status,WNOHANG);
+ #elif defined(LINUX)
+ nRet = kill(aProcessInfo.Ident, 0);
+ #endif
+-#if defined (LINUX) || defined (SOLARIS) || defined (IRIX)
++#if defined (LINUX) || defined (SOLARIS) || defined (IRIX) || defined (FREEBSD) || defined (NETBSD)
+ if ( nRet == 0 )
+ return sal_True; // process is running
+ if ( nRet < 0 )
diff --git a/editors/openoffice-3/files/patch-sfx2+source+appl+officeacceptthread.cxx b/editors/openoffice-3/files/patch-sfx2+source+appl+officeacceptthread.cxx
new file mode 100644
index 000000000000..a33491e0d8b2
--- /dev/null
+++ b/editors/openoffice-3/files/patch-sfx2+source+appl+officeacceptthread.cxx
@@ -0,0 +1,18 @@
+--- ../sfx2/source/appl/officeacceptthread.cxx.orig Sat Jul 20 22:56:19 2002
++++ ../sfx2/source/appl/officeacceptthread.cxx Sat Jul 20 22:56:54 2002
+@@ -123,13 +123,13 @@
+ sal_Bool static isProcessRunning( ::vos::OProcess::TProcessInfo& aProcessInfo )
+ {
+ int nRet;
+-#if defined (SOLARIS) || defined (IRIX)
++#if defined (SOLARIS) || defined (IRIX) || defined (FREEBSD) || defined (NETBSD)
+ int status;
+ nRet = waitpid(aProcessInfo.Ident, &status,WNOHANG);
+ #elif defined(LINUX)
+ nRet = kill(aProcessInfo.Ident, 0);
+ #endif
+-#if defined (LINUX) || defined (SOLARIS) || defined (IRIX)
++#if defined (LINUX) || defined (SOLARIS) || defined (IRIX) || defined (FREEBSD) || defined (NETBSD)
+ if ( nRet == 0 )
+ return sal_True; // process is running
+ if ( nRet < 0 )
diff --git a/editors/openoffice-devel/files/patch-sfx2+source+appl+officeacceptthread.cxx b/editors/openoffice-devel/files/patch-sfx2+source+appl+officeacceptthread.cxx
new file mode 100644
index 000000000000..a33491e0d8b2
--- /dev/null
+++ b/editors/openoffice-devel/files/patch-sfx2+source+appl+officeacceptthread.cxx
@@ -0,0 +1,18 @@
+--- ../sfx2/source/appl/officeacceptthread.cxx.orig Sat Jul 20 22:56:19 2002
++++ ../sfx2/source/appl/officeacceptthread.cxx Sat Jul 20 22:56:54 2002
+@@ -123,13 +123,13 @@
+ sal_Bool static isProcessRunning( ::vos::OProcess::TProcessInfo& aProcessInfo )
+ {
+ int nRet;
+-#if defined (SOLARIS) || defined (IRIX)
++#if defined (SOLARIS) || defined (IRIX) || defined (FREEBSD) || defined (NETBSD)
+ int status;
+ nRet = waitpid(aProcessInfo.Ident, &status,WNOHANG);
+ #elif defined(LINUX)
+ nRet = kill(aProcessInfo.Ident, 0);
+ #endif
+-#if defined (LINUX) || defined (SOLARIS) || defined (IRIX)
++#if defined (LINUX) || defined (SOLARIS) || defined (IRIX) || defined (FREEBSD) || defined (NETBSD)
+ if ( nRet == 0 )
+ return sal_True; // process is running
+ if ( nRet < 0 )
diff --git a/editors/openoffice.org-1.0/files/patch-sfx2+source+appl+officeacceptthread.cxx b/editors/openoffice.org-1.0/files/patch-sfx2+source+appl+officeacceptthread.cxx
new file mode 100644
index 000000000000..a33491e0d8b2
--- /dev/null
+++ b/editors/openoffice.org-1.0/files/patch-sfx2+source+appl+officeacceptthread.cxx
@@ -0,0 +1,18 @@
+--- ../sfx2/source/appl/officeacceptthread.cxx.orig Sat Jul 20 22:56:19 2002
++++ ../sfx2/source/appl/officeacceptthread.cxx Sat Jul 20 22:56:54 2002
+@@ -123,13 +123,13 @@
+ sal_Bool static isProcessRunning( ::vos::OProcess::TProcessInfo& aProcessInfo )
+ {
+ int nRet;
+-#if defined (SOLARIS) || defined (IRIX)
++#if defined (SOLARIS) || defined (IRIX) || defined (FREEBSD) || defined (NETBSD)
+ int status;
+ nRet = waitpid(aProcessInfo.Ident, &status,WNOHANG);
+ #elif defined(LINUX)
+ nRet = kill(aProcessInfo.Ident, 0);
+ #endif
+-#if defined (LINUX) || defined (SOLARIS) || defined (IRIX)
++#if defined (LINUX) || defined (SOLARIS) || defined (IRIX) || defined (FREEBSD) || defined (NETBSD)
+ if ( nRet == 0 )
+ return sal_True; // process is running
+ if ( nRet < 0 )
diff --git a/editors/openoffice.org-1.0/files/patch-sfx2::source::appl::officeacceptthread.cxx b/editors/openoffice.org-1.0/files/patch-sfx2::source::appl::officeacceptthread.cxx
new file mode 100644
index 000000000000..a33491e0d8b2
--- /dev/null
+++ b/editors/openoffice.org-1.0/files/patch-sfx2::source::appl::officeacceptthread.cxx
@@ -0,0 +1,18 @@
+--- ../sfx2/source/appl/officeacceptthread.cxx.orig Sat Jul 20 22:56:19 2002
++++ ../sfx2/source/appl/officeacceptthread.cxx Sat Jul 20 22:56:54 2002
+@@ -123,13 +123,13 @@
+ sal_Bool static isProcessRunning( ::vos::OProcess::TProcessInfo& aProcessInfo )
+ {
+ int nRet;
+-#if defined (SOLARIS) || defined (IRIX)
++#if defined (SOLARIS) || defined (IRIX) || defined (FREEBSD) || defined (NETBSD)
+ int status;
+ nRet = waitpid(aProcessInfo.Ident, &status,WNOHANG);
+ #elif defined(LINUX)
+ nRet = kill(aProcessInfo.Ident, 0);
+ #endif
+-#if defined (LINUX) || defined (SOLARIS) || defined (IRIX)
++#if defined (LINUX) || defined (SOLARIS) || defined (IRIX) || defined (FREEBSD) || defined (NETBSD)
+ if ( nRet == 0 )
+ return sal_True; // process is running
+ if ( nRet < 0 )
diff --git a/editors/openoffice.org-1.1-devel/files/patch-sfx2+source+appl+officeacceptthread.cxx b/editors/openoffice.org-1.1-devel/files/patch-sfx2+source+appl+officeacceptthread.cxx
new file mode 100644
index 000000000000..a33491e0d8b2
--- /dev/null
+++ b/editors/openoffice.org-1.1-devel/files/patch-sfx2+source+appl+officeacceptthread.cxx
@@ -0,0 +1,18 @@
+--- ../sfx2/source/appl/officeacceptthread.cxx.orig Sat Jul 20 22:56:19 2002
++++ ../sfx2/source/appl/officeacceptthread.cxx Sat Jul 20 22:56:54 2002
+@@ -123,13 +123,13 @@
+ sal_Bool static isProcessRunning( ::vos::OProcess::TProcessInfo& aProcessInfo )
+ {
+ int nRet;
+-#if defined (SOLARIS) || defined (IRIX)
++#if defined (SOLARIS) || defined (IRIX) || defined (FREEBSD) || defined (NETBSD)
+ int status;
+ nRet = waitpid(aProcessInfo.Ident, &status,WNOHANG);
+ #elif defined(LINUX)
+ nRet = kill(aProcessInfo.Ident, 0);
+ #endif
+-#if defined (LINUX) || defined (SOLARIS) || defined (IRIX)
++#if defined (LINUX) || defined (SOLARIS) || defined (IRIX) || defined (FREEBSD) || defined (NETBSD)
+ if ( nRet == 0 )
+ return sal_True; // process is running
+ if ( nRet < 0 )
diff --git a/editors/openoffice.org-1.1/files/patch-sfx2+source+appl+officeacceptthread.cxx b/editors/openoffice.org-1.1/files/patch-sfx2+source+appl+officeacceptthread.cxx
new file mode 100644
index 000000000000..a33491e0d8b2
--- /dev/null
+++ b/editors/openoffice.org-1.1/files/patch-sfx2+source+appl+officeacceptthread.cxx
@@ -0,0 +1,18 @@
+--- ../sfx2/source/appl/officeacceptthread.cxx.orig Sat Jul 20 22:56:19 2002
++++ ../sfx2/source/appl/officeacceptthread.cxx Sat Jul 20 22:56:54 2002
+@@ -123,13 +123,13 @@
+ sal_Bool static isProcessRunning( ::vos::OProcess::TProcessInfo& aProcessInfo )
+ {
+ int nRet;
+-#if defined (SOLARIS) || defined (IRIX)
++#if defined (SOLARIS) || defined (IRIX) || defined (FREEBSD) || defined (NETBSD)
+ int status;
+ nRet = waitpid(aProcessInfo.Ident, &status,WNOHANG);
+ #elif defined(LINUX)
+ nRet = kill(aProcessInfo.Ident, 0);
+ #endif
+-#if defined (LINUX) || defined (SOLARIS) || defined (IRIX)
++#if defined (LINUX) || defined (SOLARIS) || defined (IRIX) || defined (FREEBSD) || defined (NETBSD)
+ if ( nRet == 0 )
+ return sal_True; // process is running
+ if ( nRet < 0 )
diff --git a/editors/openoffice.org-2-RC/files/patch-sfx2+source+appl+officeacceptthread.cxx b/editors/openoffice.org-2-RC/files/patch-sfx2+source+appl+officeacceptthread.cxx
new file mode 100644
index 000000000000..a33491e0d8b2
--- /dev/null
+++ b/editors/openoffice.org-2-RC/files/patch-sfx2+source+appl+officeacceptthread.cxx
@@ -0,0 +1,18 @@
+--- ../sfx2/source/appl/officeacceptthread.cxx.orig Sat Jul 20 22:56:19 2002
++++ ../sfx2/source/appl/officeacceptthread.cxx Sat Jul 20 22:56:54 2002
+@@ -123,13 +123,13 @@
+ sal_Bool static isProcessRunning( ::vos::OProcess::TProcessInfo& aProcessInfo )
+ {
+ int nRet;
+-#if defined (SOLARIS) || defined (IRIX)
++#if defined (SOLARIS) || defined (IRIX) || defined (FREEBSD) || defined (NETBSD)
+ int status;
+ nRet = waitpid(aProcessInfo.Ident, &status,WNOHANG);
+ #elif defined(LINUX)
+ nRet = kill(aProcessInfo.Ident, 0);
+ #endif
+-#if defined (LINUX) || defined (SOLARIS) || defined (IRIX)
++#if defined (LINUX) || defined (SOLARIS) || defined (IRIX) || defined (FREEBSD) || defined (NETBSD)
+ if ( nRet == 0 )
+ return sal_True; // process is running
+ if ( nRet < 0 )
diff --git a/editors/openoffice.org-2-devel/files/patch-sfx2+source+appl+officeacceptthread.cxx b/editors/openoffice.org-2-devel/files/patch-sfx2+source+appl+officeacceptthread.cxx
new file mode 100644
index 000000000000..a33491e0d8b2
--- /dev/null
+++ b/editors/openoffice.org-2-devel/files/patch-sfx2+source+appl+officeacceptthread.cxx
@@ -0,0 +1,18 @@
+--- ../sfx2/source/appl/officeacceptthread.cxx.orig Sat Jul 20 22:56:19 2002
++++ ../sfx2/source/appl/officeacceptthread.cxx Sat Jul 20 22:56:54 2002
+@@ -123,13 +123,13 @@
+ sal_Bool static isProcessRunning( ::vos::OProcess::TProcessInfo& aProcessInfo )
+ {
+ int nRet;
+-#if defined (SOLARIS) || defined (IRIX)
++#if defined (SOLARIS) || defined (IRIX) || defined (FREEBSD) || defined (NETBSD)
+ int status;
+ nRet = waitpid(aProcessInfo.Ident, &status,WNOHANG);
+ #elif defined(LINUX)
+ nRet = kill(aProcessInfo.Ident, 0);
+ #endif
+-#if defined (LINUX) || defined (SOLARIS) || defined (IRIX)
++#if defined (LINUX) || defined (SOLARIS) || defined (IRIX) || defined (FREEBSD) || defined (NETBSD)
+ if ( nRet == 0 )
+ return sal_True; // process is running
+ if ( nRet < 0 )
diff --git a/editors/openoffice.org-2.0-devel/files/patch-sfx2+source+appl+officeacceptthread.cxx b/editors/openoffice.org-2.0-devel/files/patch-sfx2+source+appl+officeacceptthread.cxx
new file mode 100644
index 000000000000..a33491e0d8b2
--- /dev/null
+++ b/editors/openoffice.org-2.0-devel/files/patch-sfx2+source+appl+officeacceptthread.cxx
@@ -0,0 +1,18 @@
+--- ../sfx2/source/appl/officeacceptthread.cxx.orig Sat Jul 20 22:56:19 2002
++++ ../sfx2/source/appl/officeacceptthread.cxx Sat Jul 20 22:56:54 2002
+@@ -123,13 +123,13 @@
+ sal_Bool static isProcessRunning( ::vos::OProcess::TProcessInfo& aProcessInfo )
+ {
+ int nRet;
+-#if defined (SOLARIS) || defined (IRIX)
++#if defined (SOLARIS) || defined (IRIX) || defined (FREEBSD) || defined (NETBSD)
+ int status;
+ nRet = waitpid(aProcessInfo.Ident, &status,WNOHANG);
+ #elif defined(LINUX)
+ nRet = kill(aProcessInfo.Ident, 0);
+ #endif
+-#if defined (LINUX) || defined (SOLARIS) || defined (IRIX)
++#if defined (LINUX) || defined (SOLARIS) || defined (IRIX) || defined (FREEBSD) || defined (NETBSD)
+ if ( nRet == 0 )
+ return sal_True; // process is running
+ if ( nRet < 0 )
diff --git a/editors/openoffice.org-2.0/files/patch-sfx2+source+appl+officeacceptthread.cxx b/editors/openoffice.org-2.0/files/patch-sfx2+source+appl+officeacceptthread.cxx
new file mode 100644
index 000000000000..a33491e0d8b2
--- /dev/null
+++ b/editors/openoffice.org-2.0/files/patch-sfx2+source+appl+officeacceptthread.cxx
@@ -0,0 +1,18 @@
+--- ../sfx2/source/appl/officeacceptthread.cxx.orig Sat Jul 20 22:56:19 2002
++++ ../sfx2/source/appl/officeacceptthread.cxx Sat Jul 20 22:56:54 2002
+@@ -123,13 +123,13 @@
+ sal_Bool static isProcessRunning( ::vos::OProcess::TProcessInfo& aProcessInfo )
+ {
+ int nRet;
+-#if defined (SOLARIS) || defined (IRIX)
++#if defined (SOLARIS) || defined (IRIX) || defined (FREEBSD) || defined (NETBSD)
+ int status;
+ nRet = waitpid(aProcessInfo.Ident, &status,WNOHANG);
+ #elif defined(LINUX)
+ nRet = kill(aProcessInfo.Ident, 0);
+ #endif
+-#if defined (LINUX) || defined (SOLARIS) || defined (IRIX)
++#if defined (LINUX) || defined (SOLARIS) || defined (IRIX) || defined (FREEBSD) || defined (NETBSD)
+ if ( nRet == 0 )
+ return sal_True; // process is running
+ if ( nRet < 0 )
diff --git a/editors/openoffice.org-2/files/patch-sfx2+source+appl+officeacceptthread.cxx b/editors/openoffice.org-2/files/patch-sfx2+source+appl+officeacceptthread.cxx
new file mode 100644
index 000000000000..a33491e0d8b2
--- /dev/null
+++ b/editors/openoffice.org-2/files/patch-sfx2+source+appl+officeacceptthread.cxx
@@ -0,0 +1,18 @@
+--- ../sfx2/source/appl/officeacceptthread.cxx.orig Sat Jul 20 22:56:19 2002
++++ ../sfx2/source/appl/officeacceptthread.cxx Sat Jul 20 22:56:54 2002
+@@ -123,13 +123,13 @@
+ sal_Bool static isProcessRunning( ::vos::OProcess::TProcessInfo& aProcessInfo )
+ {
+ int nRet;
+-#if defined (SOLARIS) || defined (IRIX)
++#if defined (SOLARIS) || defined (IRIX) || defined (FREEBSD) || defined (NETBSD)
+ int status;
+ nRet = waitpid(aProcessInfo.Ident, &status,WNOHANG);
+ #elif defined(LINUX)
+ nRet = kill(aProcessInfo.Ident, 0);
+ #endif
+-#if defined (LINUX) || defined (SOLARIS) || defined (IRIX)
++#if defined (LINUX) || defined (SOLARIS) || defined (IRIX) || defined (FREEBSD) || defined (NETBSD)
+ if ( nRet == 0 )
+ return sal_True; // process is running
+ if ( nRet < 0 )
diff --git a/editors/openoffice.org-3-RC/files/patch-sfx2+source+appl+officeacceptthread.cxx b/editors/openoffice.org-3-RC/files/patch-sfx2+source+appl+officeacceptthread.cxx
new file mode 100644
index 000000000000..a33491e0d8b2
--- /dev/null
+++ b/editors/openoffice.org-3-RC/files/patch-sfx2+source+appl+officeacceptthread.cxx
@@ -0,0 +1,18 @@
+--- ../sfx2/source/appl/officeacceptthread.cxx.orig Sat Jul 20 22:56:19 2002
++++ ../sfx2/source/appl/officeacceptthread.cxx Sat Jul 20 22:56:54 2002
+@@ -123,13 +123,13 @@
+ sal_Bool static isProcessRunning( ::vos::OProcess::TProcessInfo& aProcessInfo )
+ {
+ int nRet;
+-#if defined (SOLARIS) || defined (IRIX)
++#if defined (SOLARIS) || defined (IRIX) || defined (FREEBSD) || defined (NETBSD)
+ int status;
+ nRet = waitpid(aProcessInfo.Ident, &status,WNOHANG);
+ #elif defined(LINUX)
+ nRet = kill(aProcessInfo.Ident, 0);
+ #endif
+-#if defined (LINUX) || defined (SOLARIS) || defined (IRIX)
++#if defined (LINUX) || defined (SOLARIS) || defined (IRIX) || defined (FREEBSD) || defined (NETBSD)
+ if ( nRet == 0 )
+ return sal_True; // process is running
+ if ( nRet < 0 )
diff --git a/editors/openoffice.org-3-devel/files/patch-sfx2+source+appl+officeacceptthread.cxx b/editors/openoffice.org-3-devel/files/patch-sfx2+source+appl+officeacceptthread.cxx
new file mode 100644
index 000000000000..a33491e0d8b2
--- /dev/null
+++ b/editors/openoffice.org-3-devel/files/patch-sfx2+source+appl+officeacceptthread.cxx
@@ -0,0 +1,18 @@
+--- ../sfx2/source/appl/officeacceptthread.cxx.orig Sat Jul 20 22:56:19 2002
++++ ../sfx2/source/appl/officeacceptthread.cxx Sat Jul 20 22:56:54 2002
+@@ -123,13 +123,13 @@
+ sal_Bool static isProcessRunning( ::vos::OProcess::TProcessInfo& aProcessInfo )
+ {
+ int nRet;
+-#if defined (SOLARIS) || defined (IRIX)
++#if defined (SOLARIS) || defined (IRIX) || defined (FREEBSD) || defined (NETBSD)
+ int status;
+ nRet = waitpid(aProcessInfo.Ident, &status,WNOHANG);
+ #elif defined(LINUX)
+ nRet = kill(aProcessInfo.Ident, 0);
+ #endif
+-#if defined (LINUX) || defined (SOLARIS) || defined (IRIX)
++#if defined (LINUX) || defined (SOLARIS) || defined (IRIX) || defined (FREEBSD) || defined (NETBSD)
+ if ( nRet == 0 )
+ return sal_True; // process is running
+ if ( nRet < 0 )
diff --git a/editors/openoffice.org-3/files/patch-sfx2+source+appl+officeacceptthread.cxx b/editors/openoffice.org-3/files/patch-sfx2+source+appl+officeacceptthread.cxx
new file mode 100644
index 000000000000..a33491e0d8b2
--- /dev/null
+++ b/editors/openoffice.org-3/files/patch-sfx2+source+appl+officeacceptthread.cxx
@@ -0,0 +1,18 @@
+--- ../sfx2/source/appl/officeacceptthread.cxx.orig Sat Jul 20 22:56:19 2002
++++ ../sfx2/source/appl/officeacceptthread.cxx Sat Jul 20 22:56:54 2002
+@@ -123,13 +123,13 @@
+ sal_Bool static isProcessRunning( ::vos::OProcess::TProcessInfo& aProcessInfo )
+ {
+ int nRet;
+-#if defined (SOLARIS) || defined (IRIX)
++#if defined (SOLARIS) || defined (IRIX) || defined (FREEBSD) || defined (NETBSD)
+ int status;
+ nRet = waitpid(aProcessInfo.Ident, &status,WNOHANG);
+ #elif defined(LINUX)
+ nRet = kill(aProcessInfo.Ident, 0);
+ #endif
+-#if defined (LINUX) || defined (SOLARIS) || defined (IRIX)
++#if defined (LINUX) || defined (SOLARIS) || defined (IRIX) || defined (FREEBSD) || defined (NETBSD)
+ if ( nRet == 0 )
+ return sal_True; // process is running
+ if ( nRet < 0 )
diff --git a/editors/openoffice.org-vcltesttool/files/patch-sfx2+source+appl+officeacceptthread.cxx b/editors/openoffice.org-vcltesttool/files/patch-sfx2+source+appl+officeacceptthread.cxx
new file mode 100644
index 000000000000..a33491e0d8b2
--- /dev/null
+++ b/editors/openoffice.org-vcltesttool/files/patch-sfx2+source+appl+officeacceptthread.cxx
@@ -0,0 +1,18 @@
+--- ../sfx2/source/appl/officeacceptthread.cxx.orig Sat Jul 20 22:56:19 2002
++++ ../sfx2/source/appl/officeacceptthread.cxx Sat Jul 20 22:56:54 2002
+@@ -123,13 +123,13 @@
+ sal_Bool static isProcessRunning( ::vos::OProcess::TProcessInfo& aProcessInfo )
+ {
+ int nRet;
+-#if defined (SOLARIS) || defined (IRIX)
++#if defined (SOLARIS) || defined (IRIX) || defined (FREEBSD) || defined (NETBSD)
+ int status;
+ nRet = waitpid(aProcessInfo.Ident, &status,WNOHANG);
+ #elif defined(LINUX)
+ nRet = kill(aProcessInfo.Ident, 0);
+ #endif
+-#if defined (LINUX) || defined (SOLARIS) || defined (IRIX)
++#if defined (LINUX) || defined (SOLARIS) || defined (IRIX) || defined (FREEBSD) || defined (NETBSD)
+ if ( nRet == 0 )
+ return sal_True; // process is running
+ if ( nRet < 0 )
diff --git a/editors/openoffice/files/patch-sfx2+source+appl+officeacceptthread.cxx b/editors/openoffice/files/patch-sfx2+source+appl+officeacceptthread.cxx
new file mode 100644
index 000000000000..a33491e0d8b2
--- /dev/null
+++ b/editors/openoffice/files/patch-sfx2+source+appl+officeacceptthread.cxx
@@ -0,0 +1,18 @@
+--- ../sfx2/source/appl/officeacceptthread.cxx.orig Sat Jul 20 22:56:19 2002
++++ ../sfx2/source/appl/officeacceptthread.cxx Sat Jul 20 22:56:54 2002
+@@ -123,13 +123,13 @@
+ sal_Bool static isProcessRunning( ::vos::OProcess::TProcessInfo& aProcessInfo )
+ {
+ int nRet;
+-#if defined (SOLARIS) || defined (IRIX)
++#if defined (SOLARIS) || defined (IRIX) || defined (FREEBSD) || defined (NETBSD)
+ int status;
+ nRet = waitpid(aProcessInfo.Ident, &status,WNOHANG);
+ #elif defined(LINUX)
+ nRet = kill(aProcessInfo.Ident, 0);
+ #endif
+-#if defined (LINUX) || defined (SOLARIS) || defined (IRIX)
++#if defined (LINUX) || defined (SOLARIS) || defined (IRIX) || defined (FREEBSD) || defined (NETBSD)
+ if ( nRet == 0 )
+ return sal_True; // process is running
+ if ( nRet < 0 )
diff --git a/editors/openoffice/files/patch-sfx2::source::appl::officeacceptthread.cxx b/editors/openoffice/files/patch-sfx2::source::appl::officeacceptthread.cxx
new file mode 100644
index 000000000000..a33491e0d8b2
--- /dev/null
+++ b/editors/openoffice/files/patch-sfx2::source::appl::officeacceptthread.cxx
@@ -0,0 +1,18 @@
+--- ../sfx2/source/appl/officeacceptthread.cxx.orig Sat Jul 20 22:56:19 2002
++++ ../sfx2/source/appl/officeacceptthread.cxx Sat Jul 20 22:56:54 2002
+@@ -123,13 +123,13 @@
+ sal_Bool static isProcessRunning( ::vos::OProcess::TProcessInfo& aProcessInfo )
+ {
+ int nRet;
+-#if defined (SOLARIS) || defined (IRIX)
++#if defined (SOLARIS) || defined (IRIX) || defined (FREEBSD) || defined (NETBSD)
+ int status;
+ nRet = waitpid(aProcessInfo.Ident, &status,WNOHANG);
+ #elif defined(LINUX)
+ nRet = kill(aProcessInfo.Ident, 0);
+ #endif
+-#if defined (LINUX) || defined (SOLARIS) || defined (IRIX)
++#if defined (LINUX) || defined (SOLARIS) || defined (IRIX) || defined (FREEBSD) || defined (NETBSD)
+ if ( nRet == 0 )
+ return sal_True; // process is running
+ if ( nRet < 0 )