diff mbox series

[FFmpeg-devel,1/1] configure: add emscripten support

Message ID 20210427001226.1799226-1-mehdi@videolabs.io
State New
Headers show
Series [FFmpeg-devel,1/1] configure: add emscripten support | expand

Checks

Context Check Description
andriy/x86_make success Make finished
andriy/x86_make_fate success Make fate finished
andriy/PPC64_make success Make finished
andriy/PPC64_make_fate success Make fate finished

Commit Message

Mehdi Sabwat April 27, 2021, 12:12 a.m. UTC
From: Mehdi Sabwat <mehdisabwat@gmail.com>

Fix configure test to allow it to have the right suffix when $target_os=emscripten
---
 configure | 3 +++
 1 file changed, 3 insertions(+)

Comments

Mehdi Sabwat May 11, 2021, 2:07 p.m. UTC | #1
Hi!

Ping, can someone please review?

Thanks,
Regards

On Tue, Apr 27, 2021 at 1:57 AM Mehdi Sabwat <mehdisabwat@gmail.com> wrote:

> From: Mehdi Sabwat <mehdisabwat@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
>
>
Mehdi Sabwat May 31, 2021, 9 a.m. UTC | #2
Hi !

Kind reminder.

Regards,
Mehdi

On Tue, May 11, 2021 at 4:07 PM Mehdi Sabwat <mehdisabwat@gmail.com> wrote:

> Hi!
>
> Ping, can someone please review?
>
> Thanks,
> Regards
>
> On Tue, Apr 27, 2021 at 1:57 AM Mehdi Sabwat <mehdisabwat@gmail.com>
> wrote:
>
>> From: Mehdi Sabwat <mehdisabwat@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
>>
>>
diff mbox series

Patch

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)
         ;;
     *)