configure: Fix the OpenCL detection for Mac OS.
This commit is contained in:
parent
e40093f70a
commit
fac6741212
|
@ -640,7 +640,6 @@ HALINCL
|
||||||
XSLTINCL
|
XSLTINCL
|
||||||
XML2INCL
|
XML2INCL
|
||||||
XML2LIBS
|
XML2LIBS
|
||||||
LIBOPENCL
|
|
||||||
NASLIBS
|
NASLIBS
|
||||||
X_EXTRA_LIBS
|
X_EXTRA_LIBS
|
||||||
X_LIBS
|
X_LIBS
|
||||||
|
@ -653,6 +652,7 @@ CROSSCC
|
||||||
CROSSTEST_DISABLE
|
CROSSTEST_DISABLE
|
||||||
PRELINK
|
PRELINK
|
||||||
CARBONLIB
|
CARBONLIB
|
||||||
|
LIBOPENCL
|
||||||
FRAMEWORK_OPENAL
|
FRAMEWORK_OPENAL
|
||||||
COREAUDIO
|
COREAUDIO
|
||||||
DISKARBITRATIONLIB
|
DISKARBITRATIONLIB
|
||||||
|
@ -6541,6 +6541,12 @@ _ACEOF
|
||||||
|
|
||||||
ac_cv_lib_openal=yes
|
ac_cv_lib_openal=yes
|
||||||
fi
|
fi
|
||||||
|
if test "$ac_cv_header_OpenCL_opencl_h" = "yes"
|
||||||
|
then
|
||||||
|
LIBOPENCL="-framework OpenCL"
|
||||||
|
|
||||||
|
ac_cv_lib_OpenCL_clGetPlatformInfo=yes
|
||||||
|
fi
|
||||||
if test "$ac_cv_header_IOKit_hid_IOHIDLib_h" = "yes"
|
if test "$ac_cv_header_IOKit_hid_IOHIDLib_h" = "yes"
|
||||||
then
|
then
|
||||||
ac_save_LIBS="$LIBS"
|
ac_save_LIBS="$LIBS"
|
||||||
|
@ -9063,7 +9069,7 @@ Use the --without-x option if you really want this." "$LINENO" 5 ;;
|
||||||
esac
|
esac
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if test "$ac_cv_header_CL_opencl_h" = "yes" -o "$ac_cv_header_OpenCL_opencl_h" = "yes"
|
if test "$ac_cv_header_CL_opencl_h" = "yes"
|
||||||
then
|
then
|
||||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for clGetPlatformInfo in -lOpenCL" >&5
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for clGetPlatformInfo in -lOpenCL" >&5
|
||||||
$as_echo_n "checking for clGetPlatformInfo in -lOpenCL... " >&6; }
|
$as_echo_n "checking for clGetPlatformInfo in -lOpenCL... " >&6; }
|
||||||
|
|
|
@ -719,6 +719,11 @@ case $host_os in
|
||||||
AC_DEFINE_UNQUOTED(HAVE_OPENAL,1,[Define to 1 if OpenAL is available])
|
AC_DEFINE_UNQUOTED(HAVE_OPENAL,1,[Define to 1 if OpenAL is available])
|
||||||
ac_cv_lib_openal=yes
|
ac_cv_lib_openal=yes
|
||||||
fi
|
fi
|
||||||
|
if test "$ac_cv_header_OpenCL_opencl_h" = "yes"
|
||||||
|
then
|
||||||
|
AC_SUBST(LIBOPENCL,"-framework OpenCL")
|
||||||
|
ac_cv_lib_OpenCL_clGetPlatformInfo=yes
|
||||||
|
fi
|
||||||
if test "$ac_cv_header_IOKit_hid_IOHIDLib_h" = "yes"
|
if test "$ac_cv_header_IOKit_hid_IOHIDLib_h" = "yes"
|
||||||
then
|
then
|
||||||
ac_save_LIBS="$LIBS"
|
ac_save_LIBS="$LIBS"
|
||||||
|
@ -1102,7 +1107,7 @@ without X support, which probably isn't what you want. You will need
|
||||||
to install ${notice_platform}development packages of Xlib/Xfree86 at the very least.])
|
to install ${notice_platform}development packages of Xlib/Xfree86 at the very least.])
|
||||||
|
|
||||||
dnl **** Check for OpenCL ****
|
dnl **** Check for OpenCL ****
|
||||||
if test "$ac_cv_header_CL_opencl_h" = "yes" -o "$ac_cv_header_OpenCL_opencl_h" = "yes"
|
if test "$ac_cv_header_CL_opencl_h" = "yes"
|
||||||
then
|
then
|
||||||
AC_CHECK_LIB(OpenCL,clGetPlatformInfo,[AC_SUBST(LIBOPENCL,["-lOpenCL"])])
|
AC_CHECK_LIB(OpenCL,clGetPlatformInfo,[AC_SUBST(LIBOPENCL,["-lOpenCL"])])
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Reference in New Issue