summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2007-02-05 17:04:15 +0000
committerDiego Biurrun <diego@biurrun.de>2007-02-05 17:04:15 +0000
commit079dd4ba317be0f02ddf928e67856104353e623a (patch)
treef33b2e18101409a5ae52d5a12b7cbf4617853fbb
parent929f034755d3ed9d969338c6986a939ae7713b69 (diff)
a bit more consistency for for the imlib2 check
Originally committed as revision 7831 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rwxr-xr-xconfigure3
1 files changed, 2 insertions, 1 deletions
diff --git a/configure b/configure
index cda0d910b7..baa06f77fd 100755
--- a/configure
+++ b/configure
@@ -1668,10 +1668,11 @@ fi
##########################################
# imlib check
+imlib2=no
if (imlib2-config --version) >/dev/null 2>&1 ; then
temp_cflags `imlib2-config --cflags`
temp_extralibs `imlib2-config --libs`
- check_ld <<EOF && imlib2=yes || imlib2=no
+ check_ld <<EOF && imlib2=yes
#include <Imlib2.h>
int main( void ) { return (int) imlib_load_font("foo"); }
EOF