diff options
author | Emanuel Haupt <ehaupt@FreeBSD.org> | 2007-09-25 22:01:43 +0000 |
---|---|---|
committer | Emanuel Haupt <ehaupt@FreeBSD.org> | 2007-09-25 22:01:43 +0000 |
commit | a33ff46559a729dda105d421c527ef916ed625bd (patch) | |
tree | 41e5e59bde6469cb1a1c1ef6ea4857a8a327b1b3 /net/httping | |
parent | c817481dbd6c0a60c65cee3982636da8cbbda011 (diff) | |
download | ports-a33ff46559a729dda105d421c527ef916ed625bd.tar.gz ports-a33ff46559a729dda105d421c527ef916ed625bd.zip |
Notes
Diffstat (limited to 'net/httping')
-rw-r--r-- | net/httping/Makefile | 5 | ||||
-rw-r--r-- | net/httping/files/patch-Makefile | 13 |
2 files changed, 13 insertions, 5 deletions
diff --git a/net/httping/Makefile b/net/httping/Makefile index e5d2d2b4d659..9b558fa8fcbf 100644 --- a/net/httping/Makefile +++ b/net/httping/Makefile @@ -19,11 +19,6 @@ COMMENT= A ping-like tool for HTTP requests MAN1= httping.1 PLIST_FILES= bin/httping -CFLAGS+= -DVERSION=\\\"${PORTVERSION}\\\" - -post-patch: - @${REINPLACE_CMD} -E '/^(DEBUG|CFLAGS)/d' ${WRKSRC}/${MAKEFILE} - do-install: ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin ${INSTALL_MAN} ${WRKSRC}/${MAN1} ${MANPREFIX}/man/man1 diff --git a/net/httping/files/patch-Makefile b/net/httping/files/patch-Makefile new file mode 100644 index 000000000000..bd6640c26e33 --- /dev/null +++ b/net/httping/files/patch-Makefile @@ -0,0 +1,13 @@ +--- Makefile.ori Thu Jul 26 10:00:31 2007 ++++ Makefile Tue Sep 25 18:36:53 2007 +@@ -14,9 +14,8 @@ + + include version + +-DEBUG=-g # -D_DEBUG + LDFLAGS+=-lssl -lcrypto $(DEBUG) +-CFLAGS+=-O2 -Wall -DVERSION=\"$(VERSION)\" $(DEBUG) ++CFLAGS+=-DVERSION=\"$(VERSION)\" + + OBJS=mem.o http.o io.o str.o error.o utils.o main.o tcp.o mssl.o res.o + |