SHA256
3
0
forked from pool/libzio

Added patch from Andreas in upstream source tree

OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/libzio?expand=0&rev=31
This commit is contained in:
Dr. Werner Fink 2017-02-28 10:10:30 +00:00 committed by Git OBS Bridge
parent ef984d8c0a
commit 966c1bf680
5 changed files with 12 additions and 19 deletions

View File

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

3
libzio-1.04.tar.bz2 Normal file
View File

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

View File

@ -1,3 +1,11 @@
-------------------------------------------------------------------
Tue Feb 28 10:07:43 UTC 2017 - werner@suse.de
- Push version to 1.04
* Add patch from Andreas Schwab to fix problem with missing
declaration of pthread_sigmask(2)
- Delete pthread-sigmask.patch as now upstream
-------------------------------------------------------------------
Tue Feb 28 09:07:36 UTC 2017 - schwab@linux-m68k.org

View File

@ -18,7 +18,7 @@
Name: libzio
%define lname libzio1
Version: 1.03
Version: 1.04
Release: 0
Summary: A Library for Accessing Compressed Text Files
License: GPL-2.0+
@ -26,7 +26,6 @@ Group: System/Libraries
Url: http://libzio.sourceforge.net/
Source: http://downloads.sourceforge.net/project/%{name}/%{name}/%{version}/%{name}-%{version}.tar.bz2
Source1: baselibs.conf
Patch: pthread-sigmask.patch
BuildRequires: libbz2-devel
BuildRequires: xz-devel
BuildRequires: zlib-devel
@ -58,7 +57,6 @@ and static library.
%prep
%setup -q
%patch -p1
%build
make %{?_smp_mflags} noweak

View File

@ -1,13 +0,0 @@
Index: libzio-1.03/lzw.h
===================================================================
--- libzio-1.03.orig/lzw.h
+++ libzio-1.03/lzw.h
@@ -48,7 +48,7 @@
#include "zioP.h"
#if defined _REENTRANT || defined _THREAD_SAFE
-# include <pthread.h>
+# include <signal.h>
weak_symbol(pthread_sigmask);
#endif