diff options
author | Fridrich Strba <strba@src.gnome.org> | 2009-01-31 11:41:12 +0000 |
---|---|---|
committer | Fridrich Strba <strba@src.gnome.org> | 2009-01-31 11:41:12 +0000 |
commit | eef208fcf944641d4d09dce328c8f4bea392d7d7 (patch) | |
tree | ef291577adc2b5a459dfe9db4444354b53ffdbc3 /configure.in | |
parent | 37fa67a71722efbee5f8ec4438a3e3e08cd957e6 (diff) | |
download | gtk+-eef208fcf944641d4d09dce328c8f4bea392d7d7.tar.gz |
allow static jasper gdk-pixbuf loader
svn path=/trunk/; revision=22264
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/configure.in b/configure.in index ebe1a96b74..6d01129c3b 100644 --- a/configure.in +++ b/configure.in @@ -1163,8 +1163,11 @@ if $dynworks ; then if echo "$included_loaders" | egrep '(^|,)png($|,)' > /dev/null; then STATIC_LIB_DEPS="$STATIC_LIB_DEPS $LIBPNG" fi + if echo "$included_loaders" | egrep '(^|,)jasper($|,)' > /dev/null; then + STATIC_LIB_DEPS="$STATIC_LIB_DEPS $LIBJASPER" + fi else - STATIC_LIB_DEPS="$LIBTIFF $LIBJPEG $LIBPNG" + STATIC_LIB_DEPS="$LIBTIFF $LIBJPEG $LIBPNG $LIBJASPER" fi # Checks to see whether we should include mediaLib |