diff options
author | Muhammad Moinur Rahman <bofh@FreeBSD.org> | 2023-05-06 00:45:37 +0200 |
---|---|---|
committer | Muhammad Moinur Rahman <bofh@FreeBSD.org> | 2023-05-06 16:39:02 +0200 |
commit | 5f6a91b20b0cc19367288d4b73cf7434850fb39c (patch) | |
tree | 17da8e98bfef28b0d22f2a5481ddd79161a08f3c /security/py-python-axolotl-curve25519 | |
parent | emulators/qemu: Update version 7.2.1=>8.0.0 (diff) |
security/py-python-axolotl-curve25519: Unbreak on HEAD
Approved by: portmgr (blanket)
Diffstat (limited to 'security/py-python-axolotl-curve25519')
-rw-r--r-- | security/py-python-axolotl-curve25519/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/security/py-python-axolotl-curve25519/Makefile b/security/py-python-axolotl-curve25519/Makefile index bba1857a8a05..be5753626fe8 100644 --- a/security/py-python-axolotl-curve25519/Makefile +++ b/security/py-python-axolotl-curve25519/Makefile @@ -14,7 +14,13 @@ LICENSE= GPLv3 USES= python:3.6+ USE_PYTHON= autoplist distutils +.include <bsd.port.pre.mk> + +.if ${OPSYS} == FreeBSD && ${OSVERSION} >= 1400079 +CFLAGS+= -Wno-error=int-conversion +.endif + post-install: ${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/axolotl_curve25519*.so -.include <bsd.port.mk> +.include <bsd.port.post.mk> |