From patchwork Fri Jun 21 17:59:44 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Gilles Talis X-Patchwork-Id: 253298 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from silver.osuosl.org (silver.osuosl.org [140.211.166.136]) by ozlabs.org (Postfix) with ESMTP id 86C092C02F3 for ; Sat, 22 Jun 2013 03:59:59 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id CA18F31F0D; Fri, 21 Jun 2013 17:59:57 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from silver.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id wdEMcSelbXWP; Fri, 21 Jun 2013 17:59:57 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by silver.osuosl.org (Postfix) with ESMTP id CCE4B31084; Fri, 21 Jun 2013 17:59:56 +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 7C4808F753 for ; Fri, 21 Jun 2013 18:00:02 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 7925D8BC2C for ; Fri, 21 Jun 2013 17:59:55 +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 4YdLWgViC6KP for ; Fri, 21 Jun 2013 17:59:54 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mail-pa0-f41.google.com (mail-pa0-f41.google.com [209.85.220.41]) by whitealder.osuosl.org (Postfix) with ESMTPS id 9148E8CBE4 for ; Fri, 21 Jun 2013 17:59:54 +0000 (UTC) Received: by mail-pa0-f41.google.com with SMTP id bj3so8182094pad.0 for ; Fri, 21 Jun 2013 10:59:54 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id:x-mailer; bh=oy2tm7r5hVjfudYAevPgb58Q4HAHd0TU9yDiqa0iWvo=; b=RzKBfkMVXxA1u9HGDwuip7TLkT+vgojEDdZyLD8YnyYr0m5SkT8if2KdfLalBesT7O Hl151nhGYArs1w5mUwatG5NTYlirIq9TYK5mQWgQzCIz+a9FR7jy0kLCEFdfSxSuT9w0 1RHnw+J4tjb5vDxenmZgSxrxr942mC5u1eCtv3CgkmWRryrAtycgykpU0tJGPWDXSkBo ZVsQd0IAXoWicBADe3++sTe/8B/q/6Ux9bx63uuS2gTGEJfqJ3/8u4F9BYib20NcesJ1 ZfTU/oayD6JwREscX+ag5VOih9yXCurPQTQ8p0RFnNDmhsgegP+Pdh2vBL/lvno0EN4p dQ2Q== X-Received: by 10.68.173.97 with SMTP id bj1mr1163947pbc.176.1371837594331; Fri, 21 Jun 2013 10:59:54 -0700 (PDT) Received: from localhost.localdomain ([72.166.5.70]) by mx.google.com with ESMTPSA id o10sm5691650pbq.39.2013.06.21.10.59.53 for (version=TLSv1 cipher=RC4-SHA bits=128/128); Fri, 21 Jun 2013 10:59:53 -0700 (PDT) From: Gilles Talis To: buildroot@busybox.net Date: Fri, 21 Jun 2013 10:59:44 -0700 Message-Id: <1371837584-6270-1-git-send-email-gilles.talis@gmail.com> X-Mailer: git-send-email 1.7.4.1 Subject: [Buildroot] [PATCH] tinyhttpd: do not link against pthread 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 Original patch for tinyhttpd disables pthread support from the code but does not disable it from makefile. This patch disables pthread support altogether Fixes: http://autobuild.buildroot.net/results/2e61a80fcbddd62c76e0406c34ab44d14a4b5c79 Signed-off-by: Gilles Talis --- package/tinyhttpd/tinyhttpd.patch | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/package/tinyhttpd/tinyhttpd.patch b/package/tinyhttpd/tinyhttpd.patch index 02eb189..05d6e50 100644 --- a/package/tinyhttpd/tinyhttpd.patch +++ b/package/tinyhttpd/tinyhttpd.patch @@ -73,7 +73,7 @@ diff -ur tinyhttpd-0.1.0/Makefile tinyhttpd-0.1.0-patched/Makefile httpd: httpd.c - gcc -W -Wall -lsocket -lpthread -o httpd httpd.c -+ $(CC) $(CFLAGS) $(LDFLAGS) -W -Wall -lpthread -o httpd httpd.c ++ $(CC) $(CFLAGS) $(LDFLAGS) -W -Wall -o httpd httpd.c clean: - rm httpd