From 80562ebb7adb01e4ae99151ec42afe18d8fdec25 Mon Sep 17 00:00:00 2001 From: James Thomas Date: Mon, 16 Feb 2015 13:23:35 +0000 Subject: Disable gcc warnings in m4 This should be the default for a tarball release --- strata/build-essential/m4-tarball.morph | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/strata/build-essential/m4-tarball.morph b/strata/build-essential/m4-tarball.morph index e460a9dc..eb16726a 100644 --- a/strata/build-essential/m4-tarball.morph +++ b/strata/build-essential/m4-tarball.morph @@ -2,4 +2,4 @@ name: m4-tarball kind: chunk build-system: autotools configure-commands: -- ./configure --prefix="$PREFIX" +- ./configure --prefix="$PREFIX" --disable-gcc-warnings -- cgit v1.2.1 From a496c0b6dfeb2a3b86cb5cb14bb80b13ca3a789f Mon Sep 17 00:00:00 2001 From: James Thomas Date: Mon, 16 Feb 2015 10:06:53 +0000 Subject: Fix pixman build Disable iwmmx extensions, since they are armv5/6 specific and not needed --- strata/graphics-common.morph | 1 + strata/graphics-common/pixman.morph | 5 +++++ 2 files changed, 6 insertions(+) create mode 100644 strata/graphics-common/pixman.morph diff --git a/strata/graphics-common.morph b/strata/graphics-common.morph index 9fc05b7c..baa935f5 100644 --- a/strata/graphics-common.morph +++ b/strata/graphics-common.morph @@ -5,6 +5,7 @@ build-depends: - morph: strata/x-common.morph chunks: - name: pixman + morph: strata/graphics-common/pixman.morph repo: upstream:pixman ref: 87eea99e443b389c978cf37efc52788bf03a0ee0 unpetrify-ref: pixman-0.32.6 diff --git a/strata/graphics-common/pixman.morph b/strata/graphics-common/pixman.morph new file mode 100644 index 00000000..d09b3df3 --- /dev/null +++ b/strata/graphics-common/pixman.morph @@ -0,0 +1,5 @@ +name: pixman +kind: chunk +build-system: autotools +configure-commands: +- ./autogen.sh --prefix="$PREFIX" --disable-arm-iwmmxt --disable-arm-iwmmxt2 -- cgit v1.2.1