pkg-autotools: move the libtool patching call out of the autoreconf hook
[buildroot-gz.git] / package / vlc / vlc-0002-configure.ac-add-check-for-libgcrypt-config-program.patch
blob1ad6712b7b9ba7c8b5ab7fd650984c2d87c24931
1 From 88bf3313850bc7f0e6db21daee2b8d8e607b7bb4 Mon Sep 17 00:00:00 2001
2 From: Samuel Martin <s.martin49@gmail.com>
3 Date: Sat, 8 Feb 2014 14:33:27 +0100
4 Subject: [PATCH] configure.ac: add check for libgcrypt-config program
6 This allows to override the default libgcrypt-config location (which is
7 useful when cross-compiling), instead of using the one from the host
8 system.
10 Signed-off-by: Samuel Martin <s.martin49@gmail.com>
11 ---
12 configure.ac | 9 +++++----
13 1 file changed, 5 insertions(+), 4 deletions(-)
15 diff --git a/configure.ac b/configure.ac
16 index 02fb8aa..5a2267b 100644
17 --- a/configure.ac
18 +++ b/configure.ac
19 @@ -3943,16 +3943,17 @@ dnl
20 AC_ARG_ENABLE(libgcrypt,
21 [ --disable-libgcrypt gcrypt support (default enabled)])
22 AS_IF([test "${enable_libgcrypt}" != "no"], [
23 + AC_PATH_PROG(GCRYPT_CONFIG,libgcrypt-config,libgcrypt-config)
24 AC_CHECK_DECL([GCRYCTL_SET_THREAD_CBS], [
25 - libgcrypt-config --version >/dev/null || \
26 + ${GCRYPT_CONFIG} --version >/dev/null || \
27 AC_MSG_ERROR([gcrypt.h present but libgcrypt-config could not be found])
28 AC_CHECK_LIB(gcrypt, gcry_control, [
29 have_libgcrypt="yes"
30 - GCRYPT_CFLAGS="`libgcrypt-config --cflags`"
31 - GCRYPT_LIBS="`libgcrypt-config --libs`"
32 + GCRYPT_CFLAGS="`${GCRYPT_CONFIG} --cflags`"
33 + GCRYPT_LIBS="`${GCRYPT_CONFIG} --libs`"
34 ], [
35 AC_MSG_ERROR([libgcrypt not found. Install libgcrypt or use --disable-libgcrypt. Have a nice day.])
36 - ], [`libgcrypt-config --libs`])
37 + ], [`${GCRYPT_CONFIG} --libs`])
38 ], [
39 AC_MSG_ERROR([libgcrypt version 1.1.94 or higher not found. Install libgcrypt or use --disable-libgcrypt. Have a nice day.])
40 ], [#include <gcrypt.h>]
41 --
42 1.8.5.4