[FFmpeg-devel] [PATCH] configure: Add workaround for qtkit detection using ICC, compiler.
Thilo Borgmann
thilo.borgmann at mail.de
Sun Apr 6 15:02:16 CEST 2014
Like Reimar suggested on log, this works for me for proper detection of qtkit using:
Mac OS X 10.9 with clang
Linux with gcc
Linux with icc
-Thilo
-------------- next part --------------
>From d9a1e4177d2bc55410c747576f8bc5820d4938ab Mon Sep 17 00:00:00 2001
From: Thilo Borgmann <thilo.borgmann at mail.de>
Date: Sun, 6 Apr 2014 14:57:24 +0200
Subject: [PATCH] configure: Add workaround for qtkit detection using ICC
compiler.
---
configure | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/configure b/configure
index f238276..945c847 100755
--- a/configure
+++ b/configure
@@ -4671,7 +4671,7 @@ enabled openssl && { check_lib openssl/ssl.h SSL_library_init -lssl -l
check_lib openssl/ssl.h SSL_library_init -lssl32 -leay32 ||
check_lib openssl/ssl.h SSL_library_init -lssl -lcrypto -lws2_32 -lgdi32 ||
die "ERROR: openssl not found"; }
-enabled qtkit_indev && { check_header_oc QTKit/QTKit.h || disable qtkit_indev; }
+enabled qtkit_indev && { { check_header QTKit/QTKit.h && check_header_oc QTKit/QTKit.h; } || disable qtkit_indev; }
if enabled gnutls; then
{ check_lib nettle/bignum.h nettle_mpz_get_str_256 -lnettle -lhogweed -lgmp && enable nettle; } ||
--
1.8.3.2
More information about the ffmpeg-devel
mailing list