summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEike Rathke <erack@redhat.com>2012-08-07 22:15:54 +0200
committerEike Rathke <erack@redhat.com>2012-08-07 22:24:39 +0200
commitcf190e359d2556595b1c888b9b9028a4cc75a605 (patch)
treeb1fd65519df573698395401681375f645e95839b
parent8a66a7789698b12f2c07169e0106413de2f39fb8 (diff)
check only iOS|Android to exclude GLIB from BUILD_TYPE
Change-Id: I146731bd9e9046ff948c0af2709569dfc539063b
-rw-r--r--configure.in10
1 files changed, 8 insertions, 2 deletions
diff --git a/configure.in b/configure.in
index 66354736b4f5..50f3288b74d5 100644
--- a/configure.in
+++ b/configure.in
@@ -10975,8 +10975,14 @@ GLIB_CFLAGS=''
GLIB_LIBS=''
if test "$SYSTEM_GLIB" = YES; then
PKG_CHECK_MODULES( GLIB, glib-2.0 )
-elif test "$enable_librsvg" = fully-internal; then
- BUILD_TYPE="$BUILD_TYPE GLIB"
+else
+ case "$_os" in
+ iOS|Android)
+ ;;
+ *)
+ BUILD_TYPE="$BUILD_TYPE GLIB"
+ ;;
+ esac
fi
AC_SUBST(GLIB_CFLAGS)
AC_SUBST(GLIB_LIBS)