From owner-freebsd-gecko@FreeBSD.ORG Tue Aug 28 19:47:11 2012 Return-Path: Delivered-To: freebsd-gecko@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4483C106564A for ; Tue, 28 Aug 2012 19:47:11 +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 D112C8FC0A for ; Tue, 28 Aug 2012 19:47:10 +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 q7SJl9Nf061420 for ; Tue, 28 Aug 2012 19:47:09 GMT (envelope-from svn-freebsd-gecko@chruetertee.ch) Received: (from www@localhost) by trillian.chruetertee.ch (8.14.4/8.14.3/Submit) id q7SJl4HK059807 for freebsd-gecko@freebsd.org; Tue, 28 Aug 2012 19:47:04 GMT (envelope-from svn-freebsd-gecko@chruetertee.ch) Date: Tue, 28 Aug 2012 19:47:04 GMT Message-Id: <201208281947.q7SJl4HK059807@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] r960 - in branches/experimental: mail/thunderbird-esr/files mail/thunderbird/files www/firefox-esr/files www/firefox-nightly/files www/firefox/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: Tue, 28 Aug 2012 19:47:11 -0000 Author: jbeich Date: Tue Aug 28 19:47:04 2012 New Revision: 960 Log: get rid of extra sys/param.h Modified: branches/experimental/mail/thunderbird-esr/files/patch-bug753046 branches/experimental/mail/thunderbird/files/patch-bug753046 branches/experimental/www/firefox-esr/files/patch-bug753046 branches/experimental/www/firefox-nightly/files/patch-bug753046 branches/experimental/www/firefox/files/patch-bug753046 branches/experimental/www/libxul/files/patch-bug753046 branches/experimental/www/seamonkey/files/patch-bug753046 Modified: branches/experimental/mail/thunderbird-esr/files/patch-bug753046 ============================================================================== --- branches/experimental/mail/thunderbird-esr/files/patch-bug753046 Tue Aug 28 19:25:45 2012 (r959) +++ branches/experimental/mail/thunderbird-esr/files/patch-bug753046 Tue Aug 28 19:47:04 2012 (r960) @@ -553,7 +553,7 @@ --- mozilla/ipc/chromium/src/base/process_util_bsd.cc.orig 2012-04-01 00:04:28.000000000 +0000 +++ mozilla/ipc/chromium/src/base/process_util_bsd.cc -@@ -0,0 +1,322 @@ +@@ -0,0 +1,318 @@ +// Copyright (c) 2008 The Chromium Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. @@ -583,13 +583,9 @@ +#include "base/string_tokenizer.h" +#include "base/string_util.h" + -+#if defined(_POSIX_SPAWN) && _POSIX_SPAWN > 0 ++#if (defined(_POSIX_SPAWN) && _POSIX_SPAWN > 0) \ ++ || (defined(OS_NETBSD) && __NetBSD_Version__ >= 599006500) +#define HAVE_POSIX_SPAWN 1 -+#elif defined(OS_NETBSD) -+#include -+#if __NetBSD_Version__ >= 599006500 -+#define HAVE_POSIX_SPAWN 1 -+#endif +#endif + +#ifndef __dso_public Modified: branches/experimental/mail/thunderbird/files/patch-bug753046 ============================================================================== --- branches/experimental/mail/thunderbird/files/patch-bug753046 Tue Aug 28 19:25:45 2012 (r959) +++ branches/experimental/mail/thunderbird/files/patch-bug753046 Tue Aug 28 19:47:04 2012 (r960) @@ -581,7 +581,7 @@ --- mozilla/ipc/chromium/src/base/process_util_bsd.cc.orig 2012-04-01 00:04:28.000000000 +0000 +++ mozilla/ipc/chromium/src/base/process_util_bsd.cc -@@ -0,0 +1,322 @@ +@@ -0,0 +1,318 @@ +// Copyright (c) 2008 The Chromium Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. @@ -611,13 +611,9 @@ +#include "base/string_tokenizer.h" +#include "base/string_util.h" + -+#if defined(_POSIX_SPAWN) && _POSIX_SPAWN > 0 ++#if (defined(_POSIX_SPAWN) && _POSIX_SPAWN > 0) \ ++ || (defined(OS_NETBSD) && __NetBSD_Version__ >= 599006500) +#define HAVE_POSIX_SPAWN 1 -+#elif defined(OS_NETBSD) -+#include -+#if __NetBSD_Version__ >= 599006500 -+#define HAVE_POSIX_SPAWN 1 -+#endif +#endif + +#ifndef __dso_public Modified: branches/experimental/www/firefox-esr/files/patch-bug753046 ============================================================================== --- branches/experimental/www/firefox-esr/files/patch-bug753046 Tue Aug 28 19:25:45 2012 (r959) +++ branches/experimental/www/firefox-esr/files/patch-bug753046 Tue Aug 28 19:47:04 2012 (r960) @@ -553,7 +553,7 @@ --- ipc/chromium/src/base/process_util_bsd.cc.orig 2012-04-01 00:04:28.000000000 +0000 +++ ipc/chromium/src/base/process_util_bsd.cc -@@ -0,0 +1,322 @@ +@@ -0,0 +1,318 @@ +// Copyright (c) 2008 The Chromium Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. @@ -583,13 +583,9 @@ +#include "base/string_tokenizer.h" +#include "base/string_util.h" + -+#if defined(_POSIX_SPAWN) && _POSIX_SPAWN > 0 ++#if (defined(_POSIX_SPAWN) && _POSIX_SPAWN > 0) \ ++ || (defined(OS_NETBSD) && __NetBSD_Version__ >= 599006500) +#define HAVE_POSIX_SPAWN 1 -+#elif defined(OS_NETBSD) -+#include -+#if __NetBSD_Version__ >= 599006500 -+#define HAVE_POSIX_SPAWN 1 -+#endif +#endif + +#ifndef __dso_public Modified: branches/experimental/www/firefox-nightly/files/patch-bug753046 ============================================================================== --- branches/experimental/www/firefox-nightly/files/patch-bug753046 Tue Aug 28 19:25:45 2012 (r959) +++ branches/experimental/www/firefox-nightly/files/patch-bug753046 Tue Aug 28 19:47:04 2012 (r960) @@ -566,7 +566,7 @@ --- ipc/chromium/src/base/process_util_bsd.cc.orig 2012-04-01 00:04:28.000000000 +0000 +++ ipc/chromium/src/base/process_util_bsd.cc -@@ -0,0 +1,371 @@ +@@ -0,0 +1,367 @@ +// Copyright (c) 2008 The Chromium Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. @@ -596,13 +596,9 @@ +#include "base/string_tokenizer.h" +#include "base/string_util.h" + -+#if defined(_POSIX_SPAWN) && _POSIX_SPAWN > 0 ++#if (defined(_POSIX_SPAWN) && _POSIX_SPAWN > 0) \ ++ || (defined(OS_NETBSD) && __NetBSD_Version__ >= 599006500) +#define HAVE_POSIX_SPAWN 1 -+#elif defined(OS_NETBSD) -+#include -+#if __NetBSD_Version__ >= 599006500 -+#define HAVE_POSIX_SPAWN 1 -+#endif +#endif + +/* Modified: branches/experimental/www/firefox/files/patch-bug753046 ============================================================================== --- branches/experimental/www/firefox/files/patch-bug753046 Tue Aug 28 19:25:45 2012 (r959) +++ branches/experimental/www/firefox/files/patch-bug753046 Tue Aug 28 19:47:04 2012 (r960) @@ -581,7 +581,7 @@ --- ipc/chromium/src/base/process_util_bsd.cc.orig 2012-04-01 00:04:28.000000000 +0000 +++ ipc/chromium/src/base/process_util_bsd.cc -@@ -0,0 +1,322 @@ +@@ -0,0 +1,318 @@ +// Copyright (c) 2008 The Chromium Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. @@ -611,13 +611,9 @@ +#include "base/string_tokenizer.h" +#include "base/string_util.h" + -+#if defined(_POSIX_SPAWN) && _POSIX_SPAWN > 0 ++#if (defined(_POSIX_SPAWN) && _POSIX_SPAWN > 0) \ ++ || (defined(OS_NETBSD) && __NetBSD_Version__ >= 599006500) +#define HAVE_POSIX_SPAWN 1 -+#elif defined(OS_NETBSD) -+#include -+#if __NetBSD_Version__ >= 599006500 -+#define HAVE_POSIX_SPAWN 1 -+#endif +#endif + +#ifndef __dso_public Modified: branches/experimental/www/libxul/files/patch-bug753046 ============================================================================== --- branches/experimental/www/libxul/files/patch-bug753046 Tue Aug 28 19:25:45 2012 (r959) +++ branches/experimental/www/libxul/files/patch-bug753046 Tue Aug 28 19:47:04 2012 (r960) @@ -553,7 +553,7 @@ --- ipc/chromium/src/base/process_util_bsd.cc.orig 2012-04-01 00:04:28.000000000 +0000 +++ ipc/chromium/src/base/process_util_bsd.cc -@@ -0,0 +1,322 @@ +@@ -0,0 +1,318 @@ +// Copyright (c) 2008 The Chromium Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. @@ -583,13 +583,9 @@ +#include "base/string_tokenizer.h" +#include "base/string_util.h" + -+#if defined(_POSIX_SPAWN) && _POSIX_SPAWN > 0 ++#if (defined(_POSIX_SPAWN) && _POSIX_SPAWN > 0) \ ++ || (defined(OS_NETBSD) && __NetBSD_Version__ >= 599006500) +#define HAVE_POSIX_SPAWN 1 -+#elif defined(OS_NETBSD) -+#include -+#if __NetBSD_Version__ >= 599006500 -+#define HAVE_POSIX_SPAWN 1 -+#endif +#endif + +#ifndef __dso_public Modified: branches/experimental/www/seamonkey/files/patch-bug753046 ============================================================================== --- branches/experimental/www/seamonkey/files/patch-bug753046 Tue Aug 28 19:25:45 2012 (r959) +++ branches/experimental/www/seamonkey/files/patch-bug753046 Tue Aug 28 19:47:04 2012 (r960) @@ -581,7 +581,7 @@ --- mozilla/ipc/chromium/src/base/process_util_bsd.cc.orig 2012-04-01 00:04:28.000000000 +0000 +++ mozilla/ipc/chromium/src/base/process_util_bsd.cc -@@ -0,0 +1,322 @@ +@@ -0,0 +1,318 @@ +// Copyright (c) 2008 The Chromium Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. @@ -611,13 +611,9 @@ +#include "base/string_tokenizer.h" +#include "base/string_util.h" + -+#if defined(_POSIX_SPAWN) && _POSIX_SPAWN > 0 ++#if (defined(_POSIX_SPAWN) && _POSIX_SPAWN > 0) \ ++ || (defined(OS_NETBSD) && __NetBSD_Version__ >= 599006500) +#define HAVE_POSIX_SPAWN 1 -+#elif defined(OS_NETBSD) -+#include -+#if __NetBSD_Version__ >= 599006500 -+#define HAVE_POSIX_SPAWN 1 -+#endif +#endif + +#ifndef __dso_public