Displaying 20 results from an estimated 5000 matches similar to: "flac-dev Digest, Vol 139, Issue 1"
2014 May 24
2
make dllimport/dllexport attributes work with mingw (and others)
On 5/24/14, lvqcl <lvqcl.mail at gmail.com> wrote:
> Ozkan Sezer <sezeroz at gmail.com> ?????(?) ? ????? ?????? Sat, 24 May 2014
> 10:16:15 +0400:
>
>> - changes the _MSC_VER condition to universally _WIN32: MSVC, as well
>> as GCC supports this.
>
> MSYS/MinGW 4.8.3, 4.9.0 can't compile code from git after this patch:
>
> format.c:47:22: error:
2014 May 25
2
make dllimport/dllexport attributes work with mingw (and others)
Erik de Castro Lopo wrote:
> Ozkan Sezer wrote:
>
>> My apologies, obviously sent an old testing patch. Correct one is
>> attached (declspec2.diff). Compilation tested using MinGW (gcc-3.4.5,
>> binutils-2.20), and MinGW-w64 (gcc-4.5.4, binutils-2.21.90.)
>
> lvqcl,
>
> Can you please validate this new patch?
It works, but only if i call ./configure without
2014 May 25
0
make dllimport/dllexport attributes work with mingw (and others)
On 5/25/14, lvqcl <lvqcl.mail at gmail.com> wrote:
> Erik de Castro Lopo wrote:
>
>> Ozkan Sezer wrote:
>>
>>> My apologies, obviously sent an old testing patch. Correct one is
>>> attached (declspec2.diff). Compilation tested using MinGW (gcc-3.4.5,
>>> binutils-2.20), and MinGW-w64 (gcc-4.5.4, binutils-2.21.90.)
>>
>> lvqcl,
>>
2017 Jan 14
4
unsigned int and FLAC__uint32 are used interchangeably
On 1/14/17, Erik de Castro Lopo <mle+la at mega-nerd.com> wrote:
> Ozkan Sezer wrote:
>
>> > Ozkan Sezer wrote:
>> >
>> >> unsigned int and FLAC__uint32 are used interchangeably, leading to
>> >> warnings with platforms (e.g. djgpp) where int32_t is long:
>> >
>> > Is `sizeof int == 4` though?
>>
>> Yes, obviously
2013 Aug 21
3
PATCH for cpu.c
Ozkan Sezer wrote:
> On 8/21/13, lvqcl <lvqcl.mail at gmail.com> wrote:
> > 1) Some time ago all project files for MSVC 6 were removed; it makes sense
> > to remove the code that is necessary only for MSVC 6 and older compilers.
> >
>
> One may still compile using command line instead of a project file. Does
> it really hurt keeping such code?
Its crufty old
2014 May 24
0
make dllimport/dllexport attributes work with mingw (and others)
Ozkan Sezer wrote:
> My apologies, obviously sent an old testing patch. Correct one is
> attached (declspec2.diff). Compilation tested using MinGW (gcc-3.4.5,
> binutils-2.20), and MinGW-w64 (gcc-4.5.4, binutils-2.21.90.)
lvqcl,
Can you please validate this new patch?
Cheers,
Erik
--
----------------------------------------------------------------------
Erik de Castro Lopo
2014 May 25
1
make dllimport/dllexport attributes work with mingw (and others)
Ozkan Sezer wrote:
> flac.exe built with mingw with or without the dllimport/dllexport patch
> always requires libFLAC-8.dll (because flac/Makefile.am has libFLAC.la
> in flac_LDADD and not libFLAC-static.la), and the patch doesn't make it
> any more or any less dependent on any 'foreign' dlls: the patch doesn't
> change the existent situation in that regard. If
2016 Jun 12
2
[PATCH] for Darwin asm compile
This patch should fix https://sourceforge.net/p/flac/bugs/438/
I cannot test it myself because I don't have Mac OS X.
But the fact that such patch was included in Audacity means
that it should be OK.
Or maybe it's better to ask Audacity/Macports/Fink devs for comments?
-------------- next part --------------
A non-text attachment was scrubbed...
Name: macho_asm.patch
Type:
2017 Jan 14
0
unsigned int and FLAC__uint32 are used interchangeably
Ozkan Sezer wrote:
> > Ozkan Sezer wrote:
> >
> >> unsigned int and FLAC__uint32 are used interchangeably, leading to
> >> warnings with platforms (e.g. djgpp) where int32_t is long:
> >
> > Is `sizeof int == 4` though?
>
> Yes, obviously it is
Well I've just pushed a patch that purges the code base of `unsigned`.
Please test and let us know
2017 Jan 14
2
unsigned int and FLAC__uint32 are used interchangeably
On 1/14/17, Erik de Castro Lopo <mle+la at mega-nerd.com> wrote:
> Ozkan Sezer wrote:
>
>> unsigned int and FLAC__uint32 are used interchangeably, leading to
>> warnings with platforms (e.g. djgpp) where int32_t is long:
>
> Is `sizeof int == 4` though?
Yes, obviously it is
> I couldn't image FLAC working correctly
> if it wasn't.
>
> Erik
2017 Jan 22
0
os/2 support using Watcom
On 1/22/17, Dave Yeo <dave.r.yeo at gmail.com> wrote:
> On 01/22/17 09:57 AM, Ozkan Sezer wrote:
>> On 1/22/17, Dave Yeo <dave.r.yeo at gmail.com> wrote:
>>> On 01/22/17 05:35 AM, Ozkan Sezer wrote:
>>>> The attached set of patches adds support for OS/2 using Watcom compiler
>>>> (tested with Open Watcom 1.9). My only interest was building a
2017 Jan 23
4
os/2 support using Watcom
On 01/22/17 02:00 PM, Ozkan Sezer wrote:
> Question: Does emx support __declspec(dllexport) so I can adjust
> these changes? Because the emx build of the dll seems to have
> exported_everything_ :(
GCC supports __declspec(dllexport) though it still needs a def file,
with no exports. Libtool doesn't currently and as flac uses libtool...
Dave
2017 Jan 22
7
os/2 support using Watcom
The attached set of patches adds support for OS/2 using Watcom compiler
(tested with Open Watcom 1.9). My only interest was building a working
dll (the last patch in the set adds a makefile for it), therefore I did
not touch other places: If there is interest, I can do so.
Regards.
--
O.S.
-------------- next part --------------
A non-text attachment was scrubbed...
Name:
2017 Jan 23
1
os/2 support using Watcom
Ozkan Sezer wrote:
> Anyways, with the changed exports.h patch, every need should
> be met now..
Sorry, which patch is that?
Erik
--
----------------------------------------------------------------------
Erik de Castro Lopo
http://www.mega-nerd.com/
2017 Jan 22
0
os/2 support using Watcom
On 01/22/17 05:35 AM, Ozkan Sezer wrote:
> The attached set of patches adds support for OS/2 using Watcom compiler
> (tested with Open Watcom 1.9). My only interest was building a working
> dll (the last patch in the set adds a makefile for it), therefore I did
> not touch other places: If there is interest, I can do so.
Most of the patches can have s/__EMX__/__OS2__/ excepting the
2014 May 24
2
make dllimport/dllexport attributes work with mingw (and others)
The following patch changes export.h so that the dllimport/dllexport
attributes work with mingw/mingw-w64 and others:
- changes _declspec keyword to __declspec: the former may not be
defined by some toolchains.
- changes the _MSC_VER condition to universally _WIN32: MSVC, as well
as GCC supports this.
Attached patch: declspec.diff
Regards.
--
O.S.
-------------- next part --------------
2017 Jan 13
2
[PATCH] add missing string.h include to cpu.c (for memset())
Attached patch adds missing string.h include to cpu.c (for memset())
--
O.S.
-------------- next part --------------
A non-text attachment was scrubbed...
Name: 0001-add-missing-string.h-include-to-cpu.c-for-memset.patch
Type: application/octet-stream
Size: 587 bytes
Desc: not available
URL: <http://lists.xiph.org/pipermail/flac-dev/attachments/20170113/25c937cf/attachment.obj>
2014 Jun 19
4
Lets work towards a new version
lvqcl wrote:
> Audacity still uses VS2008 and slowly tries to migrate to VS2012.
> But as stated at <http://wiki.audacityteam.org/wiki/Developing_On_Windows>,
> "Audacity is currently a 32-bit only application". So it doesn't need
> 64-bit builds.
> Currently its trunk contains 'audacity.sln' made with Visual C++ Express 2008
> and
2013 May 01
2
[PATCH] stream.c needs sys/types.h
For definition of off_t type, stream.c needs including sys/types.h. I
hit this requirement at least once when compiling against Mac OSX 10.4
SDK. Trivial patch inlined below.
--- opusfile/src/stream.c~
+++ opusfile/src/stream.c
@@ -14,6 +14,7 @@
last mod: $Id: vorbisfile.c 17573 2010-10-27 14:53:59Z xiphmont $
********************************************************************/
+#include
2016 May 14
2
FLAC Visual Studio file tidy-up?
Erik de Castro Lopo wrote:
>> I'm looking to maybe move all the .sln and related Visual Studio project
>> files (not the source .c and .h files!) into new directories under
>> "win32\*" within the flac reppo.
>> Any objections/tips or reasons to leave them as is?
>
> Lvqcl and other Windows devs?
>
> I'm ok with this if you are.
I don't