Update to 1.3.0 OBS-URL: https://build.opensuse.org/request/show/210407 OBS-URL: https://build.opensuse.org/package/show/multimedia:libs/libvpx?expand=0&rev=47
31 lines
1.0 KiB
Diff
31 lines
1.0 KiB
Diff
diff --git a/build/make/configure.sh b/build/make/configure.sh
|
|
index 8dcb9bb..cf78764 100755
|
|
--- a/build/make/configure.sh
|
|
+++ b/build/make/configure.sh
|
|
@@ -627,6 +627,12 @@ process_common_toolchain() {
|
|
*powerpc*)
|
|
tgt_isa=ppc32
|
|
;;
|
|
+ *s390x*)
|
|
+ tgt_isa=s390x
|
|
+ ;;
|
|
+ *s390*)
|
|
+ tgt_isa=s390
|
|
+ ;;
|
|
*sparc*)
|
|
tgt_isa=sparc
|
|
;;
|
|
diff --git a/configure b/configure
|
|
index 4ff3fc7..c590057 100755
|
|
--- a/configure
|
|
+++ b/configure
|
|
@@ -108,6 +108,8 @@ all_platforms="${all_platforms} ppc32-linux-gcc"
|
|
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-android-gcc"
|
|
all_platforms="${all_platforms} x86-darwin8-gcc"
|