e1d386eca0
. Change the port versioning scheme from the seemingly static 1.0 to one based on the date (the way author releases it). . Enable the SSL (https) support by default (unless NO_OPENSSL is set). . Use Makefile.bsd instead of patching the software's Makefile -- the new Makefile.bsd is nearly twice smaller than the old patch-aa. . Add the author-approved patch-idle, which allows to specify the timeout at run-time (on command line), instead of at compile-time. The maintainer submitted the PR below three weeks ago, and agreed for me to close it with this commit. Approved by: maintainer PR: ports/26429 (related)
13 lines
265 B
Makefile
13 lines
265 B
Makefile
PROG = http_load
|
|
SRCS = http_load.c timers.c
|
|
|
|
.ifndef NO_OPENSSL
|
|
CFLAGS += -DUSE_SSL -I${OPENSSLBASE}/include ${OPENSSL_CFLAGS}
|
|
LDADD += -L${OPENSSLBASE}/lib -lssl -lcrypto
|
|
.endif
|
|
|
|
BINDIR = ${LOCALBASE}/bin
|
|
MANDIR = ${LOCALBASE}/man/man
|
|
|
|
.include <bsd.prog.mk>
|