472730ba4f
* Change ne_sock_close() to no longer wait for SSL closure alert: o fixes possible hang with IIS servers when closing SSL connection o this reverts the behaviour with OpenSSL to match 0.28.x, and changes the behaviour with GnuTLS to match that with OpenSSL * Fix memory leak with GnuTLS * API clarification in ne_sock_close(): o SSL closure handling now documented o return value semantics fixed to describe the implementation
33 lines
864 B
Makefile
33 lines
864 B
Makefile
# $NetBSD: Makefile,v 1.52 2010/03/11 12:24:58 gdt Exp $
|
|
|
|
DISTNAME= neon-0.29.3
|
|
CATEGORIES= www
|
|
MASTER_SITES= http://www.webdav.org/neon/
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://www.webdav.org/neon/
|
|
COMMENT= HTTP and WebDAV client library
|
|
LICENSE= gnu-gpl-v2 AND gnu-lgpl-v2
|
|
|
|
PKG_INSTALLATION_TYPES= overwrite pkgviews
|
|
PKG_DESTDIR_SUPPORT= user-destdir
|
|
|
|
USE_LIBTOOL= yes
|
|
USE_TOOLS+= pkg-config msgfmt
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS+= --enable-shared
|
|
CONFIGURE_ARGS+= --with-expat
|
|
CONFIGURE_ARGS+= --with-ssl=yes
|
|
|
|
PKGCONFIG_OVERRIDE= neon.pc.in
|
|
TEST_TARGET= check
|
|
#selftest needs perl
|
|
#USE_TOOLS+= perl
|
|
|
|
.include "options.mk"
|
|
|
|
.include "../../devel/gettext-lib/buildlink3.mk"
|
|
.include "../../devel/zlib/buildlink3.mk"
|
|
.include "../../security/openssl/buildlink3.mk"
|
|
.include "../../textproc/expat/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|