From patchwork Tue Mar 20 14:54:08 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Gustavo Zacarias X-Patchwork-Id: 147806 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from whitealder.osuosl.org (whitealder.osuosl.org [140.211.166.138]) by ozlabs.org (Postfix) with ESMTP id 9F5D0B6EE6 for ; Wed, 21 Mar 2012 01:54:26 +1100 (EST) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 7831B8F708; Tue, 20 Mar 2012 14:54:23 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from whitealder.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 407YnDnDxzvI; Tue, 20 Mar 2012 14:54:20 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by whitealder.osuosl.org (Postfix) with ESMTP id 9834E8F05C; Tue, 20 Mar 2012 14:54:18 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from whitealder.osuosl.org (whitealder.osuosl.org [140.211.166.138]) by ash.osuosl.org (Postfix) with ESMTP id 967708F75B for ; Tue, 20 Mar 2012 14:54:17 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 8F5FB8F05C for ; Tue, 20 Mar 2012 14:54:17 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from whitealder.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id T8oYDPy+bVC8 for ; Tue, 20 Mar 2012 14:54:15 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from loknar.toptech.com.ar (loknar.toptech.com.ar [74.118.36.95]) by whitealder.osuosl.org (Postfix) with ESMTPS id 1CC698E7F3 for ; Tue, 20 Mar 2012 14:54:14 +0000 (UTC) Received: from asgard (host249.186-109-21.telecom.net.ar [186.109.21.249]) (authenticated bits=0) by loknar.toptech.com.ar (8.14.4/8.14.4) with ESMTP id q2KEs9QI018390 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Tue, 20 Mar 2012 11:54:11 -0300 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=zacarias.com.ar; s=dkey; t=1332255253; bh=zOU1xBvjldUQMARgvjhVDdUKxM7J8RV9mI7dOBK3xzc=; h=From:To:Cc:Subject:Date:Message-Id; b=Whg8s8JqE9FGEUkZPEJSLmDIsbB2etKL6rVuaXUZTrlw7e4k6TsrvgrdGPUPkhhC8 HQtVlz+UubaLaA0C/hlX9IEg5iNTmuAcBblq7Vbuka7akx9ZVWXa1mOKZvrmm4u/kr blrQBb9Zi+1lRoltjwCRJQAmWQdQNEpHNtGR153M= Received: by asgard (sSMTP sendmail emulation); Tue, 20 Mar 2012 11:54:08 -0300 From: Gustavo Zacarias To: buildroot@busybox.net Date: Tue, 20 Mar 2012 11:54:08 -0300 Message-Id: <1332255248-12534-1-git-send-email-gustavo@zacarias.com.ar> X-Mailer: git-send-email 1.7.3.4 X-Virus-Scanned: clamav-milter 0.97.3 at loknar X-Virus-Status: Clean Subject: [Buildroot] [PATCH] libupnp: bump to version 1.6.15 X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussion and development of buildroot List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: buildroot-bounces@busybox.net Sender: buildroot-bounces@busybox.net Signed-off-by: Gustavo Zacarias --- package/libupnp/Config.in | 5 +++-- .../libupnp/libupnp-1.6.6-remove-sys_timeb.h.patch | 11 ----------- package/libupnp/libupnp.mk | 9 ++++----- 3 files changed, 7 insertions(+), 18 deletions(-) delete mode 100644 package/libupnp/libupnp-1.6.6-remove-sys_timeb.h.patch diff --git a/package/libupnp/Config.in b/package/libupnp/Config.in index 2e6edcd..9f73798 100644 --- a/package/libupnp/Config.in +++ b/package/libupnp/Config.in @@ -1,5 +1,6 @@ config BR2_PACKAGE_LIBUPNP bool "libupnp" + depends on BR2_INET_IPV6 depends on BR2_LARGEFILE help The portable SDK for UPnP(tm) Devices (libupnp) provides developers @@ -9,5 +10,5 @@ config BR2_PACKAGE_LIBUPNP http://pupnp.sourceforge.net/ -comment "libupnp requires a toolchain with LARGEFILE support" - depends on !BR2_LARGEFILE +comment "libupnp requires a toolchain with IPV6 and LARGEFILE support" + depends on !(BR2_INET_IPV6 && BR2_LARGEFILE) diff --git a/package/libupnp/libupnp-1.6.6-remove-sys_timeb.h.patch b/package/libupnp/libupnp-1.6.6-remove-sys_timeb.h.patch deleted file mode 100644 index e425392..0000000 --- a/package/libupnp/libupnp-1.6.6-remove-sys_timeb.h.patch +++ /dev/null @@ -1,11 +0,0 @@ -diff -urN libupnp-1.6.6-0rig/configure libupnp-1.6.6/configure ---- libupnp-1.6.6-0rig/configure 2008-04-25 13:47:24.000000000 +0200 -+++ libupnp-1.6.6/configure 2009-01-14 21:55:16.000000000 +0100 -@@ -21096,7 +21096,6 @@ - sys/ioctl.h \ - sys/socket.h \ - sys/time.h \ -- sys/timeb.h \ - syslog.h \ - unistd.h \ - diff --git a/package/libupnp/libupnp.mk b/package/libupnp/libupnp.mk index d5b4ee1..1fa07ca 100644 --- a/package/libupnp/libupnp.mk +++ b/package/libupnp/libupnp.mk @@ -3,12 +3,11 @@ # libupnp # ############################################################# -LIBUPNP_VERSION:=1.6.6 -LIBUPNP_SOURCE:=libupnp-$(LIBUPNP_VERSION).tar.bz2 -LIBUPNP_SITE:=http://$(BR2_SOURCEFORGE_MIRROR).dl.sourceforge.net/sourceforge/pupnp +LIBUPNP_VERSION = 1.6.15 +LIBUPNP_SOURCE = libupnp-$(LIBUPNP_VERSION).tar.bz2 +LIBUPNP_SITE = http://$(BR2_SOURCEFORGE_MIRROR).dl.sourceforge.net/project/pupnp/pupnp/libUPnP%20$(LIBUPNP_VERSION) LIBUPNP_CONF_ENV = ac_cv_lib_compat_ftime=no - -LIBUPNP_INSTALL_STAGING:=YES +LIBUPNP_INSTALL_STAGING = YES $(eval $(call AUTOTARGETS))