From 77f310f5db4b9cd5a98adbf198c3eb9d36632cb7 Mon Sep 17 00:00:00 2001 From: Jo-Philipp Wich Date: Fri, 19 Mar 2010 01:35:26 +0000 Subject: uhttpd: make missing certs only fatal if tls sockets were requested --- contrib/package/uhttpd/src/Makefile | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) (limited to 'contrib/package/uhttpd/src/Makefile') diff --git a/contrib/package/uhttpd/src/Makefile b/contrib/package/uhttpd/src/Makefile index 44bed22d86..a94dff9f8d 100644 --- a/contrib/package/uhttpd/src/Makefile +++ b/contrib/package/uhttpd/src/Makefile @@ -1,10 +1,13 @@ -CGI_SUPPORT:=1 -LUA_SUPPORT:=1 -TLS_SUPPORT:=0 +CGI_SUPPORT ?= 1 +LUA_SUPPORT ?= 1 +TLS_SUPPORT ?= 1 LDFLAGS ?= -L./lua-5.1.4/src -L./cyassl-1.4.0/src/.libs -lm CFLAGS ?= -Wall -I./lua-5.1.4/src -I./cyassl-1.4.0/include -O0 -ggdb3 +CFLAGS += --std=c99 -D_POSIX_C_SOURCE=200112L -D_XOPEN_SOURCE=500 +LDFLAGS += -lm -lcrypt + OBJ = uhttpd.o uhttpd-file.o uhttpd-utils.o ifeq ($(CGI_SUPPORT),1) @@ -21,7 +24,7 @@ endif ifeq ($(TLS_SUPPORT),1) OBJ += uhttpd-tls.o CFLAGS += -DHAVE_TLS - LDFLAGS += -lcyassl + LDFLAGS += -lpthread -lz -lcyassl endif %.o: %.c -- cgit v1.2.3