From c3cf32ebf55c203ec4d3fcd566ca64bf173b9079 Mon Sep 17 00:00:00 2001 From: "gilles.talis@gmail.com" Date: Fri, 21 Jun 2013 10:59:44 -0700 Subject: tinyhttpd: do not link against pthread 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 Signed-off-by: Peter Korsgaard --- package/tinyhttpd/tinyhttpd.patch | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package/tinyhttpd/tinyhttpd.patch b/package/tinyhttpd/tinyhttpd.patch index 02eb189af..05d6e50a7 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 -- cgit v1.2.3