On Tue, Apr 22, 2008 at 8:37 PM, Jack Bonn <jack.bonn at swlabs.com> wrote: > I now have a working build. Thanks Benny and Aaron for the help. > > I did have a few issues. I had to add corelibc.lib to the linker's > "additional dependencies". Also, $(CENoDefaultLib) refused to work for > the "ignore specific library", so I went back to LIBC.lib. > > I had one additional problem. In the directory: > > third_party/portaudio/src/common > > the file pa_debugprint.c was causing a "unresolved external symbol > _vsnprintf" at link time. So I changed line 77 from > > #if (_MSC_VER) && (_MSC_VER < 1400) > to > > #if (_WIN32_WCE) || ((_MSC_VER) && (_MSC_VER < 1400)) > > and things worked. Is there a better way to accomplish this? _MSC_VER is > defined and has a value of 1500 here. Ah, the good old _vsnprnitf strikes again. Let me bring this to PA list and hopefully we have a resolution soon. Thanks Benny > Thanks again. >