[packages] updatedd: mark uci as config file (#6766)
[openwrt/svn-archive/archive.git] / net / httping / patches / 001-extra_flags.patch
1 --- a/Makefile
2 +++ b/Makefile
3 @@ -18,7 +18,7 @@ TARGET=httping
4
5 WFLAGS=-Wall -W
6 OFLAGS=-O2
7 -CFLAGS+=$(WFLAGS) $(OFLAGS) -DVERSION=\"$(VERSION)\"
8 +CFLAGS+=$(EXTRA_CFLAGS) $(WFLAGS) $(OFLAGS) -DVERSION=\"$(VERSION)\"
9
10 PACKAGE=$(TARGET)-$(VERSION)
11 PREFIX=/usr
12 @@ -47,7 +47,7 @@ ifeq ($(SSL),no)
13 CFLAGS+=-DNO_SSL
14 else
15 OBJS+=mssl.o
16 -LDFLAGS+=-lssl -lcrypto
17 +LDFLAGS+=$(EXTRA_LDFLAGS) -lssl -lcrypto
18 endif
19
20 ifeq ($(DEBUG),yes)