OBS User unknown 2007-12-31 21:26:53 +00:00 committed by Git OBS Bridge
parent b0a120b9ae
commit d7500067b9
6 changed files with 36 additions and 22 deletions

View File

@ -1,11 +0,0 @@
--- libevent-1.3a/sample/Makefile.am.xx 2007-02-20 11:57:04.000000000 +0100
+++ libevent-1.3a/sample/Makefile.am 2007-02-20 11:57:09.000000000 +0100
@@ -2,7 +2,7 @@
LDADD = ../libevent.la
CPPFPLAGS = -I..
-CFLAGS = -I../compat
+CFLAGS = -I../compat @CFLAGS@
noinst_PROGRAMS = event-test time-test signal-test

View File

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

4
libevent-1.3e-rpmlintrc Normal file
View File

@ -0,0 +1,4 @@
#in the meanwhile..
addFilter("devel-file-in-non-devel-package")
# libevent does not have proper SONAME in place..
addFilter("shlib-policy-name-error")

3
libevent-1.3e.tar.bz2 Normal file
View File

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

View File

@ -1,3 +1,14 @@
-------------------------------------------------------------------
Thu Dec 27 06:09:22 CET 2007 - crrodriguez@suse.de
- fix library-without-ldconfig-* errors
- version 1.3e
* Add a "Date" header to HTTP responses when it's missing, as required by HTTP 1.1. Original Patch from Ralph Moritz.
* Fix a memory leak in which failed HTTP connections whould not free the request object.
* Fix a memory leak in the DNS server.
* Handle NULL timeouts correctly on Solaris; from Trond Norbye
* Recalculate pending events properly when reallocating event array on Solaris; from Trond Norbye
-------------------------------------------------------------------
Mon Mar 5 14:00:29 CET 2007 - meissner@suse.de

View File

@ -1,5 +1,5 @@
#
# spec file for package libevent (Version 1.3b)
# spec file for package libevent (Version 1.3e)
#
# Copyright (c) 2007 SUSE LINUX Products GmbH, Nuernberg, Germany.
# This file and all modifications and additions to the pristine
@ -11,18 +11,17 @@
# norootforbuild
Name: libevent
URL: http://monkey.org/~provos/libevent/
Url: http://monkey.org/~provos/libevent/
Summary: Library Providing an Event Handling API
Version: 1.3b
Version: 1.3e
Release: 1
Group: Development/Libraries/C and C++
License: BSD License and BSD-like
License: BSD 3-Clause
BuildRoot: %{_tmppath}/%{name}-%{version}-build
PreReq: %fillup_prereq %insserv_prereq
Autoreqprov: on
BuildRoot: %{_tmppath}/%{name}-%{version}-build
Source: http://monkey.org/~provos/libevent-%{version}.tar.gz
Patch0: libevent-1.3a-optflags.patch
Source: http://monkey.org/~provos/libevent-%{version}.tar.bz2
Source1: libevent-1.3e-rpmlintrc
%description
The libevent library provides a mechanism to execute a function when a
@ -37,7 +36,6 @@ Authors:
%prep
%setup -q
%patch0 -p1
%build
autoreconf -i -f
@ -50,6 +48,10 @@ make DESTDIR=$RPM_BUILD_ROOT install
%clean
rm -rf $RPM_BUILD_ROOT
%post -p /sbin/ldconfig
%postun -p /sbin/ldconfig
%files
%defattr(-,root,root)
%{_libdir}/lib*
@ -58,6 +60,14 @@ rm -rf $RPM_BUILD_ROOT
%{_mandir}/man?/*
%changelog
* Thu Dec 27 2007 - crrodriguez@suse.de
- fix library-without-ldconfig-* errors
- version 1.3e
* Add a "Date" header to HTTP responses when it's missing, as required by HTTP 1.1. Original Patch from Ralph Moritz.
* Fix a memory leak in which failed HTTP connections whould not free the request object.
* Fix a memory leak in the DNS server.
* Handle NULL timeouts correctly on Solaris; from Trond Norbye
* Recalculate pending events properly when reallocating event array on Solaris; from Trond Norbye
* Mon Mar 05 2007 - meissner@suse.de
- upgraded to 1.3b:
+ signals now useable in multithreaded apps.