OBS User unknown 2007-02-25 22:27:17 +00:00 committed by Git OBS Bridge
parent 963bfb8ee1
commit f7de6f8c10
5 changed files with 41 additions and 15 deletions

View File

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

View File

@ -0,0 +1,11 @@
--- 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

3
libevent-1.3a.tar.gz Normal file
View File

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

View File

@ -1,3 +1,13 @@
-------------------------------------------------------------------
Tue Feb 20 13:17:44 CET 2007 - meissner@suse.de
- Updated to 1.3a.
+ Small bug and performances fixes to evhttp layer.
+ DNS Server from Adam Langley and Nick Mathewson
+ Chunked transfer encoding for HTTP/1.1 from Dug Song.
+ DNS DDoS fix; bug report from Jon Oberheide.
+ Various small improvements.
-------------------------------------------------------------------
Sun Nov 12 19:04:24 CET 2006 - lmuelle@suse.de

View File

@ -1,7 +1,7 @@
#
# spec file for package libevent (Version 1.2)
# spec file for package libevent (Version 1.3a)
#
# Copyright (c) 2006 SUSE LINUX Products GmbH, Nuernberg, Germany.
# Copyright (c) 2007 SUSE LINUX Products GmbH, Nuernberg, Germany.
# This file and all modifications and additions to the pristine
# package are under the same license as the package itself.
#
@ -13,8 +13,8 @@
Name: libevent
URL: http://monkey.org/~provos/libevent/
Summary: Library Providing an Event Handling API
Version: 1.2
Release: 2
Version: 1.3a
Release: 1
Group: Development/Libraries/C and C++
License: BSD License and BSD-like
BuildRoot: %{_tmppath}/%{name}-%{version}-build
@ -22,6 +22,7 @@ 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
%description
The libevent library provides a mechanism to execute a function when a
@ -35,15 +36,12 @@ Authors:
Nils Provos <provos@citi.umich.edu>
%prep
%setup -q
%setup -q
%patch0 -p1
%build
%{?suse_update_config:%{suse_update_config -f }}
autoconf
CFLAGS="$RPM_OPT_FLAGS" ./configure \
--prefix=/usr \
--libdir=%{_libdir} \
--mandir=%{_mandir}
autoreconf -i -f
%configure
make
%install
@ -59,7 +57,14 @@ rm -rf $RPM_BUILD_ROOT
%{_includedir}/*.h
%{_mandir}/man?/*
%changelog -n libevent
%changelog
* Tue Feb 20 2007 - meissner@suse.de
- Updated to 1.3a.
+ Small bug and performances fixes to evhttp layer.
+ DNS Server from Adam Langley and Nick Mathewson
+ Chunked transfer encoding for HTTP/1.1 from Dug Song.
+ DNS DDoS fix; bug report from Jon Oberheide.
+ Various small improvements.
* Sun Nov 12 2006 - lmuelle@suse.de
- Update to version 1.2.
+ Support for non-blocking DNS resolution.