Index: Makefile =================================================================== --- Makefile (revision 513473) +++ Makefile (working copy) @@ -19,19 +19,11 @@ LICENSE_PERMS_CeCILL_C= dist-mirror dist-sell pkg-mirror pkg-sell auto-accept LICENSE_PERMS_CeCILL= dist-mirror dist-sell pkg-mirror pkg-sell auto-accept -BROKEN_aarch64= invokes x86 assembler -BROKEN_armv6= invokes x86 assembler -BROKEN_armv7= invokes x86 assembler -BROKEN_mips= invokes x86 assembler -BROKEN_mips64= invokes x86 assembler -BROKEN_sparc64= invokes x86 assembler -BROKEN_powerpc64= invokes x86 assembler - USE_GITHUB= yes GH_ACCOUNT= dtschump GH_PROJECT= CImg -USES= xorg +USES= compiler:c11 xorg .if !defined(WITHOUT_LAPACK) . if defined(WITH_ATLAS) Index: files/patch-CImg.h =================================================================== --- files/patch-CImg.h (nonexistent) +++ files/patch-CImg.h (working copy) @@ -0,0 +1,11 @@ +--- CImg.h.orig 2019-09-24 20:44:55 UTC ++++ CImg.h +@@ -6737,7 +6737,7 @@ namespace cimg_library_suffixed { + } + + //! Return \c true if input character is blank (space, tab, or non-printable character). +- inline bool is_blank(const char c) { ++ inline bool is_blank(const signed char c) { + return c>=0 && c<=' '; + } + Property changes on: files/patch-CImg.h ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: files/patch-examples__Makefile =================================================================== --- files/patch-examples__Makefile (revision 513473) +++ files/patch-examples__Makefile (working copy) @@ -26,7 +26,7 @@ +OPT_CFLAGS = # -Ofast - handled by the port CFLAGS ifdef IS_GCC -OPT_CFLAGS = -Ofast -mtune=generic -+OPT_CFLAGS = -mtune=generic ++OPT_CFLAGS = endif ifdef IS_ICPC OPT_CFLAGS = -fast