1 From 8352c434e515f19dd1ba36256bfcc3ec9480838d Mon Sep 17 00:00:00 2001
2 From: Peter Seiderer <ps.report@gmx.net>
3 Date: Thu, 5 Mar 2015 22:38:52 +0100
4 Subject: [PATCH] imlib2 config
6 Call the imlib2-conf variable that are set by ac_cv_path_IMLIB2_CONFIG
7 with the absolute path because the imlib2-config file is not covered
9 This is important for cross compiler that need to get the staging settings
10 instead of the host settings.
12 Signed-off-by: Carsten Schoenert <c.schoenert@gmail.com>
13 [ patch configure.in instead of configure to survive autoreconf ]
14 Signed-off-by: Peter Seiderer <ps.report@gmx.net>
17 1 file changed, 2 insertions(+), 2 deletions(-)
19 diff --git a/configure.in b/configure.in
20 index 38d7e78..fa5e87f 100644
23 @@ -1094,8 +1094,8 @@ if test "x$enable_imlib2" = "xyes"; then
24 AC_MSG_WARN([*** Imlib2 library not found, building without Imlib2 support ***])
27 - IMLIB2_CFLAGS=`imlib2-config --cflags`
28 - IMLIB2_LIBS=`imlib2-config --libs`
29 + IMLIB2_CFLAGS=`$IMLIB2_CONFIG --cflags`
30 + IMLIB2_LIBS=`$IMLIB2_CONFIG --libs`