From: Mehdi Sabwat <[email protected]>
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
_______________________________________________
ffmpeg-devel mailing list
[email protected]
https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
To unsubscribe, visit link above, or email
[email protected] with subject "unsubscribe".