OBS User unknown 2007-02-19 19:50:11 +00:00 committed by Git OBS Bridge
parent a92aeb6b94
commit 6008e0e4b7
5 changed files with 25 additions and 45 deletions

View File

@ -1,37 +0,0 @@
--- agen5/loadPseudo.c
+++ agen5/loadPseudo.c
@@ -49,7 +49,7 @@
findTokenType( tCC** ppzData, te_pm_state fsm_state );
static tCC*
-copyMarker( tCC* pzData, char* pzMark, int* pCt );
+copyMarker( tCC* pzData, char* pzMark, size_t* pCt );
/* = = = END-STATIC-FORWARD = = = */
@@ -336,7 +336,7 @@
* as we find punctuation characters.
*/
static tCC*
-copyMarker( tCC* pzData, char* pzMark, int* pCt )
+copyMarker( tCC* pzData, char* pzMark, size_t* pCt )
{
int ct = 0;
@@ -402,14 +402,14 @@
}
case PM_TR_INIT_MARKER:
- pzData = copyMarker( pzData, zStartMac, (int*)&startMacLen );
+ pzData = copyMarker( pzData, zStartMac, &startMacLen );
if (pzData == NULL)
BAD_MARKER( zMarkErr );
break;
case PM_TR_TEMPL_MARKER:
- pzData = copyMarker( pzData, zEndMac, (int*)&endMacLen );
+ pzData = copyMarker( pzData, zEndMac, &endMacLen );
if (pzData == NULL)
BAD_MARKER( zMarkErr );

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:d3269c65d388fd1bccd8683808f40d6696fb0f35e3145b79c24cc0c141d94599
size 968863

3
autogen-5.9.tar.bz2 Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:b8c8ffef40462e26a21adcaf15cf2fe4c804b6afe7544f712584ea4634fd10a2
size 976074

View File

@ -1,3 +1,13 @@
-------------------------------------------------------------------
Sun Feb 18 10:10:24 CET 2007 - schwab@suse.de
- Update to autogen 5.9.
* a script for producing Debian packages is included
* including of templates and definitions now works more like
``#include "foo"'' instead of ``#include <foo>''.
* fixed sizeof(int) != sizeof(size_t) bug.
* fixed incorrect argument number format string
-------------------------------------------------------------------
Mon Jan 29 11:37:57 CET 2007 - schwab@suse.de

View File

@ -1,5 +1,5 @@
#
# spec file for package autogen (Version 5.8.9)
# spec file for package autogen (Version 5.9)
#
# Copyright (c) 2007 SUSE LINUX Products GmbH, Nuernberg, Germany.
# This file and all modifications and additions to the pristine
@ -13,13 +13,13 @@
Name: autogen
BuildRequires: guile-devel libxml2-devel
Summary: Automated Text File Generator
Version: 5.8.9
Version: 5.9
Release: 1
Group: Development/Tools/Building
License: GNU General Public License (GPL)
URL: http://autogen.sourceforge.net/
Source: %{name}-%{version}.tar.bz2
Patch: %{name}-%{version}.diff
#Patch: %{name}-%{version}.diff
BuildRoot: %{_tmppath}/%{name}-%{version}-build
PreReq: %{install_info_prereq}
@ -38,7 +38,7 @@ Authors:
%prep
%setup -q
%patch
#%patch
%build
./configure CFLAGS="$RPM_OPT_FLAGS" --prefix=/usr --libdir=%{_libdir} \
@ -70,7 +70,14 @@ rm -fr $RPM_BUILD_ROOT
/usr/share/autogen
%{_infodir}/*.gz
%changelog -n autogen
%changelog
* Sun Feb 18 2007 - schwab@suse.de
- Update to autogen 5.9.
* a script for producing Debian packages is included
* including of templates and definitions now works more like
``#include "foo"'' instead of ``#include <foo>''.
* fixed sizeof(int) != sizeof(size_t) bug.
* fixed incorrect argument number format string
* Mon Jan 29 2007 - schwab@suse.de
- Update to autogen 5.8.9.
* GREP is now a configurable. (Sheesh!)