View | Details | Raw Unified | Return to bug 256583
Collapse All | Expand All

(-)b/audio/lame/Makefile (-3 / +1 lines)
Lines 2-8 Link Here
2
2
3
PORTNAME=	lame
3
PORTNAME=	lame
4
PORTVERSION=	3.100
4
PORTVERSION=	3.100
5
PORTREVISION=	2
5
PORTREVISION=	3
6
CATEGORIES=	audio
6
CATEGORIES=	audio
7
MASTER_SITES=	SF/${PORTNAME:tl}/${PORTNAME:tl}/3.100
7
MASTER_SITES=	SF/${PORTNAME:tl}/${PORTNAME:tl}/3.100
8
8
Lines 12-19 COMMENT= Fast MP3 encoder kit Link Here
12
LICENSE=		LGPL20+
12
LICENSE=		LGPL20+
13
LICENSE_FILE=	${WRKSRC}/COPYING
13
LICENSE_FILE=	${WRKSRC}/COPYING
14
14
15
BROKEN_riscv64=	fails to compile: needs FP_X_INV from empty sys/riscv/include/ieeefp.h
16
17
USES=		gmake iconv libtool
15
USES=		gmake iconv libtool
18
USE_LDCONFIG=	yes
16
USE_LDCONFIG=	yes
19
GNU_CONFIGURE=	yes
17
GNU_CONFIGURE=	yes
(-)b/audio/lame/files/patch-libmp3lame_util.c (-1 / +14 lines)
Added Link Here
0
- 
1
--- libmp3lame/util.c.orig	2021-06-11 15:08:59 UTC
2
+++ libmp3lame/util.c
3
@@ -843,9 +843,8 @@ disable_FPE(void)
4
      */
5
 
6
 
7
-
8
-
9
-#if defined(__FreeBSD__) && !defined(__alpha__)
10
+/* https://reviews.llvm.org/D89557 */
11
+#if defined(__FreeBSD__) && defined(FP_X_INV) && defined(FP_X_DZ)
12
     {
13
         /* seet floating point mask to the Linux default */
14
         fp_except_t mask;

Return to bug 256583