[vlc-devel] [PATCH] src: fix fourcc_gen build on OS/2

KO Myung-Hun komh78 at gmail.com
Fri Aug 7 04:59:27 CEST 2015



Rémi Denis-Courmont wrote:
> Le samedi 01 août 2015, 17:12:38 KO Myung-Hun a écrit :
>> ---
>>  configure.ac                    |  4 ++++
>>  extras/package/os2/configure.sh | 15 ++++++++++++++-
>>  src/Makefile.am                 |  6 +++---
>>  3 files changed, 21 insertions(+), 4 deletions(-)
>>
>> diff --git a/configure.ac b/configure.ac
>> index a3dc3e1..fc9dc28 100644
>> --- a/configure.ac
>> +++ b/configure.ac
>> @@ -317,6 +317,10 @@ case "${build_os}" in
>>      cygwin|msys)
>>          ac_executable_extensions=".exe"
>>      ;;
>> +    os2*)
>> +        BUILDEXEEXT=".exe"
>> +        AC_SUBST(BUILDEXEEXT)
> 
> Never call AC_SUBST conditionally.
> 

Fixed.

>> +    ;;
>>      *)
>>      ;;
>>  esac
>> diff --git a/extras/package/os2/configure.sh
>> b/extras/package/os2/configure.sh index dc954ea..3b07f33 100644
>> --- a/extras/package/os2/configure.sh
>> +++ b/extras/package/os2/configure.sh
>> @@ -45,4 +45,17 @@ export ARCHFLAGS=${ARCHFLAGS-"-march=i486"}
>>  export CFLAGS="${CFLAGS} ${ARCHFLAGS}"
>>  export CXXFLAGS="${CXXFLAGS} ${ARCHFLAGS}"
>>
>> -sh "$(dirname $0)"/../../../configure ${OPTIONS} $*
>> +# find a native gcc for BUILDCC
>> +saved_IFS="$IFS"
>> +IFS=";"
>> +for dir in $PATH; do
>> +    if test -f "$dir/gcc.exe"; then
>> +        BUILDCC="$dir/gcc.exe -std=c99"
>> +        break
>> +    fi
>> +done
>> +IFS="$saved_IFS"
>> +
>> +export BUILDCC
>> +
>> +sh "$(dirname $0)"/../../../configure ${OPTIONS} "$@"
> 
> You should not need to resolve the path.
> 

Wrong. AC_PATH_PROG requires an absolute path for overriding.

-- 
KO Myung-Hun

Using Mozilla SeaMonkey 2.7.2
Under OS/2 Warp 4 for Korean with FixPak #15
In VirtualBox v4.1.32 on Intel Core i7-3615QM 2.30GHz with 8GB RAM

Korean OS/2 User Community : http://www.ecomstation.co.kr

-------------- next part --------------
An embedded and charset-unspecified text was scrubbed...
Name: 0001-src-fix-fourcc_gen-build-on-OS-2.patch
URL: <http://mailman.videolan.org/pipermail/vlc-devel/attachments/20150807/8615dd44/attachment.ksh>


More information about the vlc-devel mailing list