1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-03 06:04:53 +00:00

Add patches missed in the previous commit. Also note that the previous

commit removed MD5 from distinfo.
This commit is contained in:
Wesley Shields 2011-02-23 13:57:26 +00:00
parent 1643fb5290
commit b1ac9e4143
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=269539
3 changed files with 37 additions and 0 deletions

View File

@ -0,0 +1,12 @@
--- docs/man5/Makefile.am.orig 2011-02-09 12:11:57.000000000 -0800
+++ docs/man5/Makefile.am 2011-02-09 12:12:10.000000000 -0800
@@ -3,7 +3,8 @@
A2X_ARGS = \
-d manpage \
- -f manpage
+ -f manpage \
+ -L
man_MANS = \
$(MAN5_FILES:.txt=.5)

View File

@ -0,0 +1,12 @@
--- docs/man8/Makefile.am.orig 2011-02-09 12:10:50.000000000 -0800
+++ docs/man8/Makefile.am 2011-02-09 12:11:05.000000000 -0800
@@ -3,7 +3,8 @@
A2X_ARGS = \
-d manpage \
- -f manpage
+ -f manpage \
+ -L
man_MANS = \
$(MAN8_FILES:.txt=.8)

View File

@ -0,0 +1,13 @@
--- src/conf.c.orig 2011-02-09 11:55:12.000000000 -0800
+++ src/conf.c 2011-02-09 11:56:02.000000000 -0800
@@ -1046,8 +1046,8 @@
return -1;
port = (int) get_long_arg (line, &match[7]);
- if (match[9].rm_so != -1) {
- domain = get_string_arg (line, &match[9]);
+ if (match[10].rm_so != -1) {
+ domain = get_string_arg (line, &match[10]);
if (domain) {
upstream_add (ip, port, domain, &conf->upstream_list);
safefree (domain);