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

(-)Makefile (-9 / +1 lines)
Lines 19-37 Link Here
19
LICENSE_PERMS_CeCILL_C=	dist-mirror dist-sell pkg-mirror pkg-sell auto-accept
19
LICENSE_PERMS_CeCILL_C=	dist-mirror dist-sell pkg-mirror pkg-sell auto-accept
20
LICENSE_PERMS_CeCILL=	dist-mirror dist-sell pkg-mirror pkg-sell auto-accept
20
LICENSE_PERMS_CeCILL=	dist-mirror dist-sell pkg-mirror pkg-sell auto-accept
21
21
22
BROKEN_aarch64=		invokes x86 assembler
23
BROKEN_armv6=		invokes x86 assembler
24
BROKEN_armv7=		invokes x86 assembler
25
BROKEN_mips=		invokes x86 assembler
26
BROKEN_mips64=		invokes x86 assembler
27
BROKEN_sparc64=		invokes x86 assembler
28
BROKEN_powerpc64=	invokes x86 assembler
29
30
USE_GITHUB=	yes
22
USE_GITHUB=	yes
31
GH_ACCOUNT=	dtschump
23
GH_ACCOUNT=	dtschump
32
GH_PROJECT=	CImg
24
GH_PROJECT=	CImg
33
25
34
USES=	xorg
26
USES=	compiler:c11 xorg
35
27
36
.if !defined(WITHOUT_LAPACK)
28
.if !defined(WITHOUT_LAPACK)
37
. if defined(WITH_ATLAS)
29
. if defined(WITH_ATLAS)
(-)files/patch-CImg.h (+11 lines)
Line 0 Link Here
1
--- CImg.h.orig	2019-09-24 20:44:55 UTC
2
+++ CImg.h
3
@@ -6737,7 +6737,7 @@ namespace cimg_library_suffixed {
4
     }
5
 
6
     //! Return \c true if input character is blank (space, tab, or non-printable character).
7
-    inline bool is_blank(const char c) {
8
+    inline bool is_blank(const signed char c) {
9
       return c>=0 && c<=' ';
10
     }
11
 
(-)files/patch-examples__Makefile (-1 / +1 lines)
Lines 26-32 Link Here
26
+OPT_CFLAGS = # -Ofast - handled by the port CFLAGS
26
+OPT_CFLAGS = # -Ofast - handled by the port CFLAGS
27
 ifdef IS_GCC
27
 ifdef IS_GCC
28
-OPT_CFLAGS = -Ofast -mtune=generic
28
-OPT_CFLAGS = -Ofast -mtune=generic
29
+OPT_CFLAGS = -mtune=generic
29
+OPT_CFLAGS =
30
 endif
30
 endif
31
 ifdef IS_ICPC
31
 ifdef IS_ICPC
32
 OPT_CFLAGS = -fast
32
 OPT_CFLAGS = -fast

Return to bug 241026