Rebase to 20111219, Revert default stack size to 10000

This commit is contained in:
Petr Machata 2012-01-09 23:56:18 +01:00
parent 65524f4b66
commit e6803cd22d
3 changed files with 15 additions and 2 deletions

1
.gitignore vendored
View File

@ -8,3 +8,4 @@ byacc-20*/
*.rpm *.rpm
.*.log .*.log
/byacc-20110908.tgz /byacc-20110908.tgz
/byacc-20111219.tgz

View File

@ -1,4 +1,4 @@
%define byaccdate 20110908 %define byaccdate 20111219
Summary: Berkeley Yacc, a parser generator Summary: Berkeley Yacc, a parser generator
Name: byacc Name: byacc
@ -23,6 +23,11 @@ this package.
%prep %prep
%setup -q -n byacc-%{byaccdate} %setup -q -n byacc-%{byaccdate}
# Revert default stack size back to 10000
# https://bugzilla.redhat.com/show_bug.cgi?id=743343
find . -type f -name \*.c -print0 |
xargs -0 sed -i 's/YYSTACKSIZE 500/YYSTACKSIZE 10000/g'
%build %build
%configure --disable-dependency-tracking %configure --disable-dependency-tracking
make %{?_smp_mflags} make %{?_smp_mflags}
@ -50,6 +55,13 @@ rm -rf $RPM_BUILD_ROOT
%{_mandir}/man1/byacc.1* %{_mandir}/man1/byacc.1*
%changelog %changelog
* Mon Jan 9 2012 Petr Machata <pmachata@redhat.com> - 1.9.20111219-1
- Rebase to 20111219
- add "-s" option
- Resolves: #769237
- Revert default stack size to 10000
- Related: #743343
* Thu Sep 29 2011 Petr Machata <pmachata@redhat.com> - 1.9.20110908-1 * Thu Sep 29 2011 Petr Machata <pmachata@redhat.com> - 1.9.20110908-1
- Rebase to 20110908 - Rebase to 20110908
- add "-i" option. - add "-i" option.

View File

@ -1 +1 @@
5665ee1f2ca482d57eef9591a2fe4768 byacc-20110908.tgz c17542fd9df6e392d495a64f883e29f1 byacc-20111219.tgz