search for: grabbag_stat

Displaying 8 results from an estimated 8 matches for "grabbag_stat".

Did you mean: grabbag_static
2006 Oct 07
1
Compiling CVS in VC++ 6.0
...ello, Apologies if this has been done before. I just joined the list as this has bugged me for a while. I can compile FLAC 1.1.2 using Visual C++ 6.0 with no problems. However, when I try to compile the CVS source I get: Linking... utils.obj : error LNK2001: unresolved external symbol _snprintf grabbag_static.lib(stream_decoder.obj) : error LNK2001: unresolved external symbol _FLAC__lpc_restore_signal_asm_ia32_mmx grabbag_static.lib(stream_decoder.obj) : error LNK2001: unresolved external symbol _FLAC__lpc_restore_signal_asm_ia32 grabbag_static.lib(stream_encoder.obj) : error LNK2001: unresolved exter...
2013 Mar 11
2
flac 1.3.0pre2 pre-release
...> easiest to fix by having the code in utf8.c. But that function is defined in src/share/grabbag/alloc.c and should be getting linked into flac.exe. It doesn't need to be redefined in utf8.c. Specifically, I think alloc.c should be added as one of the build files in src/share/grabbag/grabbag_static.vcproj src/share/grabbag/grabbag_dynamic.vcproj Please try this and if that fixes it, please send a patch containing only that change. Erik -- ---------------------------------------------------------------------- Erik de Castro Lopo http://www.mega-nerd.com/
2013 Mar 12
0
flac 1.3.0pre2 pre-release
...ng the code in utf8.c. > But that function is defined in src/share/grabbag/alloc.c and should > be getting linked into flac.exe. It doesn't need to be redefined in > utf8.c. Specifically, I think alloc.c should be added as one of the > build files in > > src/share/grabbag/grabbag_static.vcproj > src/share/grabbag/grabbag_dynamic.vcproj > > Please try this and if that fixes it, please send a patch containing > only that change. I thought Ben Allison would have made a patch. Here's a patch for this. I suppose we were all blind at first for the cause. ------...
2016 Jan 09
2
Lets do a 1.3.2 release
Janne Hyv?rinen wrote: > Win_utf8 stuff should not be included in libflac since it's only to be > used by the flac.exe frontend. It is not needed by other programs nor > would they benefit from it without doing the extra work of converting > their ansi filenames and functions to utf-8. > >> Version 2 of my patch attached, which fixes the problem for the >>
2013 Jan 24
3
Anyone tried building FLAC with MSVC?
...ly it's of use to tell what I did 1) Compile ogg and get the library and include tree in the FLAC directory tree (that's in the README) 2) Install NASM (that's in the README too) 3) Install a platform SDK (I chose the one for XP SP2) 4) Set MSVC target to Release 5) Add alloc.h to the grabbag_static source files 6) Replace all occurrences of static inline with static __inline 7) Tell the linker to ignore msvcrt.lib 8) Replace all occurrences of %" PRIu64 " with %I64u (I'm not sure whether that is correct) 9) Uninline all (non-static) inlined function in bitreader.c and bitwri...
2013 Mar 11
2
flac 1.3.0pre2 pre-release
Janne Hyv?rinen wrote: > Here's a patch that fixes the creation of larger than 2 GB FLAC files. > Without this patch both GCC and MSVC compiles of FLAC will fail on > Windows when they have written 2 GB file while encoding from stdin. And > after 4GB when encoding from WAV file. Ok. > It includes Ben Allison's MSVC changes and JonY's MinGW changes with > some
2007 Mar 06
1
Errors compiling flac in Visual Studio Express 2005
...t;Build log was saved at "file://c:\greenhouse\workspace\soundio\tool\flac_1.1.3\main\flac-1.1.3\src\libFLAC\Debug_static\BuildLog.htm" 3>libFLAC_static - 1 error(s), 0 warning(s) 4>getopt1.c 4>Generating Code... 4>Creating library... 5>------ Rebuild All started: Project: grabbag_static, Configuration: Debug Win32 ------ 5>Deleting intermediate and output files for project 'grabbag_static', configuration 'Debug|Win32' 4>Build log was saved at "file://c:\greenhouse\workspace\soundio\tool\flac_1.1.3\main\flac-1.1.3\src\share\getopt\Debug_static\BuildL...
2016 Jan 09
3
Lets do a 1.3.2 release
...C-static.a. > > > P.S.: Visual Studio creates libFLAC_static.lib and libFLAC_dynamic.dll, and > none of them contain win_utf8_io stuff. I was wrong. In Visual Studio, 'flac' project depends on 'libFLAC_static' project and all the projects from src/share: getopt_static, grabbag_static, replaygain_analysis_static, replaygain_synthesis_static, utf8_static, win_utf8_io_static Both 'libFLAC_static' and 'libFLAC_dynamic' projects depend (only) on 'win_utf8_io_static'. I tried to remove this dependency and libFLAC_dynamic failed to compile since metadata_ite...