- make it build on s390/s390x OBS-URL: https://build.opensuse.org/request/show/94303 OBS-URL: https://build.opensuse.org/package/show/multimedia:libs/libvpx?expand=0&rev=38
27 lines
822 B
Diff
27 lines
822 B
Diff
--- build/make/configure.sh
|
|
+++ build/make/configure.sh
|
|
@@ -539,6 +539,12 @@
|
|
*powerpc*)
|
|
tgt_isa=ppc32
|
|
;;
|
|
+ *s390x*)
|
|
+ tgt_isa=s390x
|
|
+ ;;
|
|
+ *s390*)
|
|
+ tgt_isa=s390
|
|
+ ;;
|
|
*sparc*)
|
|
tgt_isa=sparc
|
|
;;
|
|
--- configure
|
|
+++ configure
|
|
@@ -102,6 +102,8 @@
|
|
all_platforms="${all_platforms} ppc64-darwin8-gcc"
|
|
all_platforms="${all_platforms} ppc64-darwin9-gcc"
|
|
all_platforms="${all_platforms} ppc64-linux-gcc"
|
|
+all_platforms="${all_platforms} s390-linux-gcc"
|
|
+all_platforms="${all_platforms} s390x-linux-gcc"
|
|
all_platforms="${all_platforms} sparc-solaris-gcc"
|
|
all_platforms="${all_platforms} x86-darwin8-gcc"
|
|
all_platforms="${all_platforms} x86-darwin8-icc"
|