[FFmpeg-devel] [PATCH 1/1] configure: add emscripten support
Mehdi Sabwat
mehdisabwat at gmail.com
Tue Apr 27 03:12:26 EEST 2021
From: Mehdi Sabwat <mehdisabwat at gmail.com>
Fix configure test to allow it to have the right suffix when $target_os=emscripten
---
configure | 3 +++
1 file changed, 3 insertions(+)
diff --git a/configure b/configure
index cc1013fb1d..501c715b82 100755
--- a/configure
+++ b/configure
@@ -4381,6 +4381,7 @@ fi
exesuf() {
case $1 in
mingw32*|mingw64*|win32|win64|cygwin*|*-dos|freedos|opendos|os/2*|symbian) echo .exe ;;
+ emscripten) echo .js ;;
esac
}
@@ -5580,6 +5581,8 @@ case $target_os in
;;
minix)
;;
+ emscripten)
+ ;;
none)
;;
*)
--
2.31.1
More information about the ffmpeg-devel
mailing list