diff options
author | Vladimir Druzenko <vvd@FreeBSD.org> | 2024-06-30 15:56:53 +0000 |
---|---|---|
committer | Vladimir Druzenko <vvd@FreeBSD.org> | 2024-06-30 15:56:53 +0000 |
commit | b3cdf3b626d17fc7b63d9ea1e8468685623d6964 (patch) | |
tree | 4aa83e5dbbd550a8a6423d45081729280dada2fe | |
parent | df273cfb9557ba2dc27f4f22c2cdd14b2ff42bcc (diff) |
audio/murmur: fix build with Ice with modern LLVM "no template named 'binary_function' in namespace 'std'; did you mean '__binary_function'?"
PR: 279873
-rw-r--r-- | audio/murmur/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/audio/murmur/Makefile b/audio/murmur/Makefile index 0f0a898268b0..b019cb2fea3f 100644 --- a/audio/murmur/Makefile +++ b/audio/murmur/Makefile @@ -1,5 +1,6 @@ PORTNAME= murmur -PORTVERSION= 1.3.4 +DISTVERSION= 1.3.4 +PORTREVISION= 1 CATEGORIES= audio net MAINTAINER= vvd@FreeBSD.org @@ -47,7 +48,7 @@ BONJOUR_VARS_OFF= CONFIG+=no-bonjour DBUS_USE= QT=dbus DBUS_VARS_OFF= CONFIG+=no-dbus -ICE_LIB_DEPENDS= libIce.so:devel/ice +ICE_LIB_DEPENDS= libIce.so:devel/ice37 ICE_VARS_OFF= CONFIG+=no-ice MYSQL_USE= QT=sql-mysql |