diff --git a/ChangeLog b/ChangeLog index d4c510fcf5..5618efbc86 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,18 @@ +2008-07-23 Michael Smith + + * gst/festival/gstfestival.c: + Guard unistd.h with HAVE_UNISTD_H + * gst/modplug/libmodplug/load_it.cpp: + * gst/modplug/libmodplug/sndfile.cpp: + * gst/modplug/libmodplug/sndfile.h: + * gst/modplug/libmodplug/stdafx.h: + Support for compiling with MSVC: use _MSC_VER for detecting MSVC instead + of MSC_VER. Make CanPackSamples take the type it's passed. Change scope + of a variable in load_it.cpp to MSVC's scoping rules. + * gst/sdp/gstsdpdemux.c: + Guard unistd.h with HAVE_UNISTD_H + Fixes #544457. + 2008-07-22 Stefan Kost * ext/timidity/gsttimidity.c: diff --git a/gst/festival/gstfestival.c b/gst/festival/gstfestival.c index d67c5403bb..7d919b90f8 100644 --- a/gst/festival/gstfestival.c +++ b/gst/festival/gstfestival.c @@ -84,7 +84,11 @@ #include #include + +#ifdef HAVE_UNISTD_H #include +#endif + #include #include #include diff --git a/gst/modplug/libmodplug/load_it.cpp b/gst/modplug/libmodplug/load_it.cpp index d6222e9254..0dac75d64a 100644 --- a/gst/modplug/libmodplug/load_it.cpp +++ b/gst/modplug/libmodplug/load_it.cpp @@ -869,7 +869,8 @@ BOOL CSoundFile::SaveIT(LPCSTR lpszFileName, UINT nPacking) { MODCOMMAND *pzc = Patterns[npat]; UINT nz = PatternSize[npat] * m_nChannels; - for (UINT iz=0; iz +#endif + #include #include #include