ab432b
%global prerel pre6
ab432b
ab432b
Name:      elinks
ab432b
Summary:   A text-mode Web browser
ab432b
Version:   0.12
a47f11
Release:   0.37.%{prerel}%{?dist}
ab432b
License:   GPLv2
ab432b
URL:       http://elinks.or.cz
ab432b
Group:     Applications/Internet
ab432b
Source:    http://elinks.or.cz/download/elinks-%{version}%{prerel}.tar.bz2
ab432b
Source2:   elinks.conf
ab432b
ab432b
BuildRequires: automake
ab432b
BuildRequires: bzip2-devel
ab432b
BuildRequires: expat-devel
ab432b
BuildRequires: gpm-devel
ab432b
BuildRequires: js-devel
ab432b
BuildRequires: krb5-devel
ab432b
BuildRequires: libidn-devel
ab432b
BuildRequires: nss_compat_ossl-devel
ab432b
BuildRequires: pkgconfig
ab432b
BuildRequires: zlib-devel
ab432b
Requires(preun): %{_sbindir}/alternatives
ab432b
Requires(post): coreutils
ab432b
Requires(post): %{_sbindir}/alternatives
ab432b
Requires(postun): coreutils
ab432b
Requires(postun): %{_sbindir}/alternatives
ab432b
Provides:  webclient
ab432b
Obsoletes: links < 1:0.97
ab432b
Provides:  links = 1:0.97-1
ab432b
Provides: text-www-browser
ab432b
ab432b
Patch0: elinks-0.11.0-ssl-noegd.patch
ab432b
Patch1: elinks-0.10.1-utf_8_io-default.patch
ab432b
Patch3: elinks-0.11.0-getaddrinfo.patch
ab432b
Patch4: elinks-0.11.0-sysname.patch
ab432b
Patch5: elinks-0.10.1-xterm.patch
ab432b
Patch7: elinks-0.11.3-macropen.patch
ab432b
Patch8: elinks-scroll.patch
ab432b
Patch9: elinks-nss.patch
ab432b
Patch10: elinks-nss-inc.patch
ab432b
Patch11: elinks-0.12pre5-js185.patch
ab432b
Patch12: elinks-0.12pre5-ddg-search.patch
ab432b
Patch13: elinks-0.12pre6-autoconf.patch
ab432b
ab432b
%description
ab432b
Elinks is a text-based Web browser. Elinks does not display any images,
ab432b
but it does support frames, tables and most other HTML tags. Elinks'
ab432b
advantage over graphical browsers is its speed--Elinks starts and exits
ab432b
quickly and swiftly displays Web pages.
ab432b
ab432b
%prep
ab432b
%setup -q -n %{name}-%{version}%{prerel}
ab432b
ab432b
# Prevent crash when HOME is unset (bug #90663).
ab432b
%patch0 -p1
ab432b
ab432b
# UTF-8 by default
ab432b
%patch1 -p1
ab432b
ab432b
# Make getaddrinfo call use AI_ADDRCONFIG.
ab432b
%patch3 -p1
ab432b
ab432b
# Don't put so much information in the user-agent header string (bug #97273).
ab432b
%patch4 -p1
ab432b
ab432b
# Fix xterm terminal: "Linux" driver seems better than "VT100" (#128105)
ab432b
%patch5 -p1
ab432b
ab432b
# fix for open macro in new glibc
ab432b
%patch7 -p1
ab432b
ab432b
#upstream fix for out of screen dialogs
ab432b
%patch8 -p1
ab432b
ab432b
# Port elinks to use NSS library for cryptography (#346861) - accepted upstream
ab432b
%patch9 -p1
ab432b
ab432b
# Port elinks to use NSS library for cryptography (#346861) - incremental patch
ab432b
%patch10 -p1
ab432b
ab432b
# backported upstream commits f31cf6f, 2844f8b, 218a225, and 12803e4
ab432b
%patch11 -p1
ab432b
ab432b
# add default "ddg" dumb/smart rewrite prefixes for DuckDuckGo (#856348)
ab432b
%patch12 -p1
ab432b
ab432b
# add missing AC_LANG_PROGRAM around the first argument of AC_COMPILE_IFELSE
ab432b
%patch13 -p1
ab432b
ab432b
# remove bogus serial numbers
ab432b
sed -i 's/^# *serial [AM0-9]*$//' acinclude.m4 config/m4/*.m4
ab432b
ab432b
# we need to recreate autotools files because of the NSS patch
ab432b
aclocal -I config/m4
ab432b
autoconf
ab432b
autoheader
ab432b
ab432b
%build
ab432b
export CFLAGS="$RPM_OPT_FLAGS $(getconf LFS_CFLAGS) -D_GNU_SOURCE"
ab432b
%configure %{?rescue:--without-gpm} --without-x --with-gssapi \
ab432b
  --enable-bittorrent --with-nss_compat_ossl --enable-256-colors \
ab432b
  --without-openssl --without-gnutls
ab432b
ab432b
# uncomment to turn off optimizations
ab432b
#sed -i 's/-O2/-O0/' Makefile.config
ab432b
ab432b
MOPTS="V=1"
ab432b
if tty >/dev/null 2>&1; then
ab432b
    # turn on fancy colorized output only when we have a TTY device
ab432b
    MOPTS=
ab432b
fi
ab432b
make %{?_smp_mflags} $MOPTS
ab432b
ab432b
%install
ab432b
make install DESTDIR=$RPM_BUILD_ROOT V=1
ab432b
rm -f $RPM_BUILD_ROOT%{_datadir}/locale/locale.alias
ab432b
mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}
ab432b
install -m 644 %{SOURCE2} $RPM_BUILD_ROOT%{_sysconfdir}/elinks.conf
ab432b
touch $RPM_BUILD_ROOT%{_bindir}/links
ab432b
true | gzip -c > $RPM_BUILD_ROOT%{_mandir}/man1/links.1.gz
ab432b
%find_lang elinks
ab432b
ab432b
%postun
ab432b
if [ "$1" -ge "1" ]; then
ab432b
	links=`readlink %{_sysconfdir}/alternatives/links`
ab432b
	if [ "$links" == "%{_bindir}/elinks" ]; then
ab432b
		%{_sbindir}/alternatives --set links %{_bindir}/elinks
ab432b
	fi
ab432b
fi
ab432b
exit 0
ab432b
ab432b
%post
ab432b
#Set up alternatives files for links
ab432b
%{_sbindir}/alternatives --install %{_bindir}/links links %{_bindir}/elinks 90 \
ab432b
  --slave %{_mandir}/man1/links.1.gz links-man %{_mandir}/man1/elinks.1.gz
ab432b
links=`readlink %{_sysconfdir}/alternatives/links`
ab432b
if [ "$links" == "%{_bindir}/elinks" ]; then
ab432b
	%{_sbindir}/alternatives --set links %{_bindir}/elinks
ab432b
fi
ab432b
ab432b
ab432b
%preun
ab432b
if [ $1 = 0 ]; then
ab432b
	%{_sbindir}/alternatives --remove links %{_bindir}/elinks
ab432b
fi
ab432b
exit 0
ab432b
ab432b
%files -f elinks.lang
ab432b
%doc README SITES TODO COPYING
ab432b
%ghost %verify(not md5 size mtime) %{_bindir}/links
ab432b
%{_bindir}/elinks
ab432b
%ghost %verify(not md5 size mtime) %{_mandir}/man1/links.1.gz
ab432b
%config(noreplace) %{_sysconfdir}/elinks.conf
ab432b
%{_mandir}/man1/elinks.1*
ab432b
%{_mandir}/man5/*
ab432b
ab432b
%changelog
a47f11
* Tue Sep 19 2017 Kamil Dudka <kdudka@redhat.com> - 0.12-0.37.pre6
a47f11
- Rebuilt for js 48-bit VA support (#1439479)
a47f11
3e0c3a
* Fri Jan 24 2014 Daniel Mach <dmach@redhat.com> - 0.12-0.36.pre6
3e0c3a
- Mass rebuild 2014-01-24
3e0c3a
3e0c3a
* Fri Dec 27 2013 Daniel Mach <dmach@redhat.com> - 0.12-0.35.pre6
3e0c3a
- Mass rebuild 2013-12-27
3e0c3a
ab432b
* Mon Feb 25 2013 Kamil Dudka <kdudka@redhat.com> - 0.12-0.34.pre6
ab432b
- update to latest upstream pre-release
ab432b
- drop unneeded patches
ab432b
- fix autoconf warnings
ab432b
- explicitly disable using OpenSSL and GnuTLS
ab432b
ab432b
* Wed Feb 13 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.12-0.33.pre5
ab432b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
ab432b
ab432b
* Fri Jan 04 2013 Kamil Dudka <kdudka@redhat.com> - 0.12-0.32.pre5
ab432b
- do not delegate GSSAPI credentials (CVE-2012-4545)
ab432b
ab432b
* Mon Oct 08 2012 Kamil Dudka <kdudka@redhat.com> - 0.12-0.31.pre5
ab432b
- add default "ddg" dumb/smart rewrite prefixes for DuckDuckGo (#856348)
ab432b
ab432b
* Tue Aug 28 2012 Kamil Dudka <kdudka@redhat.com> - 0.12-0.30.pre5
ab432b
- fix specfile issues reported by the fedora-review script
ab432b
ab432b
* Wed Jul 18 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.12-0.29.pre5
ab432b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
ab432b
ab432b
* Fri Mar 09 2012 Kamil Dudka <kdudka@redhat.com> - 0.12-0.28.pre5
ab432b
- do not crash if add_heartbeat() returned NULL (#798103)
ab432b
ab432b
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.12-0.27.pre5
ab432b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
ab432b
ab432b
* Fri May 06 2011 Kamil Dudka <kdudka@redhat.com> - 0.12-0.26.pre5
ab432b
- improve the js-1.8.5 patch (upstream commit 218a225)
ab432b
ab432b
* Thu Apr 21 2011 Kamil Dudka <kdudka@redhat.com> - 0.12-0.25.pre5
ab432b
- port to js-1.8.5 API (upstream commits f31cf6f and 2844f8b)
ab432b
ab432b
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.12-0.24.pre5
ab432b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
ab432b
ab432b
* Wed Apr 07 2010 Kamil Dudka <kdudka@redhat.com> - 0.12-0.23.pre5
ab432b
- do not print control characters to build logs
ab432b
- avoid aclocal warnings
ab432b
ab432b
* Thu Jan 07 2010 Kamil Dudka <kdudka@redhat.com> - 0.12-0.22.pre5
ab432b
- remove patch for configure script to find OpenSSL (we use NSS now)
ab432b
- remove buildrequires for nss-devel (#550770)
ab432b
ab432b
* Sun Dec 27 2009 Kamil Dudka <kdudka@redhat.com> 0.12-0.21.pre5
ab432b
- add buildrequires for js-devel (#550717) and zlib-devel
ab432b
- build support for 256 color terminal
ab432b
ab432b
* Mon Dec 14 2009 Ondrej Vasik <ovasik@redhat.com> 0.12-0.20.pre5
ab432b
- Add buildrequires for gpm-devel to enable gpm support(#547064)
ab432b
ab432b
* Fri Aug 14 2009 Orion Poplawski <orion@cora.nwra.com> 0.12-0.19.pre5
ab432b
- Add Requires(post/postun): coreutils for readlink
ab432b
ab432b
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.12-0.18.pre5
ab432b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
ab432b
ab432b
* Wed Jul 08 2009 Ondrej Vasik <ovasik@redhat.com> 0.12-0.17.pre5
ab432b
- new upstream bugfix prerelease
ab432b
ab432b
* Mon Jun 01 2009 Ondrej Vasik <ovasik@redhat.com> 0.12-0.16.pre4
ab432b
- new upstream bugfix prerelease
ab432b
- defuzz patches
ab432b
ab432b
* Wed Apr 29 2009 Kamil Dudka <kdudka@redhat.com> 0.12-0.15.pre3
ab432b
- try to load default NSS root certificates if the configuration option
ab432b
  connection.ssl.trusted_ca_file is set to an empty string (#497788)
ab432b
ab432b
* Tue Apr 28 2009 Ondrej Vasik <ovasik@redhat.com> 0.12-0.14.pre3
ab432b
- enable certificate verification by default via configuration
ab432b
  file(#495532)
ab432b
ab432b
* Tue Apr 28 2009 Kamil Dudka <kdudka@redhat.com> 0.12-0.13.pre3
ab432b
- use appropriate BuildRequires for nss_compat_ossl (#495532)
ab432b
- support for trusted CA certificates loading from file in PEM format
ab432b
ab432b
* Fri Apr 03 2009 Ondrej Vasik <ovasik@redhat.com> 0.12-0.12.pre3
ab432b
- use word Elinks instead of Links in package description
ab432b
ab432b
* Mon Mar 30 2009 Ondrej Vasik <ovasik@redhat.com> 0.12-0.11.pre3
ab432b
- new upstream bugfix prerelease
ab432b
- defuzz patches
ab432b
ab432b
* Wed Mar 25 2009 Ondrej Vasik <ovasik@redhat.com> 0.12-0.10.pre2
ab432b
- use better obsoletes/provides for links, use alternatives for
ab432b
  links manpage and binary(#470703)
ab432b
ab432b
* Tue Feb 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.12-0.9.pre2
ab432b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
ab432b
ab432b
* Fri Jan 16 2009 Tomas Mraz <tmraz@redhat.com> 0.12-0.8.pre2
ab432b
- rebuild with new openssl
ab432b
ab432b
* Wed Jan 14 2009 Ondrej Vasik <ovasik@redhat.com> 0.12-0.7.pre2
ab432b
- versioned obsoletes and provides for links
ab432b
ab432b
* Wed Oct  1 2008 Kamil Dudka <kdudka@redhat.com> 0.12-0.6.pre2
ab432b
- port elinks to use NSS library for cryptography (#346861)
ab432b
ab432b
* Mon Sep 29 2008 Ondrej Vasik <ovasik@redhat.com> 0.12-0.5.pre2
ab432b
- new upstream bugfix prerelease
ab432b
- Removed already applied patches for tabreload and bittorrent
ab432b
ab432b
* Mon Sep  1 2008 Ondrej Vasik <ovasik@redhat.com> 0.12-0.4.pre1
ab432b
- upstream fix for bittorrent protocol
ab432b
- upstream fix for out of screen bittorrent dialog texts
ab432b
ab432b
* Tue Jul 15 2008 Ondrej Vasik <ovasik@redhat.com> 0.12-0.3.pre1
ab432b
- get rid off fuzz in patches
ab432b
ab432b
* Tue Jul 15 2008 Ondrej Vasik <ovasik@redhat.com> 0.12-0.2.pre1
ab432b
- fix a crash when opening tab during page reload
ab432b
ab432b
* Tue Jul  1 2008 Ondrej Vasik <ovasik@redhat.com> 0.12-0.1.pre1
ab432b
- unstable elinks-0.12 pre1, solves several long-term issues 
ab432b
  unsolvable (or very hard to solve) in 0.11.4 (like #173411),
ab432b
  in general is elinks-0.12pre1 considered better than 0.11.4
ab432b
- dropped patches negotiate-auth, chunkedgzip - included in 0.12pre1,
ab432b
  modified few others due source code changes
ab432b
ab432b
* Sat Jun 21 2008 Ondrej Vasik <ovasik@redhat.com> 0.11.4-1
ab432b
- new stable upstream release
ab432b
ab432b
* Thu Mar  6 2008 Ondrej Vasik <ovasik@redhat.com> 0.11.4-0.4.rc1
ab432b
- new upstream release candidate marked stable
ab432b
ab432b
* Thu Feb 21 2008 Ondrej Vasik <ovasik@redhat.com> 0.11.4-0.3.rc0
ab432b
- fixed broken output for gzipped chunked pages(#410801)
ab432b
ab432b
* Thu Feb 07 2008 Ondrej Vasik <ovasik@redhat.com> 0.11.4-0.2.rc0
ab432b
- used -D_GNU_SOURCE instead of ugly hack/patch to 
ab432b
  have NI_MAXPATH defined
ab432b
ab432b
* Wed Feb 06 2008 Ondrej Vasik <ovasik@redhat.com> 0.11.4-0.1.rc0
ab432b
- new version marked stable by upstream 0.11.4rc0
ab432b
- enabled experimental bittorent support(#426702)
ab432b
ab432b
* Wed Dec 05 2007 Ondrej Vasik <ovasik@redhat.com> 0.11.3-7
ab432b
- rebuilt because of new OpenSSL
ab432b
ab432b
* Thu Oct 11 2007 Ondrej Vasik <ovasik@redhat.com> 0.11.3-6
ab432b
- generalized text-www-browser requirements(#174566)
ab432b
ab432b
* Tue Aug 28 2007 Ondrej Vasik <ovasik@redhat.com> 0.11.3-5
ab432b
- rebuilt because of expat 2.0
ab432b
ab432b
* Wed Aug 22 2007 Ondrej Vasik <ovasik@redhat.com> 0.11.3-4
ab432b
- rebuilt for F8
ab432b
- changed license tag to GPLv2
ab432b
ab432b
* Thu Aug  9 2007 Ondrej Vasik <ovasik@redhat.com> 0.11.3-3
ab432b
- fix of open macro(new glibc) by Joe Orton
ab432b
ab432b
* Fri Jul 27 2007 Ondrej Vasik <ovasik@redhat.com> 0.11.3-2
ab432b
- cleanup of duplicates in buildreq, added license file to doc 
ab432b
- (package review by Tyler Owen(#225725))
ab432b
ab432b
* Tue Jun  5 2007 Ondrej Vasik <ovasik@redhat.com> 0.11.3-1
ab432b
- update to new upstream version
ab432b
- removed patch for #210103 , included in upstream release
ab432b
- updated patch elinks-0.11.1-negotiate.patch to pass build
ab432b
ab432b
* Mon Mar 26 2007 Karel Zak <kzak@redhat.com> 0.11.2-1
ab432b
- update to new upstream version
ab432b
- cleanup spec file
ab432b
ab432b
* Wed Oct 11 2006 Karel Zak <kzak@redhat.com> 0.11.1-5
ab432b
- fix #210103 - elinks crashes when given bad HTTP_PROXY
ab432b
ab432b
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 0.11.1-4.1
ab432b
- rebuild
ab432b
ab432b
* Mon Jun 12 2006 Karel Zak <kzak@redhat.com> 0.11.1-4
ab432b
- improved negotiate-auth patch (faster now)
ab432b
ab432b
* Fri Jun  9 2006 Karel Zak <kzak@redhat.com> 0.11.1-3
ab432b
- added negotiate-auth (GSSAPI) support -- EXPERIMENTAL!
ab432b
ab432b
* Mon May 29 2006 Karel Zak <kzak@redhat.com> 0.11.1-2
ab432b
- update to new upstream version
ab432b
ab432b
* Wed May 17 2006 Karsten Hopp <karsten@redhat.de> 0.11.0-3
ab432b
- add buildrequires bzip2-devel, expat-devel,libidn-devel
ab432b
ab432b
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 0.11.0-2.2
ab432b
- bump again for double-long bug on ppc(64)
ab432b
ab432b
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 0.11.0-2.1
ab432b
- rebuilt for new gcc4.1 snapshot and glibc changes
ab432b
ab432b
* Tue Jan 10 2006 Karel Zak <kzak@redhat.com> 0.11.0-2
ab432b
- use upstream version of srcdir.patch
ab432b
ab432b
* Tue Jan 10 2006 Karel Zak <kzak@redhat.com> 0.11.0-1
ab432b
- update to new upstream version
ab432b
- fix 0.11.0 build system (srcdir.patch)
ab432b
- regenerate patches:
ab432b
     elinks-0.11.0-getaddrinfo.patch, 
ab432b
     elinks-0.11.0-ssl-noegd.patch,
ab432b
     elinks-0.11.0-sysname.patch,
ab432b
     elinks-0.11.0-union.patch
ab432b
ab432b
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com> 0.10.6-2.1
ab432b
- rebuilt
ab432b
ab432b
* Wed Nov  9 2005 Karel Zak <kzak@redhat.com> 0.10.6-2
ab432b
- rebuild (against new openssl)
ab432b
ab432b
* Thu Sep 29 2005 Karel Zak <kzak@redhat.com> 0.10.6-1
ab432b
- update to new upstream version
ab432b
ab432b
* Tue May 17 2005 Karel Zak <kzak@redhat.com> 0.10.3-3
ab432b
- fix #157300 - Strange behavior on ppc64 (patch by Miloslav Trmac)
ab432b
ab432b
* Tue May 10 2005 Miloslav Trmac <mitr@redhat.com> - 0.10.3-2
ab432b
- Fix checking for numeric command prefix (#152953, patch by Jonas Fonseca)
ab432b
- Fix invalid C causing assertion errors on ppc and ia64 (#156647)
ab432b
ab432b
* Mon Mar 21 2005 Karel Zak <kzak@redhat.com> 0.10.3-1
ab432b
- sync with upstream; stable 0.10.3
ab432b
ab432b
* Sat Mar  5 2005 Karel Zak <kzak@redhat.com> 0.10.2-2
ab432b
- rebuilt
ab432b
ab432b
* Tue Feb  8 2005 Karel Zak <kzak@redhat.com> 0.10.2-1
ab432b
- sync with upstream; stable 0.10.2
ab432b
ab432b
* Fri Jan 28 2005 Karel Zak <kzak@redhat.com> 0.10.1-1
ab432b
- sync with upstream; stable 0.10.1
ab432b
ab432b
* Thu Oct 14 2004 Karel Zak <kzak@redhat.com> 0.9.2-2
ab432b
- the "Linux" driver seems better than "VT100" for xterm (#128105)
ab432b
ab432b
* Wed Oct  6 2004 Karel Zak <kzak@redhat.com> 0.9.2-1
ab432b
- upload new upstream tarball with stable 0.9.2 release
ab432b
ab432b
* Mon Sep 20 2004 Jindrich Novy <jnovy@redhat.com> 0.9.2-0.rc7.4
ab432b
- 0.9.2rc7.
ab432b
- changed summary in spec to get rid of #41732, #61499
ab432b
ab432b
* Mon Sep 13 2004 Tim Waugh <twaugh@redhat.com> 0.9.2-0.rc4.3
ab432b
- Avoid symbol clash (bug #131170).
ab432b
ab432b
* Fri Aug  6 2004 Tim Waugh <twaugh@redhat.com> 0.9.2-0.rc4.2
ab432b
- 0.9.2rc4.
ab432b
ab432b
* Mon Jul 12 2004 Tim Waugh <twaugh@redhat.com> 0.9.2-0.rc2.2
ab432b
- Fix elinks -dump -stdin (bug #127624).
ab432b
ab432b
* Thu Jul  1 2004 Tim Waugh <twaugh@redhat.com> 0.9.2-0.rc2.1
ab432b
- 0.9.2rc2.
ab432b
ab432b
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
ab432b
- rebuilt
ab432b
ab432b
* Wed Jun  2 2004 Tim Waugh <twaugh@redhat.com> 0.9.1-3
ab432b
- Build with LFS support (bug #125064).
ab432b
ab432b
* Fri May 28 2004 Tim Waugh <twaugh@redhat.com> 0.9.1-2
ab432b
- Use UTF-8 by default (bug #76445).
ab432b
ab432b
* Thu Mar 11 2004 Tim Waugh <twaugh@redhat.com> 0.9.1-1
ab432b
- 0.9.1.
ab432b
- Use %%find_lang.
ab432b
ab432b
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
ab432b
- rebuilt
ab432b
ab432b
* Mon Dec  8 2003 Tim Waugh <twaugh@redhat.com> 0.4.3-1
ab432b
- 0.4.3.
ab432b
- Updated pkgconfig patch.
ab432b
ab432b
* Mon Aug 11 2003 Tim Waugh <twaugh@redhat.com> 0.4.2-7.1
ab432b
- Rebuilt.
ab432b
ab432b
* Mon Aug 11 2003 Tim Waugh <twaugh@redhat.com> 0.4.2-7
ab432b
- Don't require XFree86-libs (bug #102072).
ab432b
ab432b
* Tue Jul 22 2003 Nalin Dahyabhai <nalin@redhat.com> 0.4.2-6.2
ab432b
- rebuild
ab432b
ab432b
* Thu Jun 12 2003 Tim Waugh <twaugh@redhat.com> 0.4.2-6.1
ab432b
- Rebuilt.
ab432b
ab432b
* Thu Jun 12 2003 Tim Waugh <twaugh@redhat.com> 0.4.2-6
ab432b
- Make getaddrinfo call use AI_ADDRCONFIG.
ab432b
- Don't put so much information in the user-agent header string (bug #97273).
ab432b
ab432b
* Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com>
ab432b
- rebuilt
ab432b
ab432b
* Mon Jun  2 2003 Tim Waugh <twaugh@redhat.com> 0.4.2-4.1
ab432b
- Rebuild again.
ab432b
ab432b
* Mon Jun  2 2003 Tim Waugh <twaugh@redhat.com> 0.4.2-4
ab432b
- Rebuild.
ab432b
ab432b
* Mon May 12 2003 Tim Waugh <twaugh@redhat.com> 0.4.2-3
ab432b
- Prevent crash when HOME is unset (bug #90663).
ab432b
ab432b
* Sun May 04 2003 Florian La Roche <Florian.LaRoche@redhat.de> 0.4.2-2
ab432b
- use relative symlinks to elinks
ab432b
ab432b
* Wed Feb  5 2003 Tim Waugh <twaugh@redhat.com> 0.4.2-1
ab432b
- 0.4.2 (bug #83273).
ab432b
ab432b
* Wed Jan 22 2003 Tim Powers <timp@redhat.com> 0.3.2-5
ab432b
- rebuilt
ab432b
ab432b
* Thu Jan 16 2003 Tim Waugh <twaugh@redhat.com>
ab432b
- Fix URL (bug #81987).
ab432b
ab432b
* Tue Jan  7 2003 Nalin Dahyabhai <nalin@redhat.com> 0.3.2-4
ab432b
- rebuild
ab432b
ab432b
* Mon Dec 23 2002 Tim Waugh <twaugh@redhat.com> 0.3.2-3
ab432b
- Fix bug #62368.
ab432b
ab432b
* Thu Dec 12 2002 Nalin Dahyabhai <nalin@redhat.com>
ab432b
- use openssl's pkg-config data, if available
ab432b
ab432b
* Wed Nov 20 2002 Tim Powers <timp@redhat.com> 0.3.2-2
ab432b
- rebuild on all arches
ab432b
ab432b
* Tue Aug 20 2002 Jakub Jelinek <jakub@redhat.com> 0.3.2-1
ab432b
- update to 0.3.2 to fix the DNS Ctrl-C segfaults
ab432b
- update URLs, the project moved
ab432b
- include man page
ab432b
ab432b
* Fri Jun 21 2002 Tim Powers <timp@redhat.com>
ab432b
- automated rebuild
ab432b
ab432b
* Thu May 23 2002 Tim Powers <timp@redhat.com>
ab432b
- automated rebuild
ab432b
ab432b
* Thu Jan 24 2002 Tim Powers <timp@redhat.com>
ab432b
- rebuilt against new openssl
ab432b
ab432b
* Wed Jan 09 2002 Tim Powers <timp@redhat.com>
ab432b
- automated rebuild
ab432b
ab432b
* Wed Jan  2 2002 Preston Brown <pbrown@redhat.com> 0.96-4
ab432b
- cookie fix
ab432b
ab432b
* Thu Sep 13 2001 Bernhard Rosenkraenzer <bero@redhat.com> 0.96-3
ab432b
- Save some more space in rescue mode
ab432b
ab432b
* Wed Jul 18 2001 Bernhard Rosenkraenzer <bero@redhat.com> 0.96-2
ab432b
- Add the links manual from links.sourceforge.net (RFE #49228)
ab432b
ab432b
* Tue Jul  3 2001 Bernhard Rosenkraenzer <bero@redhat.com> 0.96-1
ab432b
- update to 0.96
ab432b
ab432b
* Fri Jun 22 2001 Nalin Dahyabhai <nalin@redhat.com>
ab432b
- actually run make in build phase
ab432b
ab432b
* Tue Jun 12 2001 Nalin Dahyabhai <nalin@redhat.com>
ab432b
- rebuild in new environment
ab432b
ab432b
* Fri Mar  2 2001 Nalin Dahyabhai <nalin@redhat.com>
ab432b
- rebuild in new environment
ab432b
ab432b
* Tue Jan  9 2001 Bernhard Rosenkraenzer <bero@redhat.com>
ab432b
- 0.95
ab432b
ab432b
* Mon Jan  1 2001 Bernhard Rosenkraenzer <bero@redhat.com>
ab432b
- 0.94 final
ab432b
ab432b
* Sun Dec 24 2000 Bernhard Rosenkraenzer <bero@redhat.com>
ab432b
- pre9
ab432b
ab432b
* Mon Dec 10 2000 Preston Brown <pbrown@redhat.com>
ab432b
- Upgraded to pre8.
ab432b
ab432b
* Tue Dec  5 2000 Bernhard Rosenkraenzer <bero@redhat.com>
ab432b
- 0.94pre7
ab432b
- Minor fixes to the specfile (s/Copyright:/License:/)
ab432b
- merge rescue stuff
ab432b
ab432b
* Fri Nov 24 2000 Bernhard Rosenkraenzer <bero@redhat.com>
ab432b
- 0.94pre5
ab432b
ab432b
* Wed Nov 15 2000 Bernhard Rosenkraenzer <bero@redhat.com>
ab432b
- 0.94pre4
ab432b
ab432b
* Tue Oct 24 2000 Bernhard Rosenkraenzer <bero@redhat.com>
ab432b
- 0.94pre1
ab432b
ab432b
* Wed Aug  2 2000 Bernhard Rosenkraenzer <bero@redhat.com>
ab432b
- 0.92 (needed - prior versions won't display XHTML properly)
ab432b
ab432b
* Thu Jul 20 2000 Nalin Dahyabhai <nalin@redhat.com>
ab432b
- rebuild in new environment to work around bugs
ab432b
ab432b
* Wed Jul 12 2000 Prospector <bugzilla@redhat.com>
ab432b
- automatic rebuild
ab432b
ab432b
* Thu Jun 15 2000 Bernhard Rosenkraenzer <bero@redhat.com>
ab432b
- 0.84
ab432b
ab432b
* Sun Jun 11 2000 Preston Brown <pbrown@redhat.com>
ab432b
- provides virtual package webclient.
ab432b
ab432b
* Thu Jan  6 2000 Bernhard Rosenkraenzer <bero@redhat.com>
ab432b
- initial RPM