From patchwork Tue Jan 14 12:33:31 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: christian.braunersorensen@prevas.dk X-Patchwork-Id: 310632 X-Patchwork-Delegate: esben@haabendal.dk Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from hugin.dotsrc.org (hugin.dotsrc.org [IPv6:2001:878:346::102]) by ozlabs.org (Postfix) with ESMTP id 1168A2C00AB for ; Tue, 14 Jan 2014 23:35:55 +1100 (EST) Received: from hugin.dotsrc.org (localhost [127.0.0.1]) by hugin.dotsrc.org (Postfix) with ESMTP id DD9DF3FDE7 for ; Tue, 14 Jan 2014 13:35:53 +0100 (CET) X-Original-To: dev@oe-lite.org Delivered-To: dev@oe-lite.org Received: from mail01.prevas.se (mail01.prevas.se [62.95.78.3]) by hugin.dotsrc.org (Postfix) with ESMTPS id 8B0253FDBE for ; Tue, 14 Jan 2014 13:35:04 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=prevas.dk; i=@prevas.dk; l=2459; q=dns/txt; s=ironport1; t=1389702904; x=1421238904; h=from:to:subject:date:message-id:in-reply-to:references: mime-version:content-transfer-encoding; bh=oLTdaEZJ5j1jqBCZuZu9E05n6mguGQhJOvEh/03No3g=; b=d+LqmQQiK+5Sn5hTA/7Xek1b8xytTsbus/9tnu+3rs8kL2EOLMpv2jLC qDhRDVG46doJ4K1UD3OlVZhgm73eUPzlDPlHtJ4Zk1ZkJ/3zewgPAbIBV rpCbF0NfeFSRCtOwrHYVP0zg9wuyMp02RZD+IcibGw58+eaUIp2lAi8hE M=; X-IronPort-AV: E=Sophos;i="4.95,658,1384297200"; d="scan'208";a="4300225" Received: from vmprevas3.prevas.se (HELO smtp.prevas.se) ([172.16.8.103]) by ironport1.prevas.se with ESMTP/TLS/AES128-SHA; 14 Jan 2014 13:35:02 +0100 Received: from localhost (172.16.10.102) by smtp.prevas.se (172.16.8.105) with Microsoft SMTP Server id 14.2.347.0; Tue, 14 Jan 2014 13:35:01 +0100 Received: by localhost (Postfix, from userid 30007) id D21EF681580; Tue, 14 Jan 2014 12:35:01 +0000 (UTC) From: To: Subject: [PATCH 044/131] libxml2: Remove version 2.9.0 Date: Tue, 14 Jan 2014 12:33:31 +0000 Message-ID: <268595339e83d2ce6100303917129142890294c5.1389702652.git.christian.braunersorensen@prevas.dk> X-Mailer: git-send-email 1.8.4 In-Reply-To: References: MIME-Version: 1.0 X-BeenThere: dev@oe-lite.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: OE-lite development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: dev-bounces@oe-lite.org Errors-To: dev-bounces@oe-lite.org From: Christian Sørensen Signed-off-by: Christian Sørensen --- .../libxml/libxml2-2.9.0/pthread_once_init_fix.patch | 20 -------------------- recipes/libxml/libxml2_2.9.0.oe | 5 ----- recipes/libxml/libxml2_2.9.0.oe.sig | 1 - 3 files changed, 26 deletions(-) delete mode 100644 recipes/libxml/libxml2-2.9.0/pthread_once_init_fix.patch delete mode 100644 recipes/libxml/libxml2_2.9.0.oe delete mode 100644 recipes/libxml/libxml2_2.9.0.oe.sig diff --git a/recipes/libxml/libxml2-2.9.0/pthread_once_init_fix.patch b/recipes/libxml/libxml2-2.9.0/pthread_once_init_fix.patch deleted file mode 100644 index 847aa39..0000000 --- a/recipes/libxml/libxml2-2.9.0/pthread_once_init_fix.patch +++ /dev/null @@ -1,20 +0,0 @@ -diff -urN libxml2-2.9.0/threads.c libxml2-2.9.0.mod/threads.c ---- libxml2-2.9.0/threads.c 2012-09-11 05:52:46.000000000 +0200 -+++ libxml2-2.9.0.mod/threads.c 2012-10-17 18:00:08.000000000 +0200 -@@ -146,6 +146,7 @@ - static pthread_key_t globalkey; - static pthread_t mainthread; - static pthread_once_t once_control = PTHREAD_ONCE_INIT; -+static pthread_once_t once_control_init = PTHREAD_ONCE_INIT; - static pthread_mutex_t global_init_lock = PTHREAD_MUTEX_INITIALIZER; - #elif defined HAVE_WIN32_THREADS - #if defined(HAVE_COMPILER_TLS) -@@ -915,7 +916,7 @@ - #ifdef HAVE_PTHREAD_H - if ((libxml_is_threaded) && (pthread_key_delete != NULL)) - pthread_key_delete(globalkey); -- once_control = PTHREAD_ONCE_INIT; -+ once_control = once_control_init; - #elif defined(HAVE_WIN32_THREADS) && !defined(HAVE_COMPILER_TLS) && (!defined(LIBXML_STATIC) || defined(LIBXML_STATIC_FOR_DLL)) - if (globalkey != TLS_OUT_OF_INDEXES) { - xmlGlobalStateCleanupHelperParams *p; diff --git a/recipes/libxml/libxml2_2.9.0.oe b/recipes/libxml/libxml2_2.9.0.oe deleted file mode 100644 index 888a5af..0000000 --- a/recipes/libxml/libxml2_2.9.0.oe +++ /dev/null @@ -1,5 +0,0 @@ -LICENSE = "MIT" - -require libxml2.inc - -SRC_URI += "file://pthread_once_init_fix.patch" diff --git a/recipes/libxml/libxml2_2.9.0.oe.sig b/recipes/libxml/libxml2_2.9.0.oe.sig deleted file mode 100644 index 3d41b1f..0000000 --- a/recipes/libxml/libxml2_2.9.0.oe.sig +++ /dev/null @@ -1 +0,0 @@ -a43d7c0a8e463ac5a7846254f2a732a9af146fab libxml2-2.9.0.tar.gz