diff options
author | Nuno Teixeira <eduardo@FreeBSD.org> | 2023-09-18 09:59:53 +0000 |
---|---|---|
committer | Nuno Teixeira <eduardo@FreeBSD.org> | 2023-09-18 10:04:58 +0000 |
commit | 1e3cc69e40c42b8c28496e0d86af554b88e70ff0 (patch) | |
tree | 98245668148705f69e82f12e4278304985b03d81 | |
parent | 146048dfd129337294464af6319110de316d28cf (diff) | |
download | ports-1e3cc69e40c42b8c28496e0d86af554b88e70ff0.tar.gz ports-1e3cc69e40c42b8c28496e0d86af554b88e70ff0.zip |
security/uacme: Fix use system libev
Vendored libev was in use because configure didn't found system libev
added in 7ddc39e
-rw-r--r-- | security/uacme/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/security/uacme/Makefile b/security/uacme/Makefile index 69350c1ada33..7818afd129db 100644 --- a/security/uacme/Makefile +++ b/security/uacme/Makefile @@ -1,6 +1,7 @@ PORTNAME= uacme DISTVERSIONPREFIX= upstream/ DISTVERSION= 1.7.4 +PORTREVISION= 1 CATEGORIES= security www MAINTAINER= eduardo@FreeBSD.org @@ -43,6 +44,8 @@ OPENSSL_USES= ssl OPENSSL_CONFIGURE_WITH= openssl=${OPENSSLBASE} UALPN_LIB_DEPENDS= libev.so:devel/libev UALPN_CONFIGURE_WITH= ualpn +UALPN_CONFIGURE_ENV= CFLAGS="`pkgconf --cflags libev`" \ + LDFLAGS="`pkgconf --libs libev`" post-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} |