Hello community, here is the log from the commit of package libmicrohttpd for openSUSE:Factory checked in at 2019-11-04 17:00:39 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/libmicrohttpd (Old) and /work/SRC/openSUSE:Factory/.libmicrohttpd.new.2990 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "libmicrohttpd" Mon Nov 4 17:00:39 2019 rev:36 rq:742821 version:0.9.67 Changes: -------- --- /work/SRC/openSUSE:Factory/libmicrohttpd/libmicrohttpd.changes 2019-08-07 13:59:51.156853890 +0200 +++ /work/SRC/openSUSE:Factory/.libmicrohttpd.new.2990/libmicrohttpd.changes 2019-11-04 17:00:40.739893409 +0100 @@ -1,0 +2,8 @@ +Thu Oct 24 19:45:52 UTC 2019 - Andreas Stieger <[email protected]> + +- update to 0.9.67: + * improvements that eliminate system and C library calls +- drop libmicrohttpd-0.9.66-fix-gnutls-dependency.patch, upstream +- add libmicrohttpd-0.9.67-fix-nonvoid-return.patch from upstream + +------------------------------------------------------------------- Old: ---- libmicrohttpd-0.9.66-fix-gnutls-dependency.patch libmicrohttpd-0.9.66.tar.gz libmicrohttpd-0.9.66.tar.gz.sig New: ---- libmicrohttpd-0.9.67-fix-nonvoid-return.patch libmicrohttpd-0.9.67.tar.gz libmicrohttpd-0.9.67.tar.gz.sig ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ libmicrohttpd.spec ++++++ --- /var/tmp/diff_new_pack.nyOOcj/_old 2019-11-04 17:00:41.503894229 +0100 +++ /var/tmp/diff_new_pack.nyOOcj/_new 2019-11-04 17:00:41.515894242 +0100 @@ -20,7 +20,7 @@ %global sover 12 %global libname %{name}%{sover} Name: libmicrohttpd -Version: 0.9.66 +Version: 0.9.67 Release: 0 Summary: Small Embeddable HTTP Server Library # Some internal tests are licenced as GPL-3.0+ - they are only used in @@ -31,7 +31,7 @@ Source0: https://ftp.gnu.org/gnu/libmicrohttpd/%{name}-%{version}.tar.gz Source1: https://ftp.gnu.org/gnu/libmicrohttpd/%{name}-%{version}.tar.gz.sig Source2: https://savannah.gnu.org/project/memberlist-gpgkeys.php?group=%{name}&download=1#/%{name}.keyring -Patch0: libmicrohttpd-0.9.66-fix-gnutls-dependency.patch +Patch0: libmicrohttpd-0.9.67-fix-nonvoid-return.patch BuildRequires: libtool BuildRequires: makeinfo BuildRequires: pkgconfig >= 0.9.0 ++++++ libmicrohttpd-0.9.67-fix-nonvoid-return.patch ++++++ >From 093c83c2270e18294811f394c9af87a2cb56ea20 Mon Sep 17 00:00:00 2001 From: Christian Grothoff <[email protected]> Date: Thu, 17 Oct 2019 23:10:34 +0200 Subject: fix missing ret, thanks, Markus --- src/microhttpd/mhd_sockets.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/microhttpd/mhd_sockets.c b/src/microhttpd/mhd_sockets.c index 7929c07a..ad2f91bc 100644 --- a/src/microhttpd/mhd_sockets.c +++ b/src/microhttpd/mhd_sockets.c @@ -530,6 +530,8 @@ MHD_socket_cork_ (MHD_socket sock, return 0; /* even force flush failed!? */ return 1; /* success */ } +#else + return 1; /* success */ #endif #else /* do not have MHD_TCP_CORK_NOPUSH at all */ -- cgit v1.2.1 ++++++ libmicrohttpd-0.9.66.tar.gz -> libmicrohttpd-0.9.67.tar.gz ++++++ ++++ 83618 lines of diff (skipped)
