Blame SPECS/telnet.spec

e4a049
%global _hardened_build 1
e4a049
e4a049
Summary: The client program for the Telnet remote login protocol
e4a049
Name: telnet
e4a049
Version: 0.17
ff05a0
Release: 66%{?dist}
e4a049
Epoch: 1
e4a049
License: BSD
e4a049
Group: Applications/Internet
e4a049
Source0: ftp://ftp.uk.linux.org/pub/linux/Networking/netkit/netkit-telnet-%{version}.tar.gz
e4a049
Url: http://web.archive.org/web/20070819111735/www.hcs.harvard.edu/~dholland/computers/old-netkit.html
e4a049
# telnet-client tarball is snapshot of the OpenBSD client telnet
e4a049
Source2: telnet-client.tar.gz
e4a049
Source4: telnet.wmconfig
e4a049
Source5: telnet@.service
e4a049
Source6: telnet.socket
e4a049
Patch1: telnet-client-cvs.patch
e4a049
Patch5: telnetd-0.17.diff
e4a049
Patch6: telnet-0.17-env.patch
e4a049
Patch7: telnet-0.17-issue.patch
e4a049
Patch8: telnet-0.17-sa-01-49.patch
e4a049
Patch10: telnet-0.17-pek.patch
e4a049
Patch11: telnet-0.17-8bit.patch
e4a049
Patch12: telnet-0.17-argv.patch
e4a049
Patch13: telnet-0.17-conf.patch
e4a049
Patch14: telnet-0.17-cleanup_race.patch
e4a049
Patch15: telnetd-0.17-pty_read.patch
e4a049
Patch16: telnet-0.17-CAN-2005-468_469.patch
e4a049
Patch18: telnet-gethostbyname.patch
e4a049
Patch19: netkit-telnet-0.17-ipv6.diff
e4a049
Patch20: netkit-telnet-0.17-nodns.patch
e4a049
Patch21: telnet-0.17-errno_test_sys_bsd.patch
e4a049
Patch22: netkit-telnet-0.17-reallynodns.patch
e4a049
Patch23: telnet-rh678324.patch
e4a049
Patch24: telnet-rh674942.patch
e4a049
Patch25: telnet-rh704604.patch
e4a049
Patch26: telnet-rh825946.patch
e8afe3
Patch27: telnet-log-address.patch
12821a
Patch28: telnet-0.17-force-ipv6-ipv4.patch
12821a
Patch29: netkit-telnet-0.17-manpage.patch
f4defd
Patch30: telnet-0.17-overflow-exploit.patch
ff05a0
Patch31: telnet-0.17-pty-retry.patch
e4a049
e4a049
BuildRequires: ncurses-devel systemd
e4a049
e4a049
%description
e4a049
Telnet is a popular protocol for logging into remote systems over the
e4a049
Internet. The package provides a command line Telnet client
e4a049
e4a049
%package server
e4a049
Requires: systemd
e4a049
Requires(post): systemd
e4a049
Requires(preun): systemd
e4a049
Requires(postun): systemd
e4a049
Group: System Environment/Daemons
e4a049
Summary: The server program for the Telnet remote login protocol
e4a049
e4a049
%description server
e4a049
Telnet is a popular protocol for logging into remote systems over the
e4a049
Internet. The package includes a daemon that supports Telnet remote
e4a049
logins into the host machine. The daemon is disabled by default.
e4a049
You may enable the daemon by editing /etc/xinetd.d/telnet
e4a049
e4a049
%prep
e4a049
%setup -q -n netkit-telnet-%{version}
e4a049
e4a049
mv telnet telnet-NETKIT
e4a049
%setup -T -D -q -a 2 -n netkit-telnet-%{version}
e4a049
e4a049
%patch1 -p0 -b .cvs
e4a049
%patch5 -p0 -b .fix
e4a049
%patch6 -p1 -b .env
e4a049
%patch10 -p0 -b .pek
e4a049
%patch7 -p1 -b .issue
e4a049
%patch8 -p1 -b .sa-01-49
e4a049
%patch11 -p1 -b .8bit
e4a049
%patch12 -p1 -b .argv
e4a049
%patch13 -p1 -b .confverb
e4a049
%patch14 -p1 -b .cleanup_race 
e4a049
%patch15 -p0 -b .pty_read
e4a049
%patch16 -p1 -b .CAN-2005-468_469
e4a049
#%patch17 -p1 -b .linemode
e4a049
%patch18 -p1 -b .gethost
e4a049
%patch19 -p1 -b .gethost2
e4a049
%patch20 -p1 -b .nodns
e4a049
%patch21 -p1 -b .errnosysbsd
e4a049
%patch22 -p1 -b .reallynodns
e4a049
%patch23 -p1 -b .rh678324
e4a049
%patch24 -p1 -b .rh674942
e4a049
%patch25 -p1 -b .rh704604
e4a049
%patch26 -p1 -b .rh825946
e8afe3
%patch27 -p1 -b .rh1323094
12821a
%patch28 -p1 -b .ipv6-support
12821a
%patch29 -p1 -b .manpage
f4defd
%patch30 -p1 -b .overflow
ff05a0
%patch31 -p1 -b .pty-retry
e4a049
e4a049
%build
e4a049
%ifarch s390 s390x
e4a049
    export CC_FLAGS="$RPM_OPT_FLAGS -fPIE"
e4a049
%else
e4a049
    export CC_FLAGS="$RPM_OPT_FLAGS -fpie"
e4a049
%endif
e4a049
e4a049
export LD_FLAGS="$LD_FLAGS -z now -pie"
e4a049
e4a049
sh configure --with-c-compiler=gcc 
e4a049
perl -pi -e '
e4a049
    s,-O2,\$(CC_FLAGS),;
e4a049
    s,LDFLAGS=.*,LDFLAGS=\$(LD_FLAGS),;
e4a049
    s,^BINDIR=.*$,BINDIR=%{_bindir},;
e4a049
    s,^MANDIR=.*$,MANDIR=%{_mandir},;
e4a049
    s,^SBINDIR=.*$,SBINDIR=%{_sbindir},;
e4a049
    ' MCONFIG
e4a049
e4a049
# remove stripping
e4a049
perl -pi -e 's|install[ ]+-s|install|g' \
e4a049
    ./telnet/GNUmakefile \
e4a049
    ./telnetd/Makefile \
e4a049
    ./telnetlogin/Makefile \
e4a049
    ./telnet-NETKIT/Makefile
e4a049
e4a049
make %{?_smp_mflags}
e4a049
e4a049
%install
e4a049
mkdir -p ${RPM_BUILD_ROOT}%{_bindir}
e4a049
mkdir -p ${RPM_BUILD_ROOT}%{_sbindir}
e4a049
mkdir -p ${RPM_BUILD_ROOT}%{_unitdir}
e4a049
mkdir -p ${RPM_BUILD_ROOT}%{_mandir}/man1
e4a049
mkdir -p ${RPM_BUILD_ROOT}%{_mandir}/man5
e4a049
mkdir -p ${RPM_BUILD_ROOT}%{_mandir}/man8
e4a049
e4a049
make INSTALLROOT=${RPM_BUILD_ROOT} install
e4a049
e4a049
install -p -m644 %SOURCE5 ${RPM_BUILD_ROOT}%{_unitdir}/telnet@.service
e4a049
install -p -m644 %SOURCE6 ${RPM_BUILD_ROOT}%{_unitdir}/telnet.socket
e4a049
e4a049
%post server
e4a049
%systemd_post telnet.socket
e4a049
e4a049
%preun server
e4a049
%systemd_preun telnet.socket
e4a049
e4a049
%postun server
e4a049
%systemd_postun_with_restart telnet.socket
e4a049
e4a049
%files
e4a049
%doc README
e4a049
%defattr(-,root,root,-)
e4a049
%{_bindir}/telnet
e4a049
%{_mandir}/man1/telnet.1*
e4a049
e4a049
%files server
e4a049
%defattr(-,root,root,-)
e4a049
%{_unitdir}/*
e4a049
%{_sbindir}/in.telnetd
e4a049
%{_mandir}/man5/issue.net.5*
e4a049
%{_mandir}/man8/in.telnetd.8*
e4a049
%{_mandir}/man8/telnetd.8*
e4a049
e4a049
%changelog
ff05a0
* Tue Sep 22 2020 Michal Ruprich <mruprich@redhat.com> - 1:0.17-66
ff05a0
- Resolves: #1853102 - in.telnetd needs to tolerate temporary EIO errors
ff05a0
f4defd
* Thu Mar 26 2020 Michal Ruprich <michalruprich@gmail.com> - 1:0.17-65
ff05a0
- Resolves: #1814476 - Arbitrary remote code execution in utility.c via short writes or urgent data
f4defd
12821a
* Wed Apr 19 2017 Michal Ruprich - 1:0.17-64
12821a
- Related: #1367415 - No option to specify IPv6 or IPv4 explicitly must be used
12821a
                    - more clear formulation of man page note - previous note was a bit ambiguous
12821a
12821a
* Wed Apr 19 2017 Michal Ruprich <mruprich@redhat.com> - 1:0.17-63
12821a
- Related: #1367415 - No option to specify IPv6 or IPv4 explicitly must be used
12821a
                    - additional info added to manpage
12821a
12821a
* Mon Jan 23 2017 Michal Ruprich <mruprich@redhat.com> - 1:0.17-62
12821a
- Related: #1367415 - No option to specify IPv6 or IPv4 explicitly must be used
12821a
12821a
* Wed Jan 18 2017 Michal Ruprich <mruprich@redhat.com> - 1:0.17-61
12821a
- Resolves: #1367415 - No option to specify IPv6 or IPv4 explicitly must be used
12821a
e8afe3
* Fri Jul 01 2016 Martin Sehnoutka <msehnout@redhat.com> - 1:0.17-60
e8afe3
- Introduce new -i switch
e8afe3
- ip addresses will be logged into utmp instead of hostname
e8afe3
- Resolves: #1323094
e8afe3
19cf99
* Fri Jan 24 2014 Daniel Mach <dmach@redhat.com> - 1:0.17-59
19cf99
- Mass rebuild 2014-01-24
19cf99
19cf99
* Fri Dec 27 2013 Daniel Mach <dmach@redhat.com> - 1:0.17-58
19cf99
- Mass rebuild 2013-12-27
19cf99
e4a049
* Wed Jul 17 2013 Michal Sekletar <msekleta@redhat.com> - 1:0.17-57
e4a049
- enable hardened build
e4a049
- fix dates in changelog
e4a049
- add systemd to BuildRequires
e4a049
e4a049
* Mon May 06 2013 Michal Sekletar <msekleta@redhat.com> - 1:0.17-56
e4a049
- telnet-server will use systemd socket based activation instead of xinetd
e4a049
e4a049
* Fri Feb 15 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:0.17-55
e4a049
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
e4a049
e4a049
* Sat Jul 21 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:0.17-54
e4a049
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
e4a049
e4a049
* Thu Jun 14 2012 Adam Tkac <atkac redhat com> 1:0.17-53
e4a049
- update /var/run/utmp even on some corner cases
e4a049
e4a049
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:0.17-52
e4a049
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
e4a049
e4a049
* Wed Jul 13 2011 Adam Tkac <atkac redhat com> 1:0.17-51
e4a049
- add "-debug6" option to telnetd (#rh674942)
e4a049
- telnet wasn't interruptable (^C) when started with specious -b argument (#704604)
e4a049
e4a049
* Tue Jun 28 2011 Adam Tkac <atkac redhat com> 1:0.17-50
e4a049
- telnetd: store "from" address in sockaddr_storage (#678324)
e4a049
e4a049
* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:0.17-49
e4a049
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
e4a049
e4a049
* Thu Jan 20 2011 Karsten Hopp <karsten@redhat.com> 1:0.17-48
e4a049
- update telnet-0.17-sa-01-49.patch to make it apply with fuzz=0
e4a049
e4a049
* Tue Mar 09 2010 Adam Tkac <atkac redhat com> 1:0.17-47
e4a049
- add URL and README
e4a049
e4a049
* Fri Nov 27 2009 Adam Tkac <atkac redhat com> 1:0.17-46
e4a049
- changes related package review (#226484)
e4a049
- remove unused patches
e4a049
  - telnet-0.17-linemode.patch
e4a049
  - telnet-0.17-env-5x.patch
e4a049
e4a049
* Wed Sep 02 2009 Adam Tkac <atkac redhat com> 1:0.17-45
e4a049
- add new option -N to disable DNS lookups (#490242)
e4a049
e4a049
* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:0.17-44
e4a049
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
e4a049
e4a049
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:0.17-43
e4a049
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
e4a049
e4a049
* Mon Feb 18 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 1:0.17-42
e4a049
- Autorebuild for GCC 4.3
e4a049
e4a049
* Tue Sep 25 2007 Adam Tkac <atkac redhat com> 1:0.17-41
e4a049
- rebased "nodns" patch with patch from Bryn M. Reeves
e4a049
e4a049
* Thu Sep 20 2007 Adam Tkac <atkac redhat com> 1:0.17-40
e4a049
- improved patch to #274991
e4a049
e4a049
* Wed Aug 22 2007 Harald Hoyer <harald@redhat.com> - 1:0.17-39
e4a049
- added patch to prevent a rare loop in the client
e4a049
e4a049
* Fri Apr 13 2007 Adam Tkac <atkac redhat com> - 1:0.17-38.fc7
e4a049
- added -c option which disables reverse dns checking (#223448)
e4a049
- added smp_mflags to make
e4a049
- start using dist macro
e4a049
e4a049
* Fri Jul 14 2006 Harald Hoyer <harald@redhat.com> - 1:0.17-37
e4a049
- added netkit-telnet-0.17-ipv6.diff from Marek Grác, 
e4a049
  which adds IPv6 support to telnetd
e4a049
e4a049
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 1:0.17-36.1
e4a049
- rebuild
e4a049
e4a049
* Mon May 08 2006 Harald Hoyer <harald@redhat.com> - 1:0.17-36
e4a049
- patch to remove gethostbyname() (bug #190296)
e4a049
e4a049
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 1:0.17-35.2.1
e4a049
- bump again for double-long bug on ppc(64)
e4a049
e4a049
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 1:0.17-35.2
e4a049
- rebuilt for new gcc4.1 snapshot and glibc changes
e4a049
e4a049
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
e4a049
- rebuilt
e4a049
e4a049
* Thu Mar 17 2005 Harald Hoyer <harald@redhat.com> - 1:0.17-35
e4a049
- fixed CAN-2005-468 and CAN-2005-469
e4a049
e4a049
* Wed Mar 02 2005 Harald Hoyer <harald@redhat.com> 
e4a049
- rebuilt
e4a049
e4a049
* Fri Jan 21 2005 Harald Hoyer <harald@redhat.com> - 1:0.17-33
e4a049
- added patch telnetd-0.17-pty_read.patch, which fixes 145636
e4a049
e4a049
* Thu Jan 13 2005 Jason Vas Dias <jvdias@redhat.com> - 1:0.17-31
e4a049
- bug 143929 / 145004 : fix race condition in telnetd on wtmp lock 
e4a049
- when cleanup() is entered from main process and in signal
e4a049
- handler 
e4a049
e4a049
* Mon Jun 28 2004 Harald Hoyer <harald@redhat.com> - 1:0.17-30
e4a049
- fixed 126858: Too long /proc/X/cmdline: bad ps output when 
e4a049
                piped to less/more
e4a049
e4a049
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
e4a049
- rebuilt
e4a049
e4a049
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
e4a049
- rebuilt
e4a049
e4a049
* Thu Feb  5 2004 Harald Hoyer <harald@redhat.com> - 1:0.17-27
e4a049
- added PIE compile flags
e4a049
e4a049
* Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com>
e4a049
- rebuilt
e4a049
e4a049
* Wed May 28 2003 Harald Hoyer <harald@redhat.de> 1:0.17-26
e4a049
- cleanup of spec file
e4a049
- 8bit binary patch #91023
e4a049
e4a049
* Wed Jan 29 2003 Harald Hoyer <harald@redhat.de> 0.17-25
e4a049
- rebuilt 
e4a049
e4a049
* Wed Jan 22 2003 Tim Powers <timp@redhat.com>
e4a049
- rebuilt
e4a049
e4a049
* Mon Nov 11 2002 Harald Hoyer <harald@redhat.de> 0.17-24
e4a049
- changed description
e4a049
- removed unused .desktop files
e4a049
e4a049
* Tue Jul 23 2002 Harald Hoyer <harald@redhat.de> 0.17-23
e4a049
- removed prestripping
e4a049
e4a049
* Tue Jul  9 2002 Harald Hoyer <harald@redhat.de>
e4a049
- removed x86 -O gcc-2.96 hack (#59514)
e4a049
e4a049
* Fri Jun 21 2002 Tim Powers <timp@redhat.com>
e4a049
- automated rebuild
e4a049
e4a049
* Thu Jun  6 2002 Tim Powers <timp@redhat.com>
e4a049
- bump release number and rebuild
e4a049
e4a049
* Thu May 23 2002 Tim Powers <timp@redhat.com>
e4a049
- automated rebuild
e4a049
e4a049
* Thu Sep 06 2001 Harald Hoyer <harald@redhat.de> 0.17-20
e4a049
- hopefully fixed #52817, #52224
e4a049
e4a049
* Thu Aug 16 2001 Bill Nottingham <notting@redhat.com>
e4a049
- bump version for 7.2
e4a049
e4a049
* Wed Aug 15 2001 Bill Nottingham <notting@redhat.com>
e4a049
- fix versioning
e4a049
e4a049
* Tue Jul 31 2001 Harald Hoyer <harald@redhat.de>
e4a049
- fixed security issues (#50335)
e4a049
- patched the patches to fit the 5x version
e4a049
- one world -> one spec file for all versions ;)
e4a049
e4a049
* Sat Jul 21 2001 Tim Powers <timp@redhat.com>
e4a049
- no applnk file, it's clutrtering the menus
e4a049
e4a049
* Wed Jul 18 2001 Bill Nottingham <notting@redhat.com>
e4a049
- apply the patch, duh (and fix it while we're here)
e4a049
e4a049
* Tue Jul 10 2001 Bill Nottingham <notting@redhat.com>
e4a049
- make /etc/issue.net parsing match the various gettys
e4a049
e4a049
* Mon Jun 18 2001 Harald Hoyer <harald@redhat.de>
e4a049
- merged Jakubs and Pekka's patches 
e4a049
e4a049
* Wed Apr  4 2001 Jakub Jelinek <jakub@redhat.com>
e4a049
- don't let configure to guess compiler, it can pick up egcs
e4a049
e4a049
* Fri Mar  9 2001 Pekka Savola <pekkas@netcore.fi>
e4a049
- update to 0.17
e4a049
- apply latest changes from CVS to telnet client, enable IPv6
e4a049
- BuildPreReq ncurses-devel
e4a049
e4a049
* Mon Jan 22 2001 Helge Deller <hdeller@redhat.com>
e4a049
- added swedish & german translation to .desktop-file (#15332)
e4a049
e4a049
* Sat Dec 30 2000 Nalin Dahyabhai <nalin@redhat.com>
e4a049
- mark the xinetd config file as config(noreplace)
e4a049
e4a049
* Fri Dec 01 2000 Trond Eivind Glomsrød <teg@redhat.com>
e4a049
- make sure the server is turned off by default
e4a049
e4a049
* Tue Jul 18 2000 Bill Nottingham <notting@redhat.com>
e4a049
- add description & default to xinetd file
e4a049
e4a049
* Wed Jul 12 2000 Prospector <bugzilla@redhat.com>
e4a049
- automatic rebuild
e4a049
e4a049
* Mon Jun 19 2000 Jeff Johnson <jbj@redhat.com>
e4a049
- FHS packaging.
e4a049
- update to 0.17-pre20000412.
e4a049
e4a049
* Tue May 23 2000 Trond Eivind Glomsrød <teg@redhat.com>
e4a049
- moved the xinet entry to the server
e4a049
e4a049
* Mon May 22 2000 Trond Eivind Glomsrød <teg@redhat.com>
e4a049
- add an entry to /etc/xinetd.d
e4a049
e4a049
* Tue May 16 2000 Jeff Johnson <jbj@redhat.com>
e4a049
- permit telnet queries only for exported variables.
e4a049
e4a049
* Fri Mar 24 2000 Bernhard Rosenkraenzer <bero@redhat.com>
e4a049
- 0.17
e4a049
e4a049
* Tue Mar  7 2000 Jeff Johnson <jbj@redhat.com>
e4a049
- rebuild for sparc baud rates > 38400.
e4a049
e4a049
* Fri Feb 11 2000 Bill Nottingham <notting@redhat.com>
e4a049
- fix description
e4a049
e4a049
* Mon Feb 07 2000 Preston Brown <pbrown@redhat.com>
e4a049
- wmconfig gone
e4a049
e4a049
* Wed Feb 02 2000 Cristian Gafton <gafton@redhat.com>
e4a049
- man pages are compressed
e4a049
- fix description
e4a049
e4a049
* Tue Jan  4 2000 Bill Nottingham <notting@redhat.com>
e4a049
- split client and server
e4a049
e4a049
* Tue Dec 21 1999 Jeff Johnson <jbj@redhat.com>
e4a049
- update to 0.16.
e4a049
e4a049
* Sun Oct 10 1999 Matt Wilson <msw@redhat.com>
e4a049
- corrected the Terminal setting of the .desktop (needs to be 'true' not '1')
e4a049
e4a049
* Sat Sep 25 1999 Preston Brown <pbrown@redhat.com>
e4a049
- red hat .desktop entry
e4a049
e4a049
* Sat Aug 21 1999 Jeff Johnson <jbj@redhat.com>
e4a049
- rebuild for 6.1.
e4a049
e4a049
* Wed Aug 18 1999 Bill Nottingham <notting@redhat.com>
e4a049
- don't trust random TERM variables in telnetd (#4560)
e4a049
e4a049
* Wed Jun  2 1999 Jeff Johnson <jbj@redhat.com>
e4a049
- fix (#3098).
e4a049
e4a049
* Thu May 27 1999 Antti Andreimann <Antti.Andreimann@mail.ee>
e4a049
- fixed the problem with escape character (it could not be disabled)
e4a049
- changed the spec file to use %%setup macro for unpacking telnet-client
e4a049
e4a049
* Thu Apr 15 1999 Jeff Johnson <jbj@redhat.com>
e4a049
- use glibc utmp routines.
e4a049
e4a049
* Thu Apr  8 1999 Jeff Johnson <jbj@redhat.com>
e4a049
- fix the fix (wrong way memcpy).
e4a049
e4a049
* Wed Apr  7 1999 Jeff Johnson <jbj@redhat.com>
e4a049
- fix "telnet localhost" bus error on sparc64 (alpha?).
e4a049
e4a049
* Tue Apr  6 1999 Jeff Johnson <jbj@redhat.com>
e4a049
- use OpenBSD telnet client (and fix minor core dump with .telnetrc #247)
e4a049
e4a049
* Thu Mar 25 1999 Erik Troan <ewt@redhat.com>
e4a049
- use openpty in telnetd
e4a049
e4a049
* Sun Mar 21 1999 Cristian Gafton <gafton@redhat.com> 
e4a049
- auto rebuild in the new build environment (release 22)
e4a049
e4a049
* Mon Mar 15 1999 Jeff Johnson <jbj@redhat.com>
e4a049
- compile for 6.0.
e4a049
e4a049
* Fri Apr 24 1998 Prospector System <bugs@redhat.com>
e4a049
- translations modified for de, fr, tr
e4a049
e4a049
* Fri Apr 24 1998 Cristian Gafton <gafton@redhat.com>
e4a049
- compile C++ code using egcs
e4a049
e4a049
* Tue Apr 14 1998 Erik Troan <ewt@redhat.com>
e4a049
- built against new ncurses
e4a049
e4a049
* Wed Oct 29 1997 Donnie Barnes <djb@redhat.com>
e4a049
- added wmconfig entry
e4a049
e4a049
* Tue Jul 15 1997 Erik Troan <ewt@redhat.com>
e4a049
- initial build