b79d6e86e5
libgcrypt doesn't get used if openssl is installed. There's no way of disabling openssl if it's found. Fix infodir using SUBST. Depends on latest version of ucommon. From ChangeLog: Changes from 2.1.1 to 2.1.2 - use ucommon cmake macros - copyright assignment to Cherokees of Idaho - copyright updates and corrections to bring current Changes from 2.1.0 to 2.1.1 - fix endianness checks - cleanup alloc/dealloc - configure: fix libtoolize warning - requires ucommon 6.2.2 for endian fixes Changes from 2.0.9 to 2.1.0 - configure: add option to disable compilation of demos - OSX: Check for macports glibtoolize. - modernized cmake - use standard header for malloc - uptick of abi version for ucommon 2014-04-14 David Sugar (for 2.0.9) Merged fix from Alexandre Lision for initial rtcp seq #
26 lines
644 B
Makefile
26 lines
644 B
Makefile
# $NetBSD: buildlink3.mk,v 1.5 2015/04/18 03:11:47 rodent Exp $
|
|
|
|
BUILDLINK_TREE+= ccrtp
|
|
|
|
.if !defined(CCRTP_BUILDLINK3_MK)
|
|
CCRTP_BUILDLINK3_MK:=
|
|
|
|
BUILDLINK_API_DEPENDS.ccrtp+= ccrtp>=2.0.0
|
|
BUILDLINK_ABI_DEPENDS.ccrtp?= ccrtp>=2.0.6nb2
|
|
BUILDLINK_PKGSRCDIR.ccrtp?= ../../net/ccrtp
|
|
|
|
pkgbase := ccrtp
|
|
.include "../../mk/pkg-build-options.mk"
|
|
|
|
.if !empty(PKG_BUILD_OPTIONS.ccrtp:Mlibgcrypt)
|
|
.include "../../security/libgcrypt/buildlink3.mk"
|
|
.endif
|
|
|
|
.if !empty(PKG_BUILD_OPTIONS.ccrtp:Mopenssl)
|
|
.include "../../security/openssl/buildlink3.mk"
|
|
.endif
|
|
|
|
.include "../../devel/ucommon/buildlink3.mk"
|
|
.endif # CCRTP_BUILDLINK3_MK
|
|
|
|
BUILDLINK_TREE+= -ccrtp
|