ports/net/sslh/files/patch-Makefile
Pav Lucistnik 780b5123e6 sslh lets one accept both HTTPS and SSH connections on the same port. It makes
it possible to connect to an SSH server on port 443 (e.g. from inside a
corporate firewall) while still serving HTTPS on that port.

WWW:	http://www.rutschle.net/tech/sslh.shtml

PR:		ports/145113
Submitted by:	Jui-Nan Lin <jnlin@csie.nctu.edu.tw>
2010-04-02 13:06:43 +00:00

20 lines
587 B
Text

--- Makefile 2010-02-01 19:18:23.000000000 +0800
+++ Makefile.new 2010-03-29 00:43:42.198577686 +0800
@@ -4,7 +4,7 @@
USELIBWRAP=1 # Use libwrap?
PREFIX=/usr/local
-MAN=sslh.8.gz # man page name
+MAN=sslh.8 # man page name
# End of configuration -- the rest should take care of
# itself
@@ -27,7 +27,7 @@
strip sslh
$(MAN): sslh.pod Makefile
- pod2man --section=8 --release=$(VERSION) --center=" " sslh.pod | gzip -9 - > $(MAN)
+ pod2man --section=8 --release=$(VERSION) --center=" " sslh.pod > $(MAN)
# generic install: install binary and man page
install: sslh $(MAN)