diff options
author | Memphiz <memphis@machzwo.de> | 2013-09-09 20:14:44 +0200 |
---|---|---|
committer | wsnipex <wsnipex@a1.net> | 2013-10-07 09:06:49 +0200 |
commit | f91a69546e1899bc1c4bdbcba2e101329659357b (patch) | |
tree | 710dd1e45ef128c75f4eeded0adf6b986fc9241f /configure.in | |
parent | 80c04ea636958a5941fc16cd1f235a1d055c8609 (diff) |
[gnutls] - if gnutls is there don't compile OSXGNUReplacements as they are duped in gnutls already
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in index f5b752dadb..9d635d4634 100644 --- a/configure.in +++ b/configure.in @@ -1031,7 +1031,7 @@ if test "$gcrypt_headers_available" = "yes"; then AC_CHECK_LIB([gcrypt],[gcry_control],, AC_MSG_ERROR($missing_library)) AC_DEFINE([HAVE_GCRYPT],[1],[Define if we have gcrypt]) fi -PKG_CHECK_MODULES([GNUTLS], [gnutls], [have_gnutls=yes], AC_MSG_WARN("gnutls not found, ffmpeg TLS support disabled")) +PKG_CHECK_MODULES([GNUTLS], [gnutls], [have_gnutls=yes];AC_DEFINE([HAVE_GNUTLS], [1], [Define if we have gnutls])], AC_MSG_WARN("gnutls not found, ffmpeg TLS support disabled")) AC_CHECK_LIB([bz2], [main],, AC_MSG_ERROR($missing_library)) AC_CHECK_LIB([jpeg], [main],, AC_MSG_ERROR($missing_library)) # check for cximage |