search for: jbkempf

Displaying 2 results from an estimated 2 matches for "jbkempf".

2007 Sep 26
1
Patches for building of flac 1.2.1
...browser/trunk/extras/contrib/src/Patches/flac-cross.patch The other one fixes an issue when compiling for Windows under Cygwin, that can't find SIZE_T_MAX. The patch is attached to that mail. I hope that those patches might help some people. Best Regards, -- Jean-Baptiste Kempf http://www.jbkempf.com/
2008 Aug 13
4
MinGW Patch
Hello, I was trying to compile Flac on MinGW/Msys but got an error stating SIZE_T_MAX is undefined. To fix this error I edited the file "flac-1.2.1/include/share/alloc.h" and made the following change: Starting at line #36 I changed: #ifndef SIZE_MAX # ifndef SIZE_T_MAX # ifdef _MSC_VER # define SIZE_T_MAX UINT_MAX # else # error # endif # endif # define SIZE_MAX SIZE_T_MAX