1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-08 06:48:28 +00:00
freebsd-ports/security/ratproxy/files/patch-Makefile
Steven Kreuzer 7f164b7367 Update to 1.58
Approved by:	wxs (mentor)
2009-05-27 16:54:33 +00:00

27 lines
823 B
Plaintext

--- Makefile.orig 2008-06-10 07:44:28.000000000 -0400
+++ Makefile 2009-05-27 10:17:46.000000000 -0400
@@ -20,21 +20,13 @@
#
PROGNAME = ratproxy
-CFLAGS = -Wall -O3 -Wno-pointer-sign -D_GNU_SOURCE
+CFLAGS ?= -O3 -D_GNU_SOURCE
LDFLAGS = -lcrypto -lssl
-all: $(PROGNAME) flare-check
+all: $(PROGNAME)
$(PROGNAME): $(PROGNAME).c http.c mime.c ssl.c http.h mime.h ssl.h nlist.h config.h debug.h types.h string-inl.h
$(CC) $(PROGNAME).c -o $(PROGNAME) $(CFLAGS) http.c mime.c ssl.c $(LDFLAGS)
-flare-check:
- @flare-dist/flare 2>&1 | grep -qF Igor || ( \
- echo; \
- echo '*** WARNING: 'flare-dist/flare' bianry is not operational.'; \
- echo '*** Please see flare-dist/README and update it for your OS.'; \
- echo )
-
clean:
rm -f $(PROGNAME) *.exe *.o *~ a.out core core.[1-9][0-9]* *.stackdump
-