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