From 3f959e394ca073d6020af01b824f8fdc310a1bcd Mon Sep 17 00:00:00 2001 From: Stefan Weil Date: Sat, 29 Oct 2016 17:09:28 +0200 Subject: [PATCH] opencl: Add tiff library needed by openclwrapper openclwrapper calls function TIFFReadRGBAImageOriented which is provided by libtiff, so add that library to OPENCL_LIBS. This fixes a linker error (unresolved symbol) when opencl is enabled. Signed-off-by: Stefan Weil --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index e0e4cf3a4c..a775e4fc28 100644 --- a/configure.ac +++ b/configure.ac @@ -77,7 +77,7 @@ AM_CONDITIONAL([OSX], false) AM_CONDITIONAL([GRAPHICS_DISABLED], false) OPENCL_INC="/opt/AMDAPP/include" -OPENCL_LIBS="-lOpenCL" +OPENCL_LIBS="-lOpenCL -ltiff" ############################# # # Platform specific setup