diff options
-rw-r--r-- | debian/changelog | 1 | ||||
-rwxr-xr-x | debian/rules | 5 |
2 files changed, 5 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog index f3e926f..c1b7d32 100644 --- a/debian/changelog +++ b/debian/changelog @@ -31,6 +31,7 @@ screen (4.1.0~20110819git450e8f3) UNRELEASED; urgency=low * Added patches from Fedora: - 02screen-cc: Additional assertions to improve stability - 03screen-ipv6: IPv6 support for built-in telnet + * Enable telnet (Closes: #353090) and localized day/month names [ Axel Beckert ] * Add myself as Uploader. diff --git a/debian/rules b/debian/rules index 72c958a..5955a03 100755 --- a/debian/rules +++ b/debian/rules @@ -43,7 +43,10 @@ configure-stamp: patch-stamp --with-pty-group=${TTYGROUP} \ --enable-rxvt_osc \ --with-sys-screenrc=/etc/screenrc \ - --enable-colors256 + --enable-colors256 \ + --enable-telnet \ + --enable-use-locale + # Assert the use of fifos instead of sockets grep -q "define.*NAMEDPIPE.*1" config.h || echo "#define NAMEDPIPE 1" >> config.h touch $@ |