diff options
author | Thierry Thomas <thierry@FreeBSD.org> | 2021-05-13 15:41:20 +0200 |
---|---|---|
committer | Thierry Thomas <thierry@FreeBSD.org> | 2021-05-13 15:41:20 +0200 |
commit | 10c60788587e664aa6164bcb667b50a6ad37a59d (patch) | |
tree | c1fa490ebc6c28eeefe4144f4d6027071d2b48e4 /graphics/cimg/files/patch-examples__Makefile | |
parent | games/3dc: Fix crash on boot (diff) |
graphics/cimg: temporarily disable libboard
ATM CImg does not build against ImageMagick (GraphicsMagick is OK), and
since libboard is built against ImageMagick this causes an error.
Reported by: pkg-fallout
Diffstat (limited to 'graphics/cimg/files/patch-examples__Makefile')
-rw-r--r-- | graphics/cimg/files/patch-examples__Makefile | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/graphics/cimg/files/patch-examples__Makefile b/graphics/cimg/files/patch-examples__Makefile index 01f6af383905..a681c8e1c8f7 100644 --- a/graphics/cimg/files/patch-examples__Makefile +++ b/graphics/cimg/files/patch-examples__Makefile @@ -74,7 +74,7 @@ # Flags to enable native support for compressed .cimgz files, using the Zlib library. # ( http://www.zlib.net/ ) -@@ -288,15 +288,15 @@ endif +@@ -288,17 +288,17 @@ endif # Flags to enable the use of LAPACK routines for matrix computation # ( http://www.netlib.org/lapack/ ) @@ -90,10 +90,14 @@ # ( https://github.com/c-koi/libboard ) BOARD_DEFINE = -Dcimg_use_board -BOARD_INCDIR = -I/usr/include/board +-BOARD_CFLAGS = $(BOARD_DEFINE) $(BOARD_INCDIR) +-BOARD_LIBS = -lboard +BOARD_INCDIR = -I$(LOCALBASE)/include/board - BOARD_CFLAGS = $(BOARD_DEFINE) $(BOARD_INCDIR) - BOARD_LIBS = -lboard ++#BOARD_CFLAGS = $(BOARD_DEFINE) $(BOARD_INCDIR) ++#BOARD_LIBS = -lboard + # Flags to compile GIMP plug-ins. + ifeq ($(MSYSTEM),MINGW32) @@ -368,6 +368,7 @@ $(TIFF_LIBS) \ $(HEIF_LIBS) \ $(LAPACK_LIBS) \ |