diff options
author | Jason E. Hale <jhale@FreeBSD.org> | 2022-09-15 23:26:18 -0400 |
---|---|---|
committer | Jason E. Hale <jhale@FreeBSD.org> | 2022-09-15 23:56:45 -0400 |
commit | 5a19c0823bb11a2d2da10a3d92a574a8aafcb661 (patch) | |
tree | 9abec8ddedf592d7915de09722fc31908484d1c8 /archivers/urbackup-server | |
parent | finance/kmymoney: Update to 5.1.3 (diff) |
security/cryptopp: Update to 8.7.0
Drop most of the SIMD logic. The cryptopp Makefile autodetects CPU
features regardless if CPUTYPE is set and it is not possible to disable
specific instruction sets. It is only possible to completely disable
assembly optimizations, which is recommended for package building unless
all consumer machines support the build machine's CPU instruction sets.
Since version 8.1, it is no longer necessary to export
-DCRYPTOPP_DISABLE_ASM to the pkgconfig file. Consumers will now
build without it defined if the SIMD option is disabled. Remove old
workarounds pertaining to this issue.
https://github.com/weidai11/cryptopp/issues/779
Bump PORTREVISION on consumers due to ABI incompatibility.
https://www.cryptopp.com/release870.html
Diffstat (limited to 'archivers/urbackup-server')
-rw-r--r-- | archivers/urbackup-server/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/archivers/urbackup-server/Makefile b/archivers/urbackup-server/Makefile index 87d6c189a8be..05e8969b1d46 100644 --- a/archivers/urbackup-server/Makefile +++ b/archivers/urbackup-server/Makefile @@ -1,5 +1,6 @@ PORTNAME= urbackup-server DISTVERSION= 2.5.26 +PORTREVISION= 1 CATEGORIES= archivers MASTER_SITES= https://hndl.urbackup.org/Server/${DISTVERSION}/ @@ -21,7 +22,6 @@ USE_RC_SUBR= urbackup_server GNU_CONFIGURE= yes CONFIGURE_ARGS= --enable-packaging --with-mountvhd --without-embedded-sqlite3 --without-embedded-lmdb --without-embedded-lua -CXXFLAGS+= `pkgconf --cflags-only-other libcryptopp` LDFLAGS+= -L${LOCALBASE}/lib SUB_FILES= pkg-message urbackupsrv.conf.sample-daemon |