OBS User unknown 2007-07-18 20:11:00 +00:00 committed by Git OBS Bridge
parent 04f948f20f
commit 0da8a25dab
4 changed files with 46 additions and 24 deletions

View File

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

3
neon-0.26.4.tar.bz2 Normal file
View File

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

View File

@ -1,3 +1,19 @@
-------------------------------------------------------------------
Tue Jul 17 10:43:17 CEST 2007 - prusnak@suse.cz
- update to 0.26.4
* Fix Negotiate Authentication-Info response header verification with GSSAPI
* Fix multiple handlers with ne_add_{server,proxy}_auth (Werner Baumann)
* Fix SSPI build with some versions of MinGW (Gisle Vanem)
* Fix for SSPI segfault in response header verification (Mike DiCuccio)
* Fix error strings for CONNECT SSL proxy tunnel request failure
* Fix install-nls for VPATH builds (Hans Meine)
* Fix use of unencrypted client certs with GnuTLS
* Fix ne_lock* If: header insertion to use CRLF-terminated headers
* Fix test suite failures on QNX by working around send() length limit
* Fix handling of POSIX strerror_r failure case in ne_strerror
* Fix alignment issues in test suite MD5 code
-------------------------------------------------------------------
Fri Apr 27 23:14:39 CEST 2007 - dmueller@suse.de

View File

@ -1,5 +1,5 @@
#
# spec file for package neon (Version 0.26.3)
# spec file for package neon (Version 0.26.4)
#
# Copyright (c) 2007 SUSE LINUX Products GmbH, Nuernberg, Germany.
# This file and all modifications and additions to the pristine
@ -13,9 +13,9 @@
Name: neon
BuildRequires: libexpat-devel openssl-devel zlib-devel
Summary: An HTTP and WebDAV Client Library
Version: 0.26.3
Release: 14
License: GNU General Public License (GPL)
Version: 0.26.4
Release: 1
License: GPL v2 or later
Group: Development/Libraries/Other
URL: http://www.webdav.org/neon
BuildRoot: %{_tmppath}/%{name}-%{version}-build
@ -74,31 +74,24 @@ Authors:
%build
rm -f aclocal.m4 ltmain.sh
sh autogen.sh
CFLAGS="$RPM_OPT_FLAGS -g -Wall" \
./configure --prefix=/usr \
--sysconfdir=/etc \
--libdir=%{_libdir} \
--mandir=%{_mandir} \
--infodir=%{_infodir} \
--with-ssl \
--disable-nls \
--enable-shared \
--enable-warnings
%configure \
--with-ssl \
--disable-nls \
--enable-shared \
--enable-warnings
make %{?jobs:-j%jobs}
%install
rm -rf $RPM_BUILD_ROOT
mkdir -p $RPM_BUILD_ROOT/usr
make DESTDIR=$RPM_BUILD_ROOT docdir=%{_defaultdocdir}/neon install install-man install-html
make DESTDIR=$RPM_BUILD_ROOT docdir=%{_defaultdocdir}/%{name} install install-man install-html
%clean
rm -rf $RPM_BUILD_ROOT
%post
%run_ldconfig
/sbin/ldconfig
%postun
%run_ldconfig
/sbin/ldconfig
%files
%defattr(-,root,root)
@ -109,8 +102,8 @@ rm -rf $RPM_BUILD_ROOT
%defattr(-,root,root)
%doc doc/*.txt doc/html
%defattr(-,root,root)
/usr/bin/neon-config
/usr/include/neon
%{_bindir}/neon-config
%{_includedir}/neon
%{_mandir}/*/*
%{_libdir}/*.a
%{_libdir}/*.la
@ -118,6 +111,19 @@ rm -rf $RPM_BUILD_ROOT
%{_libdir}/pkgconfig/neon.pc
%changelog
* Tue Jul 17 2007 - prusnak@suse.cz
- update to 0.26.4
* Fix Negotiate Authentication-Info response header verification with GSSAPI
* Fix multiple handlers with ne_add_{server,proxy}_auth (Werner Baumann)
* Fix SSPI build with some versions of MinGW (Gisle Vanem)
* Fix for SSPI segfault in response header verification (Mike DiCuccio)
* Fix error strings for CONNECT SSL proxy tunnel request failure
* Fix install-nls for VPATH builds (Hans Meine)
* Fix use of unencrypted client certs with GnuTLS
* Fix ne_lock* If: header insertion to use CRLF-terminated headers
* Fix test suite failures on QNX by working around send() length limit
* Fix handling of POSIX strerror_r failure case in ne_strerror
* Fix alignment issues in test suite MD5 code
* Fri Apr 27 2007 - dmueller@suse.de
- fix buildrequires
* Tue Apr 17 2007 - prusnak@suse.cz