Blame SPECS/flex.spec

1304c3
%{!?_pkgdocdir: %global _pkgdocdir %{_docdir}/%{name}-%{version}}
1304c3
1304c3
Summary: A tool for creating scanners (text pattern recognizers)
1304c3
Name: flex
1304c3
Version: 2.6.1
1304c3
Release: 9%{?dist}
1304c3
# parse.c and parse.h are under GPLv3+ with exception which allows
1304c3
#	relicensing.  Since flex is shipped under BDS-style license,
1304c3
#	let's  assume that the relicensing was done.
1304c3
# gettext.h (copied from gnulib) is under LGPLv2+
1304c3
License: BSD and LGPLv2+
1304c3
Group: Development/Tools
1304c3
URL: https://github.com/westes/flex
1304c3
Source: https://github.com/westes/flex/releases/download/v%{version}/flex-%{version}.tar.xz
1304c3
1304c3
Patch0: flex-2.6.0-yyless.patch
1304c3
Patch1: flex-max_size.patch
1304c3
Patch2: flex-new_size.patch
1304c3
Patch3: flex-yy_buf_size.patch
1304c3
Patch4: flex-yybytes_len.patch
1304c3
1304c3
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
1304c3
Requires: m4
1304c3
BuildRequires: gettext bison m4 help2man gcc gcc-c++
1304c3
Requires(post): /sbin/install-info
1304c3
Requires(preun): /sbin/install-info
1304c3
1304c3
%description
1304c3
The flex program generates scanners.  Scanners are programs which can
1304c3
recognize lexical patterns in text.  Flex takes pairs of regular
1304c3
expressions and C code as input and generates a C source file as
1304c3
output.  The output file is compiled and linked with a library to
1304c3
produce an executable.  The executable searches through its input for
1304c3
occurrences of the regular expressions.  When a match is found, it
1304c3
executes the corresponding C code.  Flex was designed to work with
1304c3
both Yacc and Bison, and is used by many programs as part of their
1304c3
build process.
1304c3
1304c3
You should install flex if you are going to use your system for
1304c3
application development.
1304c3
1304c3
# We keep the libraries in separate sub-package to allow for multilib
1304c3
# installations of flex.
1304c3
%package devel
1304c3
Summary: Libraries for flex scanner generator
1304c3
Group: Development/Tools
1304c3
Obsoletes: flex-static < 2.5.35-15
1304c3
Provides: flex-static
1304c3
1304c3
%description devel
1304c3
1304c3
This package contains the library with default implementations of
1304c3
`main' and `yywrap' functions that the client binary can choose to use
1304c3
instead of implementing their own.
1304c3
1304c3
%package doc
1304c3
Summary: Documentation for flex scanner generator
1304c3
Group: Documentation
1304c3
1304c3
%description doc
1304c3
1304c3
This package contains documentation for flex scanner generator in
1304c3
plain text and PDF formats.
1304c3
1304c3
%prep
1304c3
%setup -q
1304c3
%patch0 -p1
1304c3
%patch1 -p1
1304c3
%patch2 -p1
1304c3
%patch3 -p1
1304c3
%patch4 -p1
1304c3
1304c3
%build
1304c3
%configure --docdir=%{_pkgdocdir} CFLAGS="-fPIC $RPM_OPT_FLAGS"
1304c3
make %{?_smp_mflags}
1304c3
1304c3
%install
1304c3
rm -rf $RPM_BUILD_ROOT
1304c3
make DESTDIR=$RPM_BUILD_ROOT install
1304c3
rm -f $RPM_BUILD_ROOT/%{_infodir}/dir
1304c3
rm -f $RPM_BUILD_ROOT/%{_pkgdocdir}/{README.cvs,TODO}
1304c3
# For now, excluding the new .la and .so files as we haven't had
1304c3
# any requests for them and adding them will require a new subpackage.
1304c3
# The .so files contain 2 optional implementations of main and yywrap
1304c3
# for developer convenience. They are also available in the .a file
1304c3
# provided in flex-devel.
1304c3
find %{buildroot} -name '*.la' -delete
1304c3
find %{buildroot} -name '*.so' -delete
1304c3
find %{buildroot} -name '*.so.2' -delete
1304c3
find %{buildroot} -name '*.so.2.0.0' -delete
1304c3
1304c3
( cd ${RPM_BUILD_ROOT}
1304c3
  ln -sf flex .%{_bindir}/lex
1304c3
  ln -sf flex .%{_bindir}/flex++
1304c3
  ln -s flex.1 .%{_mandir}/man1/lex.1
1304c3
  ln -s flex.1 .%{_mandir}/man1/flex++.1
1304c3
  ln -s libfl.a .%{_libdir}/libl.a
1304c3
)
1304c3
1304c3
%find_lang flex
1304c3
1304c3
%post
1304c3
if [ -f %{_infodir}/flex.info.gz ]; then # for --excludedocs
1304c3
   /sbin/install-info %{_infodir}/flex.info.gz --dir-file=%{_infodir}/dir ||:
1304c3
fi
1304c3
1304c3
%preun
1304c3
if [ $1 = 0 ]; then
1304c3
    if [ -f %{_infodir}/flex.info.gz ]; then # for --excludedocs
1304c3
	/sbin/install-info --delete %{_infodir}/%{name}.info.gz %{_infodir}/dir ||:
1304c3
    fi
1304c3
fi
1304c3
1304c3
%check
1304c3
echo ============TESTING===============
1304c3
make check
1304c3
echo ============END TESTING===========
1304c3
1304c3
%clean
1304c3
rm -rf ${RPM_BUILD_ROOT}
1304c3
1304c3
%files -f flex.lang
1304c3
%defattr(-,root,root)
1304c3
%dir %{_pkgdocdir}
1304c3
%license COPYING
1304c3
%{_pkgdocdir}/NEWS
1304c3
%{_pkgdocdir}/README
1304c3
%{_bindir}/*
1304c3
%{_mandir}/man1/*
1304c3
%{_includedir}/FlexLexer.h
1304c3
%{_infodir}/flex.info*
1304c3
1304c3
%files devel
1304c3
%defattr(-,root,root)
1304c3
%dir %{_pkgdocdir}
1304c3
%license COPYING
1304c3
%{_libdir}/*.a
1304c3
1304c3
%files doc
1304c3
%defattr(-,root,root)
1304c3
%{_pkgdocdir}
1304c3
1304c3
%changelog
1304c3
* Tue Jul 31 2018 Arjun Shankar <arjun@redhat.com> - 2.6.1-9
1304c3
- Add gcc and gcc-c++ as build-time requirements
1304c3
1304c3
* Mon Jun 18 2018 Arjun Shankar <arjun@redhat.com> - 2.6.1-8
1304c3
- Remove g++ signed/unsigned comparison warning in generated scanner
1304c3
1304c3
* Fri Feb 09 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 2.6.1-7
1304c3
- Escape macros in %%changelog
1304c3
1304c3
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.6.1-6
1304c3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
1304c3
1304c3
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.6.1-5
1304c3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
1304c3
1304c3
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.6.1-4
1304c3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
1304c3
1304c3
* Wed Feb 01 2017 Stephen Gallagher <sgallagh@redhat.com> - 2.6.1-3
1304c3
- Add missing %%license macro
1304c3
1304c3
* Sun Sep 25 2016 Patsy Franklin <pfrankli@redhat.com> - 2.6.1-2
1304c3
- Fix several type comparison issues including BZ #1373601
1304c3
1304c3
* Tue Sep 13 2016 Rex Dieter <rdieter@fedoraproject.org> - 2.6.1-1
1304c3
- Rebase to 2.6.1 (#1318074,#1364943)
1304c3
- update URL (github), drop unused patches (#1238860)
1304c3
1304c3
* Wed Jul 27 2016 Patsy Franklin <pfrankli@redhat.com> - 2.6.0-2
1304c3
  Fix wrong type on num_to_read.  BZ #1360744
1304c3
1304c3
* Thu Mar 10 2016 Patsy Franklin <pfrankli@redhat.com> - 2.6.0-1
1304c3
- Rebase to 2.6.0
1304c3
- Pick up an additional patch requested in BZ #1281976
1304c3
1304c3
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 2.5.39-4
1304c3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
1304c3
1304c3
* Thu Oct 29 2015 Patsy Franklin <pfrankli@redhat.com> - 2.5.39-3
1304c3
- Remove obsolete patches from git repository.  (BZ #1238860)
1304c3
1304c3
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.5.39-2
1304c3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
1304c3
1304c3
* Mon Apr 13 2015 Patsy Franklin <pfrankli@redhat.com> - 2.5.39-1
1304c3
- Rebase to 2.5.39
1304c3
1304c3
* Sat Aug 16 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.5.37-8
1304c3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
1304c3
1304c3
* Sat Jul 19 2014 Ville Skyttä <ville.skytta@iki.fi> - 2.5.37-7
1304c3
- Make docdir unversioned where appropriate (#993754)
1304c3
- Install docs to one common package doc dir, drop separate one for -doc
1304c3
- Include COPYING in -devel
1304c3
- Fix bogus dates in %%changelog
1304c3
1304c3
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.5.37-6
1304c3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
1304c3
1304c3
* Wed Apr 16 2014 Patsy Franklin <pfrankli@redhat.com> - 2.5.37-5
1304c3
- Add a patch to remove obsolete bison constructs YYLEX_PARAM and 
1304c3
  YYPARSE_PARAM. Use %%lex-param, %%parse-param, or %%param.
1304c3
1304c3
* Tue Sep  3 2013 Petr Machata <pmachata@redhat.com> - 2.5.37-4
1304c3
- Add a patch for "comparison between signed and unsigned" warnings
1304c3
  that GCC produces when compiling flex-generated scanners
1304c3
  (flex-2.5.37-types.patch)
1304c3
1304c3
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.5.37-3
1304c3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
1304c3
1304c3
* Thu Apr  4 2013 Petr Machata <pmachata@redhat.com> - 2.5.37-2
1304c3
- Update config.sub and config.guess to support aarch64
1304c3
1304c3
* Wed Mar 20 2013 Petr Machata <pmachata@redhat.com> - 2.5.37-1
1304c3
- Rebase to 2.5.37
1304c3
1304c3
* Wed Feb 13 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.5.36-3
1304c3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
1304c3
1304c3
* Fri Oct 26 2012 Petr Machata <pmachata@redhat.com> - 2.5.36-2
1304c3
- Bump for rebuild
1304c3
1304c3
* Tue Jul 31 2012 Petr Machata <pmachata@redhat.com> - 2.5.36-1
1304c3
- Rebase to 2.5.36
1304c3
  - Drop flex-2.5.35-sign.patch, flex-2.5.35-hardening.patch,
1304c3
    flex-2.5.35-gcc44.patch, flex-2.5.35-missing-prototypes.patch
1304c3
  - Add flex-2.5.36-bison-2.6.1.patch
1304c3
  - Add a subpackage doc
1304c3
- Resolves #842073
1304c3
1304c3
* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.5.35-16
1304c3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
1304c3
1304c3
* Mon Mar 12 2012 Petr Machata <pmachata@redhat.com> - 2.5.35-15
1304c3
- Rename flex-static to flex-devel so that it gets to repositories of
1304c3
  minor multi-lib arch (i386 on x86_64 etc.)
1304c3
- Resolves: #674301
1304c3
1304c3
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.5.35-14
1304c3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
1304c3
1304c3
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.5.35-13
1304c3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
1304c3
1304c3
* Tue Aug 17 2010 Petr Machata <pmachata@redhat.com> - 2.5.35-12
1304c3
- Drop the dependency of core package on flex-static.
1304c3
- Resolves: #624549
1304c3
1304c3
* Wed Jul 14 2010 Petr Machata <pmachata@redhat.com> - 2.5.35-11
1304c3
- Forgot that the changes in flex.skl won't propagate to skel.c
1304c3
- Resolves: #612465
1304c3
1304c3
* Tue Jul 13 2010 Petr Machata <pmachata@redhat.com> - 2.5.35-10
1304c3
- Declare yyget_column and yyset_column in reentrant mode.
1304c3
- Resolves: #612465
1304c3
1304c3
* Wed Jan 20 2010 Petr Machata <pmachata@redhat.com> - 2.5.35-9
1304c3
- Move libraries into a sub-package of their own.
1304c3
1304c3
* Tue Jan 12 2010 Petr Machata <pmachata@redhat.com> - 2.5.35-8
1304c3
- Add source URL
1304c3
1304c3
* Mon Aug 24 2009 Petr Machata <pmachata@redhat.com> - 2.5.35-7
1304c3
- Fix installation with --excludedocs
1304c3
- Resolves: #515928
1304c3
1304c3
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.5.35-6
1304c3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
1304c3
1304c3
* Mon Apr 20 2009 Debarshi Ray <rishi@fedoraproject.org> - 2.5.35-5
1304c3
- Resolves: #496548.
1304c3
1304c3
* Mon Apr 20 2009 Petr Machata <pmachata@redhat.com> - 2.5.35-4
1304c3
- Get rid of warning caused by ignoring return value of fwrite() in
1304c3
  ECHO macro.  Debian patch.
1304c3
- Resolves: #484961
1304c3
1304c3
* Tue Feb 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.5.35-3
1304c3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
1304c3
1304c3
* Mon May 12 2008 Petr Machata <pmachata@redhat.com> - 2.5.35-2
1304c3
- Resolves: #445950
1304c3
1304c3
* Wed Feb 27 2008 Petr Machata <pmachata@redhat.com> - 2.5.35-1
1304c3
- Rebase to 2.5.35. Drop two patches.
1304c3
- Resolves: #434961
1304c3
- Resolves: #435047
1304c3
1304c3
* Mon Feb 25 2008 Petr Machata <pmachata@redhat.com> - 2.5.34-1
1304c3
- Rebase to 2.5.34. Drop five patches.
1304c3
- Resolves: #434676
1304c3
1304c3
* Mon Feb 11 2008 Petr Machata <pmachata@redhat.com> - 2.5.33-17
1304c3
- Generate prototypes for accessor functions.  Upstream patch.
1304c3
- Related: #432203
1304c3
1304c3
* Mon Feb  4 2008 Petr Machata <pmachata@redhat.com> - 2.5.33-16
1304c3
- Fix comparison between signed and unsigned in generated scanner.
1304c3
  Patch by Roland McGrath.
1304c3
- Resolves: #431151
1304c3
1304c3
* Tue Jan 15 2008 Stepan Kasal <skasal@redhat.com> - 2.5.33-15
1304c3
- Do not run autogen.sh, it undoes the effect of includedir patch.
1304c3
- Adapt test-linedir-r.patch so that it fixes Makefile.in and works
1304c3
  even though autogen.sh is not run.
1304c3
1304c3
* Thu Jan 10 2008 Stepan Kasal <skasal@redhat.com> - 2.5.33-14
1304c3
- Insert the "-fPIC" on configure command-line.
1304c3
- Drop the -fPIC patch.
1304c3
1304c3
* Tue Jan  8 2008 Petr Machata <pmachata@redhat.com> - 2.5.33-13
1304c3
- Patch with -fPIC only after the autogen.sh is run.
1304c3
1304c3
* Thu Jan  3 2008 Petr Machata <pmachata@redhat.com> - 2.5.33-12
1304c3
- Run autogen.sh before the rest of the build.
1304c3
- Add BR autoconf automake gettext-devel.
1304c3
1304c3
* Thu Aug 30 2007 Petr Machata <pmachata@redhat.com> - 2.5.33-11
1304c3
- Add BR gawk
1304c3
- Fix use of awk in one of the tests
1304c3
1304c3
* Wed Aug 29 2007 Fedora Release Engineering <rel-eng at fedoraproject dot org> - 2.5.33-10
1304c3
- Rebuild for selinux ppc32 issue.
1304c3
1304c3
* Fri Jun 22 2007 Petr Machata <pmachata@redhat.com> - 2.5.33-9
1304c3
- Remove wrong use of @includedir@ in Makefile.in.
1304c3
- Spec cleanups.
1304c3
- Related: #225758
1304c3
1304c3
* Fri Jun 22 2007 Petr Machata <pmachata@redhat.com> - 2.5.33-8
1304c3
- Don't emit yy-prefixed variables in C++ mode.  Thanks Srinivas Aji.
1304c3
- Related: #242742
1304c3
- Related: #244259
1304c3
1304c3
* Fri May 11 2007 Petr Machata <pmachata@redhat.com> - 2.5.33-7
1304c3
- Allow joining short options into one commandline argument.
1304c3
- Resolves: #239695
1304c3
1304c3
* Fri Mar 30 2007 Petr Machata <pmachata@redhat.com> - 2.5.33-5
1304c3
- Make yy-prefixed variables available to scanner even with -P.
1304c3
1304c3
* Fri Feb  2 2007 Petr Machata <pmachata@redhat.com> - 2.5.33-4
1304c3
- Use %%find_lang to package locale files.
1304c3
1304c3
* Wed Jan 31 2007 Petr Machata <pmachata@redhat.com> - 2.5.33-3
1304c3
- Compile with -fPIC.
1304c3
1304c3
* Tue Jan 30 2007 Petr Machata <pmachata@redaht.com> - 2.5.33-2
1304c3
- Add Requires:m4.
1304c3
1304c3
* Fri Jan 19 2007 Petr Machata <pmachata@redhat.com> - 2.5.33-1
1304c3
- Rebase to 2.5.33
1304c3
1304c3
* Tue Jul 18 2006 Petr Machata <pmachata@redhat.com> - 2.5.4a-41
1304c3
- Reverting posix patch.  Imposing posix because of warning is too
1304c3
  much of a restriction.
1304c3
1304c3
* Sun Jul 16 2006 Petr Machata <pmachata@redhat.com> - 2.5.4a-40
1304c3
- using dist tag
1304c3
1304c3
* Fri Jul 14 2006 Petr Machata <pmachata@redhat.com> - 2.5.4a-39
1304c3
- fileno is defined in posix standard, so adding #define _POSIX_SOURCE
1304c3
  to compile without warnings (#195687)
1304c3
- dropping 183098 test, since the original bug was already resolved
1304c3
1304c3
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 2.5.4a-38.1
1304c3
- rebuild
1304c3
1304c3
* Fri Mar 10 2006 Petr Machata <pmachata@redhat.com> - 2.5.4a-38
1304c3
- Caught the real cause of #183098.  It failed because the parser
1304c3
  built with `flex -f' *sometimes* made it into the final package, and
1304c3
  -f assumes seven-bit tables.  Solution has two steps.  Move `make
1304c3
  bigcheck' to `%%check' part, where it belongs anyway, so that flexes
1304c3
  built during `make bigcheck' don't overwrite original build.  And
1304c3
  change makefile so that `make bigcheck' will *always* execute *all*
1304c3
  check commands.
1304c3
1304c3
* Wed Mar  8 2006 Petr Machata <pmachata@redhat.com> - 2.5.4a-37.4
1304c3
- adding test for #183098 into build process
1304c3
1304c3
* Thu Mar  2 2006 Petr Machata <pmachata@redhat.com> - 2.5.4a-37.3
1304c3
- rebuilt, no changes inside. In hunt for #183098
1304c3
1304c3
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 2.5.4a-37.2
1304c3
- bump again for double-long bug on ppc(64)
1304c3
1304c3
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 2.5.4a-37.1
1304c3
- rebuilt for new gcc4.1 snapshot and glibc changes
1304c3
1304c3
* Thu Feb 02 2006 Petr Machata <pmachata@redhat.com> 2.5.4a-37
1304c3
- adding `make bigcheck' into build process.  Refreshing initscan.c to
1304c3
  make this possible.
1304c3
1304c3
* Wed Jan 18 2006 Petr Machata <pmachata@redhat.com> 2.5.4a-36
1304c3
- Applying Jonathan S. Shapiro's bugfix-fixing patch. More std:: fixes
1304c3
  and better way to silent warnings under gcc.
1304c3
1304c3
* Fri Jan 13 2006 Petr Machata <pmachata@redhat.com> 2.5.4a-35
1304c3
- Adding `std::' prefixes, got rid of `using namespace std'. (#115354)
1304c3
- Dummy use of `yy_flex_realloc' to silent warnings. (#30943)
1304c3
- Adding URL of flex home page to spec (#142675)
1304c3
1304c3
* Sun Dec 18 2005 Jason Vas Dias<jvdias@redhat.com>
1304c3
- rebuild with 'flex-pic.patch' to enable -pie links
1304c3
  on x86_64 (patch from Jesse Keating) .
1304c3
1304c3
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
1304c3
- rebuilt
1304c3
1304c3
* Sun Apr 10 2005 Jakub Jelinek <jakub@redhat.com> 2.5.4a-34
1304c3
- rebuilt with GCC 4
1304c3
- add %%check script
1304c3
1304c3
* Tue Aug 24 2004 Warren Togami <wtogami@redhat.com> 2.5.4a-33
1304c3
- #116407 BR byacc
1304c3
1304c3
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
1304c3
- rebuilt
1304c3
1304c3
* Tue Mar 02 2004 Elliot Lee <sopwith@redhat.com>
1304c3
- rebuilt
1304c3
1304c3
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
1304c3
- rebuilt
1304c3
1304c3
* Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com>
1304c3
- rebuilt
1304c3
1304c3
* Wed Jan 22 2003 Tim Powers <timp@redhat.com>
1304c3
- rebuilt
1304c3
1304c3
* Tue Jan  7 2003 Jeff Johnson <jbj@redhat.com> 2.5.4a-28
1304c3
- don't include -debuginfo files in package.
1304c3
1304c3
* Mon Nov  4 2002 Than Ngo <than@redhat.com> 2.5.4a-27
1304c3
- YY_NO_INPUT patch from Jean Marie
1304c3
1304c3
* Fri Jun 21 2002 Tim Powers <timp@redhat.com>
1304c3
- automated rebuild
1304c3
1304c3
* Tue Jun 18 2002 Than Ngo <than@redhat.com> 2.5.4a-25
1304c3
- don't forcibly strip binaries
1304c3
1304c3
* Thu May 23 2002 Tim Powers <timp@redhat.com>
1304c3
- automated rebuild
1304c3
1304c3
* Tue Apr  2 2002 Than Ngo <than@redhat.com> 2.5.4a-23
1304c3
- More ISO C++ 98 fixes (#59670)
1304c3
1304c3
* Tue Feb 26 2002 Than Ngo <than@redhat.com> 2.5.4a-22
1304c3
- rebuild in new enviroment
1304c3
1304c3
* Wed Feb 20 2002 Bernhard Rosenkraenzer <bero@redhat.com> 2.5.4a-21
1304c3
- More ISO C++ 98 fixes (#59670)
1304c3
1304c3
* Tue Feb 19 2002 Bernhard Rosenkraenzer <bero@redhat.com> 2.5.4a-20
1304c3
- Fix ISO C++ 98 compliance (#59670)
1304c3
1304c3
* Wed Jan 23 2002 Than Ngo <than@redhat.com> 2.5.4a-19
1304c3
- fixed #58643
1304c3
1304c3
* Wed Jan 09 2002 Tim Powers <timp@redhat.com>
1304c3
- automated rebuild
1304c3
1304c3
* Tue Nov  6 2001 Than Ngo <than@redhat.com> 2.5.4a-17
1304c3
- fixed for working with gcc 3 (bug #55778)
1304c3
1304c3
* Sat Oct 13 2001 Than Ngo <than@redhat.com> 2.5.4a-16
1304c3
- fix wrong License (bug #54574)
1304c3
1304c3
* Sun Jun 24 2001 Elliot Lee <sopwith@redhat.com>
1304c3
- Bump release + rebuild.
1304c3
1304c3
* Sat Sep 30 2000 Bernhard Rosenkraenzer <bero@redhat.com>
1304c3
- Fix generation of broken code (conflicting isatty() prototype w/ glibc 2.2)
1304c3
  This broke, among other things, the kdelibs 2.0 build
1304c3
- Fix source URL
1304c3
1304c3
* Thu Sep  7 2000 Jeff Johnson <jbj@redhat.com>
1304c3
- FHS packaging (64bit systems need to use libdir).
1304c3
1304c3
* Wed Jul 12 2000 Prospector <bugzilla@redhat.com>
1304c3
- automatic rebuild
1304c3
1304c3
* Tue Jun  6 2000 Bill Nottingham <notting@redhat.com>
1304c3
- rebuild, FHS stuff.
1304c3
1304c3
* Thu Feb  3 2000 Bill Nottingham <notting@redhat.com>
1304c3
- handle compressed man pages
1304c3
1304c3
* Fri Jan 28 2000 Bill Nottingham <notting@redhat.com>
1304c3
- add a libl.a link to libfl.a
1304c3
1304c3
* Wed Aug 25 1999 Jeff Johnson <jbj@redhat.com>
1304c3
- avoid uninitialized variable warning (Erez Zadok).
1304c3
1304c3
* Sun Mar 21 1999 Cristian Gafton <gafton@redhat.com> 
1304c3
- auto rebuild in the new build environment (release 6)
1304c3
1304c3
* Fri Dec 18 1998 Bill Nottingham <notting@redhat.com>
1304c3
- build for 6.0 tree
1304c3
1304c3
* Mon Aug 10 1998 Jeff Johnson <jbj@redhat.com>
1304c3
- build root
1304c3
1304c3
* Mon Apr 27 1998 Prospector System <bugs@redhat.com>
1304c3
- translations modified for de, fr, tr
1304c3
1304c3
* Thu Oct 23 1997 Donnie Barnes <djb@redhat.com>
1304c3
- updated from 2.5.4 to 2.5.4a
1304c3
1304c3
* Mon Jun 02 1997 Erik Troan <ewt@redhat.com>
1304c3
- built against glibc
1304c3
1304c3
* Thu Mar 20 1997 Michael Fulbright <msf@redhat.com>
1304c3
- Updated to v. 2.5.4