diff options
author | adam <adam@pkgsrc.org> | 2013-10-22 12:15:53 +0000 |
---|---|---|
committer | adam <adam@pkgsrc.org> | 2013-10-22 12:15:53 +0000 |
commit | a9c75bd0cb9c791285a822cca96ec9f91dee2f34 (patch) | |
tree | 4b3323cadfe79d7a4ed4b856ce86e6dcd65a856b /www/libmicrohttpd/Makefile | |
parent | c474186a34eada8afa0967105e3907db613ed749 (diff) | |
download | pkgsrc-a9c75bd0cb9c791285a822cca96ec9f91dee2f34.tar.gz |
Changes 0.9.31:
* Fixing build issues on OS X with CLOCK_MONOTONIC not being implemented on OS X.
* Make libmicrohttpd play nicely with upcoming libgcrypt 1.6.0.
* Improved configure checks for cURL.
* Signal connection termination as OK (and not as ERROR) if the
stream was terminated by the callback returning
MHD_CONTENT_READER_END_OF_STREAM. Also, release response
mutex before calling the termination callback, to avoid
possible deadlock if the client destroys the response in
the termination callback (due to non-recursiveness of the lock).
* Adding #define MHD_HTTP_HEADER_ACCESS_CONTROL_ALLOW_ORIGIN.
* Also pass MHD connection handle in URI log callback.
* Improved check for proper OpenSSL version for libmicrospdy.
* Set IPV6_V6ONLY socket option correctly when IPv6 is
enabled (MHD_USE_IPv6) but not dual stack (MHD_USE_DUAL_STACK).
Diffstat (limited to 'www/libmicrohttpd/Makefile')
-rw-r--r-- | www/libmicrohttpd/Makefile | 19 |
1 files changed, 10 insertions, 9 deletions
diff --git a/www/libmicrohttpd/Makefile b/www/libmicrohttpd/Makefile index 2e84dbe03d5..8cd3e60399e 100644 --- a/www/libmicrohttpd/Makefile +++ b/www/libmicrohttpd/Makefile @@ -1,8 +1,6 @@ -# $NetBSD: Makefile,v 1.15 2013/02/06 23:24:01 jperkin Exp $ -# +# $NetBSD: Makefile,v 1.16 2013/10/22 12:15:53 adam Exp $ -DISTNAME= libmicrohttpd-0.9.25 -PKGREVISION= 1 +DISTNAME= libmicrohttpd-0.9.31 CATEGORIES= www MASTER_SITES= ${MASTER_SITE_GNU:=libmicrohttpd/} @@ -11,15 +9,18 @@ HOMEPAGE= http://www.gnu.org/software/libmicrohttpd/ COMMENT= Small C library to run an HTTP server as part of another app LICENSE= gnu-lgpl-v2.1 -GNU_CONFIGURE= yes -USE_LIBTOOL= yes -USE_TOOLS+= pkg-config -INFO_FILES= yes +USE_LIBTOOL= yes +USE_TOOLS+= pkg-config +GNU_CONFIGURE= yes +# Too many problems with libmicrospdy at the moment (0.9.31) +CONFIGURE_ARGS+= --disable-spdy +# Avoid building and installing 'demo' program +CONFIGURE_ENV+= ac_cv_header_magic_h=no +INFO_FILES= yes PKGCONFIG_OVERRIDE+= libmicrohttpd.pc.in .include "../../security/libgcrypt/buildlink3.mk" .include "../../security/gnutls/buildlink3.mk" .include "../../www/curl/buildlink3.mk" - .include "../../mk/bsd.pkg.mk" |