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

2021-05-31 Thread Mehdi Sabwat
Hi !

Kind reminder.

Regards,
Mehdi

On Tue, May 11, 2021 at 4:07 PM Mehdi Sabwat  wrote:

> Hi!
>
> Ping, can someone please review?
>
> Thanks,
> Regards
>
> On Tue, Apr 27, 2021 at 1:57 AM Mehdi Sabwat 
> wrote:
>
>> From: Mehdi Sabwat 
>>
>> 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
ffmpeg-devel@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-devel

To unsubscribe, visit link above, or email
ffmpeg-devel-requ...@ffmpeg.org with subject "unsubscribe".


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

2021-05-11 Thread Mehdi Sabwat
Hi!

Ping, can someone please review?

Thanks,
Regards

On Tue, Apr 27, 2021 at 1:57 AM Mehdi Sabwat  wrote:

> From: Mehdi Sabwat 
>
> 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
ffmpeg-devel@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-devel

To unsubscribe, visit link above, or email
ffmpeg-devel-requ...@ffmpeg.org with subject "unsubscribe".


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

2021-04-26 Thread Mehdi Sabwat
From: Mehdi Sabwat 

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
ffmpeg-devel@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-devel

To unsubscribe, visit link above, or email
ffmpeg-devel-requ...@ffmpeg.org with subject "unsubscribe".