From 74bc549b9ffe9f55e3690e63e1bae36c179ce00b Mon Sep 17 00:00:00 2001 From: Ralf Haferkamp Date: Tue, 15 Oct 2024 17:44:28 +0200 Subject: [PATCH] Add ENABLE_VIPS flag to Makefile To build with libvips support use 'make -C ocis build ENABLE_VIPS=true' --- ocis/Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/ocis/Makefile b/ocis/Makefile index 7a2fef061..bcbe4b5c2 100644 --- a/ocis/Makefile +++ b/ocis/Makefile @@ -3,6 +3,10 @@ NAME := ocis TAGS := disable_crypt +ifdef ENABLE_VIPS + TAGS := ${TAGS},enable_vips +endif + include ../.make/recursion.mk ############ tooling ############