From owner-freebsd-gecko@FreeBSD.ORG Fri Apr 11 13:28:14 2014 Return-Path: Delivered-To: freebsd-gecko@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A7F672CD for ; Fri, 11 Apr 2014 13:28:14 +0000 (UTC) Received: from trillian.chruetertee.ch (trillian.chruetertee.ch [217.150.244.247]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 32B8E196D for ; Fri, 11 Apr 2014 13:28:13 +0000 (UTC) Received: from trillian.chruetertee.ch (trillian [217.150.244.247]) by trillian.chruetertee.ch (8.14.4/8.14.3) with ESMTP id s3BDSAJh084561 for ; Fri, 11 Apr 2014 13:28:10 GMT (envelope-from svn-freebsd-gecko@chruetertee.ch) Received: (from www@localhost) by trillian.chruetertee.ch (8.14.4/8.14.3/Submit) id s3BDS5iY083021 for freebsd-gecko@freebsd.org; Fri, 11 Apr 2014 13:28:05 GMT (envelope-from svn-freebsd-gecko@chruetertee.ch) Date: Fri, 11 Apr 2014 13:28:05 GMT Message-Id: <201404111328.s3BDS5iY083021@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 Subject: [SVN-Commit] r1572 - in trunk: mail/thunderbird/files www/firefox-esr/files www/firefox-nightly/files www/firefox/files www/libxul/files www/seamonkey/files MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: freebsd-gecko@freebsd.org X-Mailman-Version: 2.1.17 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, 11 Apr 2014 13:28:14 -0000 Author: jbeich Date: Fri Apr 11 13:28:05 2014 New Revision: 1572 Log: fix system queue.h usage on DragonFly Inspired by: DPorts Modified: trunk/mail/thunderbird/files/patch-bug916589 trunk/www/firefox-esr/files/patch-bug916589 trunk/www/firefox-nightly/files/patch-bug916589 trunk/www/firefox/files/patch-bug916589 trunk/www/libxul/files/patch-bug916589 trunk/www/seamonkey/files/patch-bug916589 Modified: trunk/mail/thunderbird/files/patch-bug916589 ============================================================================== --- trunk/mail/thunderbird/files/patch-bug916589 Fri Apr 11 01:14:11 2014 (r1571) +++ trunk/mail/thunderbird/files/patch-bug916589 Fri Apr 11 13:28:05 2014 (r1572) @@ -2,12 +2,16 @@ index 5b50785..7cf47d5 100644 --- mozilla/media/mtransport/third_party/nrappkit/src/port/generic/include/sys/queue.h +++ mozilla/media/mtransport/third_party/nrappkit/src/port/generic/include/sys/queue.h -@@ -31,11 +31,14 @@ +@@ -31,11 +31,18 @@ */ -#ifndef _SYS_QUEUE_H_ +#if (defined(BSD) && !defined(__OpenBSD__)) || defined(DARWIN) +#include_next ++# if defined(__DragonFly__) ++#define STAILQ_FOREACH_SAFE STAILQ_FOREACH_MUTABLE ++#define TAILQ_FOREACH_SAFE TAILQ_FOREACH_MUTABLE ++# endif +#elif !defined(_SYS_QUEUE_H_) #define _SYS_QUEUE_H_ Modified: trunk/www/firefox-esr/files/patch-bug916589 ============================================================================== --- trunk/www/firefox-esr/files/patch-bug916589 Fri Apr 11 01:14:11 2014 (r1571) +++ trunk/www/firefox-esr/files/patch-bug916589 Fri Apr 11 13:28:05 2014 (r1572) @@ -2,12 +2,16 @@ index 5b50785..7cf47d5 100644 --- media/mtransport/third_party/nrappkit/src/port/generic/include/sys/queue.h +++ media/mtransport/third_party/nrappkit/src/port/generic/include/sys/queue.h -@@ -31,11 +31,14 @@ +@@ -31,11 +31,18 @@ */ -#ifndef _SYS_QUEUE_H_ +#if (defined(BSD) && !defined(__OpenBSD__)) || defined(DARWIN) +#include_next ++# if defined(__DragonFly__) ++#define STAILQ_FOREACH_SAFE STAILQ_FOREACH_MUTABLE ++#define TAILQ_FOREACH_SAFE TAILQ_FOREACH_MUTABLE ++# endif +#elif !defined(_SYS_QUEUE_H_) #define _SYS_QUEUE_H_ Modified: trunk/www/firefox-nightly/files/patch-bug916589 ============================================================================== --- trunk/www/firefox-nightly/files/patch-bug916589 Fri Apr 11 01:14:11 2014 (r1571) +++ trunk/www/firefox-nightly/files/patch-bug916589 Fri Apr 11 13:28:05 2014 (r1572) @@ -2,12 +2,16 @@ index 5b50785..7cf47d5 100644 --- media/mtransport/third_party/nrappkit/src/port/generic/include/sys/queue.h +++ media/mtransport/third_party/nrappkit/src/port/generic/include/sys/queue.h -@@ -31,11 +31,14 @@ +@@ -31,11 +31,18 @@ */ -#ifndef _SYS_QUEUE_H_ +#if (defined(BSD) && !defined(__OpenBSD__)) || defined(DARWIN) +#include_next ++# if defined(__DragonFly__) ++#define STAILQ_FOREACH_SAFE STAILQ_FOREACH_MUTABLE ++#define TAILQ_FOREACH_SAFE TAILQ_FOREACH_MUTABLE ++# endif +#elif !defined(_SYS_QUEUE_H_) #define _SYS_QUEUE_H_ Modified: trunk/www/firefox/files/patch-bug916589 ============================================================================== --- trunk/www/firefox/files/patch-bug916589 Fri Apr 11 01:14:11 2014 (r1571) +++ trunk/www/firefox/files/patch-bug916589 Fri Apr 11 13:28:05 2014 (r1572) @@ -2,12 +2,16 @@ index 5b50785..7cf47d5 100644 --- media/mtransport/third_party/nrappkit/src/port/generic/include/sys/queue.h +++ media/mtransport/third_party/nrappkit/src/port/generic/include/sys/queue.h -@@ -31,11 +31,14 @@ +@@ -31,11 +31,18 @@ */ -#ifndef _SYS_QUEUE_H_ +#if (defined(BSD) && !defined(__OpenBSD__)) || defined(DARWIN) +#include_next ++# if defined(__DragonFly__) ++#define STAILQ_FOREACH_SAFE STAILQ_FOREACH_MUTABLE ++#define TAILQ_FOREACH_SAFE TAILQ_FOREACH_MUTABLE ++# endif +#elif !defined(_SYS_QUEUE_H_) #define _SYS_QUEUE_H_ Modified: trunk/www/libxul/files/patch-bug916589 ============================================================================== --- trunk/www/libxul/files/patch-bug916589 Fri Apr 11 01:14:11 2014 (r1571) +++ trunk/www/libxul/files/patch-bug916589 Fri Apr 11 13:28:05 2014 (r1572) @@ -2,12 +2,16 @@ index 5b50785..7cf47d5 100644 --- media/mtransport/third_party/nrappkit/src/port/generic/include/sys/queue.h +++ media/mtransport/third_party/nrappkit/src/port/generic/include/sys/queue.h -@@ -31,11 +31,14 @@ +@@ -31,11 +31,18 @@ */ -#ifndef _SYS_QUEUE_H_ +#if (defined(BSD) && !defined(__OpenBSD__)) || defined(DARWIN) +#include_next ++# if defined(__DragonFly__) ++#define STAILQ_FOREACH_SAFE STAILQ_FOREACH_MUTABLE ++#define TAILQ_FOREACH_SAFE TAILQ_FOREACH_MUTABLE ++# endif +#elif !defined(_SYS_QUEUE_H_) #define _SYS_QUEUE_H_ Modified: trunk/www/seamonkey/files/patch-bug916589 ============================================================================== --- trunk/www/seamonkey/files/patch-bug916589 Fri Apr 11 01:14:11 2014 (r1571) +++ trunk/www/seamonkey/files/patch-bug916589 Fri Apr 11 13:28:05 2014 (r1572) @@ -2,12 +2,16 @@ index 5b50785..7cf47d5 100644 --- mozilla/media/mtransport/third_party/nrappkit/src/port/generic/include/sys/queue.h +++ mozilla/media/mtransport/third_party/nrappkit/src/port/generic/include/sys/queue.h -@@ -31,11 +31,14 @@ +@@ -31,11 +31,18 @@ */ -#ifndef _SYS_QUEUE_H_ +#if (defined(BSD) && !defined(__OpenBSD__)) || defined(DARWIN) +#include_next ++# if defined(__DragonFly__) ++#define STAILQ_FOREACH_SAFE STAILQ_FOREACH_MUTABLE ++#define TAILQ_FOREACH_SAFE TAILQ_FOREACH_MUTABLE ++# endif +#elif !defined(_SYS_QUEUE_H_) #define _SYS_QUEUE_H_