diff options
author | beech <beech@FreeBSD.org> | 2008-09-17 13:11:19 +0800 |
---|---|---|
committer | beech <beech@FreeBSD.org> | 2008-09-17 13:11:19 +0800 |
commit | e4b6c935bb66f69da072e99f0d77b5768d88bf5f (patch) | |
tree | 4d82aed5207af28288fcfcc578889605f7570da8 /ftp/proftpd/Makefile | |
parent | 666c20a6583749c644ab1f8d9b4287193ba489c8 (diff) | |
download | freebsd-ports-gnome-e4b6c935bb66f69da072e99f0d77b5768d88bf5f.tar.gz freebsd-ports-gnome-e4b6c935bb66f69da072e99f0d77b5768d88bf5f.tar.zst freebsd-ports-gnome-e4b6c935bb66f69da072e99f0d77b5768d88bf5f.zip |
- Patch src netio.c - wrong telnet filter
- Telnet filters input data, but Russian symbols deleted
PR: ports/127096
Submitted by: Sherbacov Dmitriy <sherbacov@bsys.ru>
Approved by: portmgr (linimon)
Diffstat (limited to 'ftp/proftpd/Makefile')
-rw-r--r-- | ftp/proftpd/Makefile | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/ftp/proftpd/Makefile b/ftp/proftpd/Makefile index c1bbc131e2bf..643f89bde753 100644 --- a/ftp/proftpd/Makefile +++ b/ftp/proftpd/Makefile @@ -87,8 +87,8 @@ OPTIONS= IPV6 "Use IPv6" off \ CLAMAV "Include mod_clamav" off \ DIGEST "Include mod_digest" off \ COMB "Include mod_comb (multistream upload)" off \ - CODECONV "Use charset conversion (possibly broken)" off - + CODECONV "Use charset conversion (possibly broken)" off \ + RUSSIANCHAR "Disable telnet filterning (Fix Russian)" off MODULES?= LIBDIRS?= INCLUDEDIRS?= @@ -265,6 +265,11 @@ PROFTPD_LIBS+= -liconv -L${LOCALBASE}/lib EXTRA_PATCHES+= ${FILESDIR}/extra-patch-mod-codeconv .endif +.if defined(WITH_RUSSIANCHAR) +EXTRA_PATCHES+= ${FILESDIR}/extra-patch-src-netio.c +.endif + + # mod_ifsession should be the last item in the modules list .if !defined(WITHOUT_IFSESSION) MODULES:=${MODULES}:mod_ifsession |