21ab9e6
Summary: A tool for creating scanners (text pattern recognizers)
cvsdist 34fdda2
Name: flex
Petr Machata 9059a93
Version: 2.5.37
509ceeb
Release: 6%{?dist}
Petr Machata d59e4fd
# parse.c and parse.h are under GPLv3+ with exception which allows
Petr Machata d59e4fd
#	relicensing.  Since flex is shipped under BDS-style license,
Petr Machata d59e4fd
#	let's  assume that the relicensing was done.
Petr Machata d59e4fd
# gettext.h (copied from gnulib) is under LGPLv2+
Petr Machata d59e4fd
License: BSD and LGPLv2+
cvsdist 34fdda2
Group: Development/Tools
a084c51
URL: http://flex.sourceforge.net/
6689963
Source: http://downloads.sourceforge.net/%{name}/%{name}-%{version}.tar.bz2
Petr Machata 10db3f4
Petr Machata 10db3f4
# https://sourceforge.net/tracker/?func=detail&aid=3546447&group_id=97492&atid=618177
Petr Machata 9c35305
Patch0: flex-2.5.36-bison-2.6.1.patch
Petr Machata 10db3f4
Petr Machata 122421a
# https://bugzilla.redhat.com/show_bug.cgi?id=925801
Petr Machata 122421a
Patch1: flex-2.5.37-aarch64.patch
Petr Machata 122421a
Petr Machata a3088c9
# https://bugzilla.redhat.com/show_bug.cgi?id=993447
Petr Machata a3088c9
Patch2: flex-2.5.37-types.patch
Petr Machata a3088c9
21e70cd
#fix test-bison-yylloc and test-bison-yylval test failures
21e70cd
Patch3: 0001-bison-test-fixes-Do-not-use-obsolete-bison-construct.patch
21e70cd
a084c51
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
02acd3c
Requires: m4
18076a6
BuildRequires: gettext bison m4
06c9f9f
Requires(post): /sbin/install-info
06c9f9f
Requires(preun): /sbin/install-info
cvsdist 34fdda2
cvsdist 34fdda2
%description
cvsdist 34fdda2
The flex program generates scanners.  Scanners are programs which can
cvsdist 34fdda2
recognize lexical patterns in text.  Flex takes pairs of regular
cvsdist 34fdda2
expressions and C code as input and generates a C source file as
cvsdist 34fdda2
output.  The output file is compiled and linked with a library to
cvsdist 34fdda2
produce an executable.  The executable searches through its input for
cvsdist 34fdda2
occurrences of the regular expressions.  When a match is found, it
cvsdist 34fdda2
executes the corresponding C code.  Flex was designed to work with
cvsdist 34fdda2
both Yacc and Bison, and is used by many programs as part of their
cvsdist 34fdda2
build process.
cvsdist 34fdda2
cvsdist 34fdda2
You should install flex if you are going to use your system for
cvsdist 34fdda2
application development.
cvsdist 34fdda2
8c1a39a
# We keep the libraries in separate sub-package to allow for multilib
8c1a39a
# installations of flex.
Petr Machata 0763a46
%package devel
8c1a39a
Summary: Libraries for flex scanner generator
8c1a39a
Group: Development/Tools
Petr Machata 0763a46
Obsoletes: flex-static < 2.5.35-15
Petr Machata 0763a46
Provides: flex-static
8c1a39a
Petr Machata 0763a46
%description devel
8c1a39a
8c1a39a
This package contains the library with default implementations of
8c1a39a
`main' and `yywrap' functions that the client binary can choose to use
8c1a39a
instead of implementing their own.
8c1a39a
Petr Machata 9c35305
%package doc
Petr Machata 9c35305
Summary: Documentation for flex scanner generator
Petr Machata 9c35305
Group: Documentation
Petr Machata 9c35305
Petr Machata 9c35305
%description doc
Petr Machata 9c35305
Petr Machata 9c35305
This package contains documentation for flex scanner generator in
Petr Machata 9c35305
plain text and PDF formats.
Petr Machata 9c35305
cvsdist 34fdda2
%prep
06c9f9f
%setup -q
023c59b
%patch0 -p1
Petr Machata 122421a
%patch1 -p1
Petr Machata a3088c9
%patch2 -p1
21e70cd
%patch3 -p1
Petr Machata 9c35305
Petr Machata 9c35305
%global flexdocdir %{_datadir}/doc/flex-doc-%{version}
cvsdist 34fdda2
cvsdist 34fdda2
%build
823c989
%configure --disable-dependency-tracking CFLAGS="-fPIC $RPM_OPT_FLAGS"
6b16be6
make %{?_smp_mflags}
cvsdist 34fdda2
cvsdist 34fdda2
%install
cvsdist 34fdda2
rm -rf $RPM_BUILD_ROOT
Petr Machata 9c35305
make DESTDIR=$RPM_BUILD_ROOT docdir=%{flexdocdir} install
06c9f9f
rm -f $RPM_BUILD_ROOT/%{_infodir}/dir
Petr Machata 9c35305
rm -f $RPM_BUILD_ROOT/%{flexdocdir}/{README.cvs,TODO}
cvsdist 34fdda2
cvsdist 34fdda2
( cd ${RPM_BUILD_ROOT}
cvsdist 1f5eb80
  ln -sf flex .%{_bindir}/lex
a084c51
  ln -sf flex .%{_bindir}/flex++
cvsdist 34fdda2
  ln -s flex.1 .%{_mandir}/man1/lex.1
cvsdist 34fdda2
  ln -s flex.1 .%{_mandir}/man1/flex++.1
cvsdist 1f5eb80
  ln -s libfl.a .%{_libdir}/libl.a
cvsdist 34fdda2
)
cvsdist 34fdda2
a084c51
%find_lang flex
a084c51
a084c51
%post
feda0ad
if [ -f %{_infodir}/flex.info.gz ]; then # for --excludedocs
feda0ad
   /sbin/install-info %{_infodir}/flex.info.gz --dir-file=%{_infodir}/dir ||:
feda0ad
fi
a084c51
06c9f9f
%preun
06c9f9f
if [ $1 = 0 ]; then
feda0ad
    if [ -f %{_infodir}/flex.info.gz ]; then # for --excludedocs
feda0ad
	/sbin/install-info --delete %{_infodir}/%{name}.info.gz %{_infodir}/dir ||:
feda0ad
    fi
06c9f9f
fi
a084c51
5116433
%check
5116433
echo ============TESTING===============
86ea360
make check
5116433
echo ============END TESTING===========
d8a5e2c
cvsdist 34fdda2
%clean
cvsdist 34fdda2
rm -rf ${RPM_BUILD_ROOT}
cvsdist 34fdda2
21ab9e6
%files -f flex.lang
cvsdist 34fdda2
%defattr(-,root,root)
cvsdist 34fdda2
%doc COPYING NEWS README
cvsdist 1f5eb80
%{_bindir}/*
cvsdist 34fdda2
%{_mandir}/man1/*
cvsdist 1f5eb80
%{_includedir}/FlexLexer.h
a084c51
%{_infodir}/flex.info*
cvsdist 34fdda2
Petr Machata 0763a46
%files devel
8c1a39a
%defattr(-,root,root)
8c1a39a
%{_libdir}/*.a
8c1a39a
Petr Machata 9c35305
%files doc
Petr Machata 9c35305
%defattr(-,root,root)
Petr Machata 9c35305
%{_datadir}/doc/flex-doc-%{version}
Petr Machata 9c35305
cvsdist 34fdda2
%changelog
509ceeb
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.5.37-6
509ceeb
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
509ceeb
21e70cd
* Wed Apr 16 2014 Patsy Franklin <pfrankli@redhat.com> - 2.5.37-5
21e70cd
- Add a patch to remove obsolete bison constructs YYLEX_PARAM and 
21e70cd
  YYPARSE_PARAM. Use %lex-param, %parse-param, or %param.
21e70cd
Petr Machata a3088c9
* Tue Sep  3 2013 Petr Machata <pmachata@redhat.com> - 2.5.37-4
Petr Machata a3088c9
- Add a patch for "comparison between signed and unsigned" warnings
Petr Machata a3088c9
  that GCC produces when compiling flex-generated scanners
Petr Machata a3088c9
  (flex-2.5.37-types.patch)
Petr Machata a3088c9
d39470d
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.5.37-3
d39470d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
d39470d
Petr Machata 122421a
* Thu Apr  4 2013 Petr Machata <pmachata@redhat.com> - 2.5.37-2
Petr Machata 122421a
- Update config.sub and config.guess to support aarch64
Petr Machata 122421a
Petr Machata 9059a93
* Wed Mar 20 2013 Petr Machata <pmachata@redhat.com> - 2.5.37-1
Petr Machata 9059a93
- Rebase to 2.5.37
Petr Machata 9059a93
0e75ec3
* Wed Feb 13 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.5.36-3
0e75ec3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
0e75ec3
Petr Machata e634b42
* Fri Oct 26 2012 Petr Machata <pmachata@redhat.com> - 2.5.36-2
Petr Machata e634b42
- Bump for rebuild
Petr Machata e634b42
Petr Machata 9c35305
* Tue Jul 31 2012 Petr Machata <pmachata@redhat.com> - 2.5.36-1
Petr Machata 9c35305
- Rebase to 2.5.36
Petr Machata 9c35305
  - Drop flex-2.5.35-sign.patch, flex-2.5.35-hardening.patch,
Petr Machata 9c35305
    flex-2.5.35-gcc44.patch, flex-2.5.35-missing-prototypes.patch
Petr Machata 9c35305
  - Add flex-2.5.36-bison-2.6.1.patch
Petr Machata 9c35305
  - Add a subpackage doc
Petr Machata 9c35305
- Resolves #842073
Petr Machata 9c35305
1d38037
* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.5.35-16
1d38037
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
1d38037
Petr Machata 0763a46
* Mon Mar 12 2012 Petr Machata <pmachata@redhat.com> - 2.5.35-15
Petr Machata 0763a46
- Rename flex-static to flex-devel so that it gets to repositories of
Petr Machata 0763a46
  minor multi-lib arch (i386 on x86_64 etc.)
Petr Machata 0763a46
- Resolves: #674301
Petr Machata 0763a46
6feae83
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.5.35-14
6feae83
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
6feae83
bcf541b
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.5.35-13
bcf541b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
bcf541b
Petr Machata d6e92f3
* Tue Aug 17 2010 Petr Machata <pmachata@redhat.com> - 2.5.35-12
Petr Machata d6e92f3
- Drop the dependency of core package on flex-static.
Petr Machata d6e92f3
- Resolves: #624549
Petr Machata d6e92f3
0e24cc1
* Wed Jul 14 2010 Petr Machata <pmachata@redhat.com> - 2.5.35-11
0e24cc1
- Forgot that the changes in flex.skl won't propagate to skel.c
0e24cc1
- Resolves: #612465
0e24cc1
758aa39
* Tue Jul 13 2010 Petr Machata <pmachata@redhat.com> - 2.5.35-10
758aa39
- Declare yyget_column and yyset_column in reentrant mode.
758aa39
- Resolves: #612465
758aa39
8c1a39a
* Wed Jan 20 2010 Petr Machata <pmachata@redhat.com> - 2.5.35-9
8c1a39a
- Move libraries into a sub-package of their own.
8c1a39a
6689963
* Tue Jan 12 2010 Petr Machata <pmachata@redhat.com> - 2.5.35-8
6689963
- Add source URL
6689963
feda0ad
* Mon Aug 24 2009 Petr Machata <pmachata@redhat.com> - 2.5.35-7
feda0ad
- Fix installation with --excludedocs
feda0ad
- Resolves: #515928
feda0ad
a5bfa24
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.5.35-6
a5bfa24
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
a5bfa24
0547dfe
* Mon Apr 20 2009 Debarshi Ray <rishi@fedoraproject.org> - 2.5.35-5
db7d016
- Resolves: #496548.
db7d016
db7d016
* Mon Apr 20 2009 Petr Machata <pmachata@redhat.com> - 2.5.35-4
db7d016
- Get rid of warning caused by ignoring return value of fwrite() in
db7d016
  ECHO macro.  Debian patch.
db7d016
- Resolves: #484961
db7d016
63237cc
* Tue Feb 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.5.35-3
63237cc
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
63237cc
023c59b
* Mon May 12 2008 Petr Machata <pmachata@redhat.com> - 2.5.35-2
023c59b
- Resolves: #445950
023c59b
a5daacb
* Wed Feb 27 2008 Petr Machata <pmachata@redhat.com> - 2.5.35-1
a5daacb
- Rebase to 2.5.35. Drop two patches.
a5daacb
- Resolves: #434961
a5daacb
- Resolves: #435047
a5daacb
fe59d6d
* Mon Feb 25 2008 Petr Machata <pmachata@redhat.com> - 2.5.34-1
fe59d6d
- Rebase to 2.5.34. Drop five patches.
fe59d6d
- Resolves: #434676
fe59d6d
37c97f3
* Mon Feb 11 2008 Petr Machata <pmachata@redhat.com> - 2.5.33-17
37c97f3
- Generate prototypes for accessor functions.  Upstream patch.
37c97f3
- Related: #432203
37c97f3
0eef73d
* Mon Feb  4 2008 Petr Machata <pmachata@redhat.com> - 2.5.33-16
0eef73d
- Fix comparison between signed and unsigned in generated scanner.
0eef73d
  Patch by Roland McGrath.
0eef73d
- Resolves: #431151
0eef73d
18076a6
* Tue Jan 15 2008 Stepan Kasal <skasal@redhat.com> - 2.5.33-15
18076a6
- Do not run autogen.sh, it undoes the effect of includedir patch.
18076a6
- Adapt test-linedir-r.patch so that it fixes Makefile.in and works
18076a6
  even though autogen.sh is not run.
18076a6
823c989
* Thu Jan 10 2008 Stepan Kasal <skasal@redhat.com> - 2.5.33-14
823c989
- Insert the "-fPIC" on configure command-line.
823c989
- Drop the -fPIC patch.
823c989
356ece1
* Tue Jan  8 2008 Petr Machata <pmachata@redhat.com> - 2.5.33-13
356ece1
- Patch with -fPIC only after the autogen.sh is run.
356ece1
95a67e8
* Thu Jan  3 2008 Petr Machata <pmachata@redhat.com> - 2.5.33-12
95a67e8
- Run autogen.sh before the rest of the build.
bbcb9d5
- Add BR autoconf automake gettext-devel.
95a67e8
f4cff07
* Thu Aug 30 2007 Petr Machata <pmachata@redhat.com> - 2.5.33-11
f4cff07
- Add BR gawk
f4cff07
- Fix use of awk in one of the tests
f4cff07
2459eb8
* Wed Aug 29 2007 Fedora Release Engineering <rel-eng at fedoraproject dot org> - 2.5.33-10
2459eb8
- Rebuild for selinux ppc32 issue.
2459eb8
6b16be6
* Fri Jun 22 2007 Petr Machata <pmachata@redhat.com> - 2.5.33-9
6b16be6
- Remove wrong use of @includedir@ in Makefile.in.
6b16be6
- Spec cleanups.
6b16be6
- Related: #225758
6b16be6
2d25a59
* Fri Jun 22 2007 Petr Machata <pmachata@redhat.com> - 2.5.33-8
2d25a59
- Don't emit yy-prefixed variables in C++ mode.  Thanks Srinivas Aji.
2d25a59
- Related: #242742
2d25a59
- Related: #244259
2d25a59
9c030ea
* Fri May 11 2007 Petr Machata <pmachata@redhat.com> - 2.5.33-7
7d310a2
- Allow joining short options into one commandline argument.
7d310a2
- Resolves: #239695
7d310a2
86ea360
* Fri Mar 30 2007 Petr Machata <pmachata@redhat.com> - 2.5.33-5
86ea360
- Make yy-prefixed variables available to scanner even with -P.
86ea360
21ab9e6
* Fri Feb  2 2007 Petr Machata <pmachata@redhat.com> - 2.5.33-4
21ab9e6
- Use %%find_lang to package locale files.
21ab9e6
febf951
* Wed Jan 31 2007 Petr Machata <pmachata@redhat.com> - 2.5.33-3
febf951
- Compile with -fPIC.
febf951
02acd3c
* Tue Jan 30 2007 Petr Machata <pmachata@redaht.com> - 2.5.33-2
02acd3c
- Add Requires:m4.
02acd3c
a084c51
* Fri Jan 19 2007 Petr Machata <pmachata@redhat.com> - 2.5.33-1
a084c51
- Rebase to 2.5.33
a084c51
1b6b694
* Tue Jul 18 2006 Petr Machata <pmachata@redhat.com> - 2.5.4a-41
1b6b694
- Reverting posix patch.  Imposing posix because of warning is too
1b6b694
  much of a restriction.
1b6b694
69442ae
* Sun Jul 16 2006 Petr Machata <pmachata@redhat.com> - 2.5.4a-40
69442ae
- using dist tag
69442ae
5d23873
* Fri Jul 14 2006 Petr Machata <pmachata@redhat.com> - 2.5.4a-39
5d23873
- fileno is defined in posix standard, so adding #define _POSIX_SOURCE
5d23873
  to compile without warnings (#195687)
5d23873
- dropping 183098 test, since the original bug was already resolved
5d23873
6ef6f25
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 2.5.4a-38.1
6ef6f25
- rebuild
6ef6f25
7b9a5cb
* Fri Mar 10 2006 Petr Machata <pmachata@redhat.com> - 2.5.4a-38
5116433
- Caught the real cause of #183098.  It failed because the parser
5116433
  built with `flex -f' *sometimes* made it into the final package, and
5116433
  -f assumes seven-bit tables.  Solution has two steps.  Move `make
5116433
  bigcheck' to `%%check' part, where it belongs anyway, so that flexes
5116433
  built during `make bigcheck' don't overwrite original build.  And
5116433
  change makefile so that `make bigcheck' will *always* execute *all*
5116433
  check commands.
5116433
99561bc
* Wed Mar  8 2006 Petr Machata <pmachata@redhat.com> - 2.5.4a-37.4
100cef7
- adding test for #183098 into build process
100cef7
100cef7
* Fri Mar  2 2006 Petr Machata <pmachata@redhat.com> - 2.5.4a-37.3
9d6eb4f
- rebuilt, no changes inside. In hunt for #183098
9d6eb4f
9d27729
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 2.5.4a-37.2
9d27729
- bump again for double-long bug on ppc(64)
9d27729
c65c5cb
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 2.5.4a-37.1
c65c5cb
- rebuilt for new gcc4.1 snapshot and glibc changes
c65c5cb
e10f09d
* Wed Feb 02 2006 Petr Machata <pmachata@redhat.com> 2.5.4a-37
e10f09d
- adding `make bigcheck' into build process.  Refreshing initscan.c to
e10f09d
  make this possible.
e10f09d
2aec90e
* Wed Jan 18 2006 Petr Machata <pmachata@redhat.com> 2.5.4a-36
2aec90e
- Applying Jonathan S. Shapiro's bugfix-fixing patch. More std:: fixes
2aec90e
  and better way to silent warnings under gcc.
2aec90e
b5c174e
* Fri Jan 13 2006 Petr Machata <pmachata@redhat.com> 2.5.4a-35
b5c174e
- Adding `std::' prefixes, got rid of `using namespace std'. (#115354)
b5c174e
- Dummy use of `yy_flex_realloc' to silent warnings. (#30943)
b5c174e
- Adding URL of flex home page to spec (#142675)
b5c174e
jvdias 22762ed
* Sun Dec 18 2005 Jason Vas Dias<jvdias@redhat.com>
b5c174e
- rebuild with 'flex-pic.patch' to enable -pie links
jvdias b546d2f
  on x86_64 (patch from Jesse Keating) .
jvdias 22762ed
93a111d
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
93a111d
- rebuilt
93a111d
d8a5e2c
* Sun Apr 10 2005 Jakub Jelinek <jakub@redhat.com> 2.5.4a-34
d8a5e2c
- rebuilt with GCC 4
d8a5e2c
- add %%check script
d8a5e2c
cvsdist 4b073b8
* Tue Aug 24 2004 Warren Togami <wtogami@redhat.com> 2.5.4a-33
cvsdist 4b073b8
- #116407 BR byacc
cvsdist 4b073b8
cvsdist a42460e
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
cvsdist a42460e
- rebuilt
cvsdist a42460e
cvsdist b7b323e
* Tue Mar 02 2004 Elliot Lee <sopwith@redhat.com>
cvsdist b7b323e
- rebuilt
cvsdist b7b323e
cvsdist b7b323e
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
cvsdist b7b323e
- rebuilt
cvsdist b7b323e
cvsdist 29da492
* Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com>
cvsdist 29da492
- rebuilt
cvsdist 29da492
cvsdist 0dd0c85
* Wed Jan 22 2003 Tim Powers <timp@redhat.com>
cvsdist 0dd0c85
- rebuilt
cvsdist 0dd0c85
cvsdist 0dd0c85
* Tue Jan  7 2003 Jeff Johnson <jbj@redhat.com> 2.5.4a-28
cvsdist 0dd0c85
- don't include -debuginfo files in package.
cvsdist 0dd0c85
cvsdist 0dd0c85
* Mon Nov  4 2002 Than Ngo <than@redhat.com> 2.5.4a-27
cvsdist 0dd0c85
- YY_NO_INPUT patch from Jean Marie
cvsdist 0dd0c85
cvsdist bc91b36
* Fri Jun 21 2002 Tim Powers <timp@redhat.com>
cvsdist bc91b36
- automated rebuild
cvsdist bc91b36
cvsdist 06ed477
* Tue Jun 18 2002 Than Ngo <than@redhat.com> 2.5.4a-25
cvsdist 06ed477
- don't forcibly strip binaries
cvsdist 06ed477
cvsdist 06ed477
* Thu May 23 2002 Tim Powers <timp@redhat.com>
cvsdist 06ed477
- automated rebuild
cvsdist 06ed477
cvsdist b880f62
* Tue Apr  2 2002 Than Ngo <than@redhat.com> 2.5.4a-23
cvsdist b880f62
- More ISO C++ 98 fixes (#59670)
cvsdist b880f62
cvsdist 4b1139d
* Tue Feb 26 2002 Than Ngo <than@redhat.com> 2.5.4a-22
cvsdist 4b1139d
- rebuild in new enviroment
cvsdist 4b1139d
cvsdist 4b1139d
* Wed Feb 20 2002 Bernhard Rosenkraenzer <bero@redhat.com> 2.5.4a-21
cvsdist 4b1139d
- More ISO C++ 98 fixes (#59670)
cvsdist 4b1139d
cvsdist 4b1139d
* Tue Feb 19 2002 Bernhard Rosenkraenzer <bero@redhat.com> 2.5.4a-20
cvsdist 4b1139d
- Fix ISO C++ 98 compliance (#59670)
cvsdist 4b1139d
cvsdist 4b1139d
* Wed Jan 23 2002 Than Ngo <than@redhat.com> 2.5.4a-19
cvsdist 4b1139d
- fixed #58643
cvsdist 4b1139d
cvsdist 4b1139d
* Wed Jan 09 2002 Tim Powers <timp@redhat.com>
cvsdist 4b1139d
- automated rebuild
cvsdist 4b1139d
cvsdist 4b1139d
* Tue Nov  6 2001 Than Ngo <than@redhat.com> 2.5.4a-17
cvsdist 4b1139d
- fixed for working with gcc 3 (bug #55778)
cvsdist 4b1139d
cvsdist 4b1139d
* Sat Oct 13 2001 Than Ngo <than@redhat.com> 2.5.4a-16
cvsdist 4b1139d
- fix wrong License (bug #54574)
cvsdist 4b1139d
cvsdist 0bcc2f2
* Sun Jun 24 2001 Elliot Lee <sopwith@redhat.com>
cvsdist 0bcc2f2
- Bump release + rebuild.
cvsdist 0bcc2f2
cvsdist 1f5eb80
* Sat Sep 30 2000 Bernhard Rosenkraenzer <bero@redhat.com>
cvsdist 1f5eb80
- Fix generation of broken code (conflicting isatty() prototype w/ glibc 2.2)
cvsdist 1f5eb80
  This broke, among other things, the kdelibs 2.0 build
cvsdist 1f5eb80
- Fix source URL
cvsdist 1f5eb80
cvsdist 1f5eb80
* Thu Sep  7 2000 Jeff Johnson <jbj@redhat.com>
cvsdist 1f5eb80
- FHS packaging (64bit systems need to use libdir).
cvsdist 1f5eb80
cvsdist 34fdda2
* Wed Jul 12 2000 Prospector <bugzilla@redhat.com>
cvsdist 34fdda2
- automatic rebuild
cvsdist 34fdda2
cvsdist 34fdda2
* Tue Jun  6 2000 Bill Nottingham <notting@redhat.com>
cvsdist 34fdda2
- rebuild, FHS stuff.
cvsdist 34fdda2
cvsdist 34fdda2
* Thu Feb  3 2000 Bill Nottingham <notting@redhat.com>
cvsdist 34fdda2
- handle compressed man pages
cvsdist 34fdda2
cvsdist 34fdda2
* Fri Jan 28 2000 Bill Nottingham <notting@redhat.com>
cvsdist 34fdda2
- add a libl.a link to libfl.a
cvsdist 34fdda2
cvsdist 34fdda2
* Wed Aug 25 1999 Jeff Johnson <jbj@redhat.com>
cvsdist 34fdda2
- avoid uninitialized variable warning (Erez Zadok).
cvsdist 34fdda2
cvsdist 34fdda2
* Sun Mar 21 1999 Cristian Gafton <gafton@redhat.com> 
cvsdist 34fdda2
- auto rebuild in the new build environment (release 6)
cvsdist 34fdda2
cvsdist 34fdda2
* Fri Dec 18 1998 Bill Nottingham <notting@redhat.com>
cvsdist 34fdda2
- build for 6.0 tree
cvsdist 34fdda2
cvsdist 34fdda2
* Mon Aug 10 1998 Jeff Johnson <jbj@redhat.com>
cvsdist 34fdda2
- build root
cvsdist 34fdda2
cvsdist 34fdda2
* Mon Apr 27 1998 Prospector System <bugs@redhat.com>
cvsdist 34fdda2
- translations modified for de, fr, tr
cvsdist 34fdda2
cvsdist 34fdda2
* Thu Oct 23 1997 Donnie Barnes <djb@redhat.com>
cvsdist 34fdda2
- updated from 2.5.4 to 2.5.4a
cvsdist 34fdda2
cvsdist 34fdda2
* Mon Jun 02 1997 Erik Troan <ewt@redhat.com>
cvsdist 34fdda2
- built against glibc
cvsdist 34fdda2
cvsdist 34fdda2
* Thu Mar 20 1997 Michael Fulbright <msf@redhat.com>
cvsdist 34fdda2
- Updated to v. 2.5.4