0.4.6
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/libmicrohttpd?expand=0&rev=2
This commit is contained in:
parent
9d1c36fed4
commit
a3b8978fe2
@ -1,3 +1,9 @@
|
||||
libmicrohttpd (0.4.6-1) unstable; urgency=low
|
||||
|
||||
* Updated to 0.4.6.
|
||||
|
||||
-- Pascal Bleser <pascal.bleser@opensuse.org> Mon, 15 Mar 2010 09:37:00 +0100
|
||||
|
||||
libmicrohttpd (0.4.5-1) unstable; urgency=low
|
||||
|
||||
* Updated to 0.4.5.
|
||||
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:138e89fbb114cf8bb564ed884d1da99e2c0634f4c11887f42dfdddabf7d52eab
|
||||
size 878634
|
3
libmicrohttpd-0.4.6.tar.gz
Normal file
3
libmicrohttpd-0.4.6.tar.gz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:0cb09e26678d1531a4fd40a748abff5142bfdad3ae11cfe3bb7ad7317a99e371
|
||||
size 881407
|
@ -1,3 +1,12 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 15 08:35:12 UTC 2010 - pascal.bleser@opensuse.org
|
||||
|
||||
- update to 0.4.6:
|
||||
* fixes use of poll causing busy waiting
|
||||
* fixes a segfault if inconsistent options were used
|
||||
* fixes SSL support on big-endian architectures
|
||||
* fixes an issue with error signalling for PUT/POST requests in HTTP 1.1
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 2 13:10:52 UTC 2010 - bitshuffler #suse@irc.freenode.org
|
||||
|
||||
|
@ -3,7 +3,7 @@
|
||||
%define soname 5
|
||||
|
||||
Name: libmicrohttpd
|
||||
Version: 0.4.5
|
||||
Version: 0.4.6
|
||||
Release: 1.0
|
||||
License: GNU LGPL v2.1
|
||||
Group: Productivity/Networking/Web/Servers
|
||||
@ -84,7 +84,7 @@ libmicrohttpd was started because the author needed an easy way to add a concurr
|
||||
--enable-messages \
|
||||
--enable-https \
|
||||
--enable-client-side
|
||||
%__make %{?_smp_mflags}
|
||||
%__make %{?_smp_mflags} %{?jobs:-j%{jobs}}
|
||||
|
||||
%install
|
||||
%makeinstall
|
||||
@ -98,7 +98,7 @@ find %{buildroot} -name *.la -exec %__rm {} \;
|
||||
|
||||
%post devel
|
||||
%if 0%{?fedora_version}
|
||||
/sbin/install-info --info-dir=%{_infodir} --info-file=%{_infodir}/microhttpd.info.gz
|
||||
/sbin/install-info --info-dir=%{_infodir} --info-file=%{_infodir}/microhttpd.info%{ext_info}
|
||||
%endif
|
||||
|
||||
%if 0%{?mandriva_version}
|
||||
@ -106,14 +106,14 @@ find %{buildroot} -name *.la -exec %__rm {} \;
|
||||
%endif
|
||||
|
||||
%if 0%{?suse_version}
|
||||
%install_info --info-dir=%{_infodir} %{_infodir}/libmicrohttpd.info.gz
|
||||
%install_info --info-dir=%{_infodir} %{_infodir}/libmicrohttpd.info%{ext_info}
|
||||
%endif
|
||||
|
||||
%postun -n %{name}%{soname} -p /sbin/ldconfig
|
||||
|
||||
%postun devel
|
||||
%if 0%{?fedora_version}
|
||||
/sbin/install-info --delete --info-dir=%{_infodir} --info-file=%{_infodir}/microhttpd.info.gz
|
||||
/sbin/install-info --delete --info-dir=%{_infodir} --info-file=%{_infodir}/microhttpd.info%{ext_info}
|
||||
%endif
|
||||
|
||||
%if 0%{?mandriva_version}
|
||||
@ -121,23 +121,24 @@ find %{buildroot} -name *.la -exec %__rm {} \;
|
||||
%endif
|
||||
|
||||
%if 0%{?suse_version}
|
||||
%install_info_delete --info-dir=%{_infodir} %{_infodir}/libmicrohttpd.info.gz
|
||||
%install_info_delete --info-dir=%{_infodir} %{_infodir}/libmicrohttpd.info%{ext_info}
|
||||
%endif
|
||||
|
||||
%clean
|
||||
test "%{buildroot}" != "/" && %__rm -rf %{buildroot}
|
||||
test "%{buildroot}" != "/" && %__rm -rf "%{buildroot}"
|
||||
|
||||
%files -n %{name}%{soname}
|
||||
%defattr(-,root,root)
|
||||
%{_libdir}/libmicrohttpd.so.%{soname}*
|
||||
%{_libdir}/libmicrohttpd.so.%{soname}
|
||||
%{_libdir}/libmicrohttpd.so.%{soname}.*
|
||||
|
||||
%files devel
|
||||
%defattr(-,root,root)
|
||||
%{_includedir}/microhttpd.h
|
||||
%{_libdir}/libmicrohttpd.so
|
||||
%{_libdir}/pkgconfig/libmicrohttpd.pc
|
||||
%{_infodir}/microhttpd.info*
|
||||
%{_mandir}/man3/libmicrohttpd.3*
|
||||
%{_infodir}/microhttpd.info%{ext_info}
|
||||
%{_mandir}/man3/libmicrohttpd.3%{ext_man}
|
||||
|
||||
# Do NOT delete this cause I need it for Fedora & Mandriva too!
|
||||
%if 0%{?fedora_version}
|
||||
|
Loading…
Reference in New Issue
Block a user