From owner-freebsd-gecko@FreeBSD.ORG Fri Sep 21 16:09:00 2012 Return-Path: Delivered-To: freebsd-gecko@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 91DF81065672 for ; Fri, 21 Sep 2012 16:09:00 +0000 (UTC) (envelope-from svn-freebsd-gecko@chruetertee.ch) Received: from trillian.chruetertee.ch (trillian.chruetertee.ch [217.150.245.56]) by mx1.freebsd.org (Postfix) with ESMTP id 3414D8FC08 for ; Fri, 21 Sep 2012 16:08:59 +0000 (UTC) Received: from trillian.chruetertee.ch (trillian [217.150.245.56]) by trillian.chruetertee.ch (8.14.4/8.14.3) with ESMTP id q8LG8x3O079683 for ; Fri, 21 Sep 2012 16:08:59 GMT (envelope-from svn-freebsd-gecko@chruetertee.ch) Received: (from www@localhost) by trillian.chruetertee.ch (8.14.4/8.14.3/Submit) id q8LG8sUH078469 for freebsd-gecko@freebsd.org; Fri, 21 Sep 2012 16:08:54 GMT (envelope-from svn-freebsd-gecko@chruetertee.ch) Date: Fri, 21 Sep 2012 16:08:54 GMT Message-Id: <201209211608.q8LG8sUH078469@trillian.chruetertee.ch> X-Authentication-Warning: trillian.chruetertee.ch: www set sender to svn-freebsd-gecko@chruetertee.ch using -f From: svn-freebsd-gecko@chruetertee.ch To: freebsd-gecko@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Subject: [SVN-Commit] r1021 - in trunk: mail/thunderbird-esr/files mail/thunderbird/files www/firefox-esr/files www/firefox/files www/libxul-esr/files www/libxul/files www/seamonkey/files X-BeenThere: freebsd-gecko@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: freebsd-gecko@freebsd.org List-Id: Gecko Rendering Engine issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Sep 2012 16:09:00 -0000 Author: jbeich Date: Fri Sep 21 16:08:53 2012 New Revision: 1021 Log: explicitly include sys/types.h for lwpid_t Modified: trunk/mail/thunderbird-esr/files/patch-bug753046 trunk/mail/thunderbird/files/patch-bug753046 trunk/www/firefox-esr/files/patch-bug753046 trunk/www/firefox/files/patch-bug753046 trunk/www/libxul-esr/files/patch-bug753046 trunk/www/libxul/files/patch-bug753046 trunk/www/seamonkey/files/patch-bug753046 Modified: trunk/mail/thunderbird-esr/files/patch-bug753046 ============================================================================== --- trunk/mail/thunderbird-esr/files/patch-bug753046 Fri Sep 21 16:04:14 2012 (r1020) +++ trunk/mail/thunderbird-esr/files/patch-bug753046 Fri Sep 21 16:08:53 2012 (r1021) @@ -451,7 +451,7 @@ --- mozilla/ipc/chromium/src/base/platform_thread.h.orig 2011-12-20 23:28:19.000000000 +0000 +++ mozilla/ipc/chromium/src/base/platform_thread.h -@@ -22,9 +22,11 @@ typedef void* PlatformThreadHandle; // HANDLE +@@ -22,9 +22,12 @@ typedef void* PlatformThreadHandle; // HANDLE #elif defined(OS_POSIX) #include typedef pthread_t PlatformThreadHandle; @@ -460,6 +460,7 @@ #include typedef pid_t PlatformThreadId; +#elif defined(OS_BSD) ++#include +typedef lwpid_t PlatformThreadId; #elif defined(OS_MACOSX) #include Modified: trunk/mail/thunderbird/files/patch-bug753046 ============================================================================== --- trunk/mail/thunderbird/files/patch-bug753046 Fri Sep 21 16:04:14 2012 (r1020) +++ trunk/mail/thunderbird/files/patch-bug753046 Fri Sep 21 16:08:53 2012 (r1021) @@ -456,7 +456,7 @@ --- mozilla/ipc/chromium/src/base/platform_thread.h.orig 2011-12-20 23:28:19.000000000 +0000 +++ mozilla/ipc/chromium/src/base/platform_thread.h -@@ -22,9 +22,11 @@ typedef void* PlatformThreadHandle; // HANDLE +@@ -22,9 +22,12 @@ typedef void* PlatformThreadHandle; // HANDLE #elif defined(OS_POSIX) #include typedef pthread_t PlatformThreadHandle; @@ -465,6 +465,7 @@ #include typedef pid_t PlatformThreadId; +#elif defined(OS_BSD) ++#include +typedef lwpid_t PlatformThreadId; #elif defined(OS_MACOSX) #include Modified: trunk/www/firefox-esr/files/patch-bug753046 ============================================================================== --- trunk/www/firefox-esr/files/patch-bug753046 Fri Sep 21 16:04:14 2012 (r1020) +++ trunk/www/firefox-esr/files/patch-bug753046 Fri Sep 21 16:08:53 2012 (r1021) @@ -451,7 +451,7 @@ --- ipc/chromium/src/base/platform_thread.h.orig 2011-12-20 23:28:19.000000000 +0000 +++ ipc/chromium/src/base/platform_thread.h -@@ -22,9 +22,11 @@ typedef void* PlatformThreadHandle; // HANDLE +@@ -22,9 +22,12 @@ typedef void* PlatformThreadHandle; // HANDLE #elif defined(OS_POSIX) #include typedef pthread_t PlatformThreadHandle; @@ -460,6 +460,7 @@ #include typedef pid_t PlatformThreadId; +#elif defined(OS_BSD) ++#include +typedef lwpid_t PlatformThreadId; #elif defined(OS_MACOSX) #include Modified: trunk/www/firefox/files/patch-bug753046 ============================================================================== --- trunk/www/firefox/files/patch-bug753046 Fri Sep 21 16:04:14 2012 (r1020) +++ trunk/www/firefox/files/patch-bug753046 Fri Sep 21 16:08:53 2012 (r1021) @@ -456,7 +456,7 @@ --- ipc/chromium/src/base/platform_thread.h.orig 2011-12-20 23:28:19.000000000 +0000 +++ ipc/chromium/src/base/platform_thread.h -@@ -22,9 +22,11 @@ typedef void* PlatformThreadHandle; // HANDLE +@@ -22,9 +22,12 @@ typedef void* PlatformThreadHandle; // HANDLE #elif defined(OS_POSIX) #include typedef pthread_t PlatformThreadHandle; @@ -465,6 +465,7 @@ #include typedef pid_t PlatformThreadId; +#elif defined(OS_BSD) ++#include +typedef lwpid_t PlatformThreadId; #elif defined(OS_MACOSX) #include Modified: trunk/www/libxul-esr/files/patch-bug753046 ============================================================================== --- trunk/www/libxul-esr/files/patch-bug753046 Fri Sep 21 16:04:14 2012 (r1020) +++ trunk/www/libxul-esr/files/patch-bug753046 Fri Sep 21 16:08:53 2012 (r1021) @@ -451,7 +451,7 @@ --- ipc/chromium/src/base/platform_thread.h.orig 2011-12-20 23:28:19.000000000 +0000 +++ ipc/chromium/src/base/platform_thread.h -@@ -22,9 +22,11 @@ typedef void* PlatformThreadHandle; // HANDLE +@@ -22,9 +22,12 @@ typedef void* PlatformThreadHandle; // HANDLE #elif defined(OS_POSIX) #include typedef pthread_t PlatformThreadHandle; @@ -460,6 +460,7 @@ #include typedef pid_t PlatformThreadId; +#elif defined(OS_BSD) ++#include +typedef lwpid_t PlatformThreadId; #elif defined(OS_MACOSX) #include Modified: trunk/www/libxul/files/patch-bug753046 ============================================================================== --- trunk/www/libxul/files/patch-bug753046 Fri Sep 21 16:04:14 2012 (r1020) +++ trunk/www/libxul/files/patch-bug753046 Fri Sep 21 16:08:53 2012 (r1021) @@ -456,7 +456,7 @@ --- ipc/chromium/src/base/platform_thread.h.orig 2011-12-20 23:28:19.000000000 +0000 +++ ipc/chromium/src/base/platform_thread.h -@@ -22,9 +22,11 @@ typedef void* PlatformThreadHandle; // HANDLE +@@ -22,9 +22,12 @@ typedef void* PlatformThreadHandle; // HANDLE #elif defined(OS_POSIX) #include typedef pthread_t PlatformThreadHandle; @@ -465,6 +465,7 @@ #include typedef pid_t PlatformThreadId; +#elif defined(OS_BSD) ++#include +typedef lwpid_t PlatformThreadId; #elif defined(OS_MACOSX) #include Modified: trunk/www/seamonkey/files/patch-bug753046 ============================================================================== --- trunk/www/seamonkey/files/patch-bug753046 Fri Sep 21 16:04:14 2012 (r1020) +++ trunk/www/seamonkey/files/patch-bug753046 Fri Sep 21 16:08:53 2012 (r1021) @@ -456,7 +456,7 @@ --- mozilla/ipc/chromium/src/base/platform_thread.h.orig 2011-12-20 23:28:19.000000000 +0000 +++ mozilla/ipc/chromium/src/base/platform_thread.h -@@ -22,9 +22,11 @@ typedef void* PlatformThreadHandle; // HANDLE +@@ -22,9 +22,12 @@ typedef void* PlatformThreadHandle; // HANDLE #elif defined(OS_POSIX) #include typedef pthread_t PlatformThreadHandle; @@ -465,6 +465,7 @@ #include typedef pid_t PlatformThreadId; +#elif defined(OS_BSD) ++#include +typedef lwpid_t PlatformThreadId; #elif defined(OS_MACOSX) #include