osc copypac from project:openSUSE:Factory:Contrib package:cflow revision:3

OBS-URL: https://build.opensuse.org/package/show/devel:tools/cflow?expand=0&rev=2
This commit is contained in:
Petr Uzel 2011-04-11 11:13:55 +00:00 committed by Git OBS Bridge
parent e994bada2a
commit 47262943d1
5 changed files with 14 additions and 39 deletions

View File

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

3
cflow-1.3.tar.bz2 Normal file
View File

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

View File

@ -1,32 +0,0 @@
diff -up ./lib/argp-fmtstream.h.orig ./lib/argp-fmtstream.h
--- ./lib/argp-fmtstream.h.orig 2008-12-17 13:54:32.000000000 +0100
+++ ./lib/argp-fmtstream.h 2008-12-17 13:55:16.000000000 +0100
@@ -198,7 +198,11 @@ extern int __argp_fmtstream_ensure (argp
#endif
#ifndef ARGP_FS_EI
-#define ARGP_FS_EI extern inline
+#ifdef __GNUC_STDC_INLINE__
+ #define ARGP_FS_EI extern inline __attribute__((__gnu_inline__))
+#else
+ #define ARGP_FS_EI extern inline
+#endif
#endif
ARGP_FS_EI size_t
diff -up ./lib/argp.h.orig ./lib/argp.h
--- ./lib/argp.h.orig 2008-12-17 13:46:33.000000000 +0100
+++ ./lib/argp.h 2008-12-17 13:47:30.000000000 +0100
@@ -580,7 +580,11 @@ extern void *__argp_input (const struct
# endif
# ifndef ARGP_EI
-# define ARGP_EI extern __inline__
+# if defined __GNUC_STDC_INLINE__
+# define ARGP_EI extern __inline__ __attribute__((__gnu_inline__))
+# else
+# define ARGP_EI extern __inline__
+# endif
# endif
ARGP_EI void

View File

@ -1,3 +1,12 @@
-------------------------------------------------------------------
Sun Jul 12 11:36:39 CEST 2009 - puzel@novell.com
- update to cflow-1.3
* Optimize symbol tables.
* New symbol tables considerably improve the program performance.
* Bugfixes.
- drop cflow-fix-extern-inline.patch (fixed upstream)
-------------------------------------------------------------------
Mon Jan 5 15:48:53 CET 2009 - puzel@suse.cz

View File

@ -1,5 +1,5 @@
#
# spec file for package cflow (Version 1.2)
# spec file for package cflow (Version 1.3)
#
# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
@ -23,11 +23,10 @@ License: GLP v3
Group: Development/Tools/Other
AutoReqProv: on
Url: http://www.gnu.org/software/cflow
Version: 1.2
Version: 1.3
Release: 1
Summary: Tool to generate flowcharts for C sources
Source: %{name}-%{version}.tar.bz2
Patch0: cflow-fix-extern-inline.patch
Patch1: cflow-fix-yyparse-return-type.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
PreReq: %install_info_prereq
@ -45,7 +44,6 @@ Authors:
%prep
%setup -q
%patch0 -p1
%patch1 -p1
%build