0.22.0 (2020-05-12) + Added a flag to fz::file to allow creation of files with permissions only granting the current user access + Added fz::mkdir to create local directories, optionally recursive and with permissions to only grant the current user access to the final directory - MSW: Improvements handling directory reparse points - Lengthen partial certificate chains in fz::tls_info to include any found trust anchor if using the system trust store - Mark self-signed certificates in the in fz::x509_certificate - Fix constructing fz::uri from default-constructed string_view 0.21.0 (2020-04-20) + macOS: fz::spawn_detached_process can now start application bundles + Changed arguments of fz::local_filesys::get_next_file to be consistent with fz::local_filesys::get_file_info - Improved error detection for fz::spawn_detached-process on *nix systems that support the pipe2 syscall with O_CLOEXEC
34 lines
943 B
Makefile
34 lines
943 B
Makefile
# $NetBSD: Makefile,v 1.31 2020/06/10 15:13:50 wiz Exp $
|
|
|
|
DISTNAME= libfilezilla-0.22.0
|
|
CATEGORIES= net
|
|
# some kind of direct-download disabling
|
|
#MASTER_SITES= https://dl3.cdn.filezilla-project.org/libfilezilla/
|
|
EXTRACT_SUFX= .tar.bz2
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= https://lib.filezilla-project.org/
|
|
COMMENT= Library for building high-performing, platform-independent programs
|
|
LICENSE= gnu-gpl-v2
|
|
|
|
GNU_CONFIGURE= yes
|
|
USE_LIBTOOL= yes
|
|
USE_TOOLS+= gmake msgfmt pkg-config
|
|
USE_LANGUAGES= c c++17
|
|
|
|
PKGCONFIG_OVERRIDE+= lib/libfilezilla.pc.in
|
|
|
|
# for C++17
|
|
GCC_REQD+= 7
|
|
|
|
# As of 0.19, 64-bit atomic ops are required
|
|
.if ${MACHINE_ARCH} == "i386"
|
|
CXXFLAGS+= -march=i586
|
|
.endif
|
|
|
|
BUILDLINK_API_DEPENDS.nettle+= nettle>=3.1
|
|
.include "../../security/nettle/buildlink3.mk"
|
|
BUILDLINK_API_DEPENDS.gnutls+= gnutls>=3.5.7
|
|
.include "../../security/gnutls/buildlink3.mk"
|
|
.include "../../mk/pthread.buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|