From 3aaff803489af21011b8cf03847e17b29643c922 Mon Sep 17 00:00:00 2001 From: James Almer Date: Mon, 12 Jan 2015 13:48:52 -0300 Subject: [PATCH] avutil/opencl: don't include config.h It's not an installed header. Tested-by: Thilo Borgmann Tested-by: Wei Gao Reviewed-by: Michael Niedermayer Signed-off-by: James Almer --- configure | 2 -- libavutil/opencl.h | 7 +++---- 2 files changed, 3 insertions(+), 6 deletions(-) diff --git a/configure b/configure index 94f943292d..a0dbafb1de 100755 --- a/configure +++ b/configure @@ -1642,7 +1642,6 @@ HEADERS_LIST=" asm_types_h cdio_paranoia_h cdio_paranoia_paranoia_h - CL_cl_h dev_bktr_ioctl_bt848_h dev_bktr_ioctl_meteor_h dev_ic_bt8xx_h @@ -4775,7 +4774,6 @@ check_func_headers glob.h glob enabled xlib && check_func_headers "X11/Xlib.h X11/extensions/Xvlib.h" XvGetPortAttribute -lXv -lX11 -lXext -check_header cl/cl.h check_header direct.h check_header dlfcn.h check_header dxva.h diff --git a/libavutil/opencl.h b/libavutil/opencl.h index 4655cba552..0b7b8d4764 100644 --- a/libavutil/opencl.h +++ b/libavutil/opencl.h @@ -32,11 +32,10 @@ #ifndef LIBAVUTIL_OPENCL_H #define LIBAVUTIL_OPENCL_H -#include "config.h" -#if HAVE_CL_CL_H -#include -#else +#ifdef __APPLE__ #include +#else +#include #endif #include #include "dict.h"