2
0
mirror of https://codeberg.org/kiss-community/repo synced 2024-07-02 14:02:27 +00:00

x264: fix portability issues with ksh. Closes #297

This commit is contained in:
Dylan Araps 2021-07-21 18:46:48 +03:00
parent a5548c7ea0
commit fa80406426
No known key found for this signature in database
GPG Key ID: 13295DAC2CF13B5C
4 changed files with 23 additions and 3 deletions

View File

@ -1,6 +1,6 @@
#!/bin/sh -e
patch -p1 < x264-no-bash.patch
patch -p1 < portability.patch
./configure \
--prefix=/usr \

View File

@ -1,2 +1,2 @@
404e7ba61123720a7b2cc45356ace6859860ef4ce3503758465e92c1ce11995e
a78a518c3685813fdfdc8813acd48e292968892e6ff5ea60d91f5c514c35acee
ff0292e4cf86e8352e174091091e842c2e9ab444d8f5f292b3f1a7d11a392f41

View File

@ -1,3 +1,23 @@
diff --git a/tools/cltostr.sh b/tools/cltostr.sh
index 23b6cc7..3feaafe 100755
--- a/tools/cltostr.sh
+++ b/tools/cltostr.sh
@@ -18,7 +18,7 @@ dump() {
}
# Print MD5 hash w/o newline character to not embed the character in the array.
-hash() {
+_hash() {
# md5sum is not standard, so try different platform-specific alternatives.
{ md5sum "$1" || md5 -q "$1" || digest -a md5 "$1"; } 2>/dev/null |
cut -b -32 | tr -d '\n\r'
@@ -29,5 +29,5 @@ trap 'rm -f "$1.temp"' EXIT
sanitize | tee "$1.temp" |
dump 'x264_opencl_source' > "$1"
-hash "$1.temp" |
+_hash "$1.temp" |
dump 'x264_opencl_source_hash' >> "$1"
diff --git a/configure b/configure-posix
index 3cf63e0..1e1fce5 100755
--- a/configure-posix

View File

@ -1,2 +1,2 @@
https://download.videolan.org/pub/videolan/x264/snapshots/x264-snapshot-VERSION-stable.tar.bz2
patches/x264-no-bash.patch
patches/portability.patch