diff options
author | Tor Lillqvist <tml@iki.fi> | 2012-08-15 15:16:56 +0300 |
---|---|---|
committer | Tor Lillqvist <tml@iki.fi> | 2012-08-15 15:19:02 +0300 |
commit | b265617923ab1efa5853a8790835a7829330fc42 (patch) | |
tree | 69cd98997c43325c0512e605a2e4592bd2e4666b | |
parent | 869379e4c82d18edb42c62910e5855890dab0484 (diff) |
Don't bother having configure look for stuff not needed for the build platform
Change-Id: I2013204f433473cbaa33c7d89d980e31b3def654
-rw-r--r-- | configure.in | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/configure.in b/configure.in index 3c72abd97e06..77743901dfb5 100644 --- a/configure.in +++ b/configure.in @@ -3716,9 +3716,12 @@ if test "$cross_compiling" = "yes"; then test -n "$with_system_libxml_for_build" && sub_conf_opts="$sub_conf_opts --with-system-libxml" test "$WITH_MINGW" = "yes" && sub_conf_opts="$sub_conf_opts --enable-winegcc" sub_conf_opts="$sub_conf_opts $with_build_platform_configure_options" + # Don't bother having configure look for stuff not needed for the build platform anyway ./configure \ - --disable-mozilla \ + --disable-graphite \ --disable-build-mozilla \ + --disable-mozilla \ + --disable-postgresql-sdbc \ --disable-zenity \ --with-num-cpus="$with_num_cpus" \ --with-max-jobs="$with_max_jobs" \ |