Re: [FFmpeg-devel] Create .lib static libraries on Windows instead of .a libraries (using MSVC compiler)

2017-11-30 Thread Hendrik Leppkes
On Thu, Nov 30, 2017 at 2:43 PM, Carl Eugen Hoyos wrote: > 2017-09-27 22:26 GMT+02:00 Hendrik Leppkes : >> On Wed, Sep 27, 2017 at 10:11 PM, Mateusz wrote: >>> W dniu 2017-09-27 o 17:40, Hendrik Leppkes pisze: On Wed, Sep 27, 2017 at 4:43 PM, Anonymous Maarten wrote: > Hey, > >

Re: [FFmpeg-devel] Create .lib static libraries on Windows instead of .a libraries (using MSVC compiler)

2017-11-30 Thread Carl Eugen Hoyos
2017-09-27 22:26 GMT+02:00 Hendrik Leppkes : > On Wed, Sep 27, 2017 at 10:11 PM, Mateusz wrote: >> W dniu 2017-09-27 o 17:40, Hendrik Leppkes pisze: >>> On Wed, Sep 27, 2017 at 4:43 PM, Anonymous Maarten >>> wrote: Hey, Building the static ffmpeg library using vcpkg is currently br

Re: [FFmpeg-devel] Create .lib static libraries on Windows instead of .a libraries (using MSVC compiler)

2017-09-27 Thread Anonymous Maarten
The current situation is inconsistent. It creates .lib/.dlls files for dynamic libraries and .a files for static libraries. This complicates e.g. detecting ffmpeg using cmake needlessly. Changing this behavior would be a net gain. I would also be happy if there would be a (configure) switch to man

Re: [FFmpeg-devel] Create .lib static libraries on Windows instead of .a libraries (using MSVC compiler)

2017-09-27 Thread Hendrik Leppkes
On Wed, Sep 27, 2017 at 10:11 PM, Mateusz wrote: > W dniu 2017-09-27 o 17:40, Hendrik Leppkes pisze: >> On Wed, Sep 27, 2017 at 4:43 PM, Anonymous Maarten >> wrote: >>> Hey, >>> >>> Building the static ffmpeg library using vcpkg is currently broken [1][2]. >>> This is mainly due to the fact that

Re: [FFmpeg-devel] Create .lib static libraries on Windows instead of .a libraries (using MSVC compiler)

2017-09-27 Thread Mateusz
W dniu 2017-09-27 o 17:40, Hendrik Leppkes pisze: > On Wed, Sep 27, 2017 at 4:43 PM, Anonymous Maarten > wrote: >> Hey, >> >> Building the static ffmpeg library using vcpkg is currently broken [1][2]. >> This is mainly due to the fact that the built static libraries are .a files >> with lib prefix

Re: [FFmpeg-devel] Create .lib static libraries on Windows instead of .a libraries (using MSVC compiler)

2017-09-27 Thread Anonymous Maarten
>>* Hey, ** Building the static ffmpeg library using vcpkg is currently broken [1][2]. *>>* This is mainly due to the fact that the built static libraries are .a files *>>* with lib prefixes. ** The attached patch sets the lib prefix to "" and the lib suffix to ".lib". ** Tested by buil

Re: [FFmpeg-devel] Create .lib static libraries on Windows instead of .a libraries (using MSVC compiler)

2017-09-27 Thread Hendrik Leppkes
On Wed, Sep 27, 2017 at 4:43 PM, Anonymous Maarten wrote: > Hey, > > Building the static ffmpeg library using vcpkg is currently broken [1][2]. > This is mainly due to the fact that the built static libraries are .a files > with lib prefixes. > > The attached patch sets the lib prefix to "" and th

Re: [FFmpeg-devel] Create .lib static libraries on Windows instead of .a libraries (using MSVC compiler)

2017-09-27 Thread Carl Eugen Hoyos
2017-09-27 16:43 GMT+02:00 Anonymous Maarten : > Building the static ffmpeg library using vcpkg is currently broken [1][2]. > This is mainly due to the fact that the built static libraries are .a files > with lib prefixes. Did this work with older versions of any of the involved tools (including

[FFmpeg-devel] Create .lib static libraries on Windows instead of .a libraries (using MSVC compiler)

2017-09-27 Thread Anonymous Maarten
Hey, Building the static ffmpeg library using vcpkg is currently broken [1][2]. This is mainly due to the fact that the built static libraries are .a files with lib prefixes. The attached patch sets the lib prefix to "" and the lib suffix to ".lib". Tested by building ffmpeg using vcpkg and Visu