Changeset 411 for cafu/trunk
- Timestamp:
- 10/21/11 11:09:30 (7 months ago)
- Location:
- cafu/trunk
- Files:
-
- 3 modified
-
ExtLibs/freealut/SConscript (modified) (1 diff)
-
ExtLibs/freealut/include/AL/alut.h (modified) (1 diff)
-
Libs/SoundSystem/Common/MP3Stream.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
cafu/trunk/ExtLibs/freealut/SConscript
r410 r411 8 8 # CPPDEFINES created using VC++ project file as template (removed Windows specific DEFINES for Linux build). 9 9 if sys.platform=="win32": 10 env_freealut.Append(CPPDEFINES=[' _WINDOWS', '_USRDLL', 'ALUT_EXPORTS', 'WIN32', '_MBCS', 'ALUT_BUILD_LIBRARY', 'HAVE__STAT', 'HAVE_BASETSD_H', 'HAVE_SLEEP', 'HAVE_WINDOWS_H'])10 env_freealut.Append(CPPDEFINES=['ALUT_EXPORTS', '_MBCS', 'ALUT_BUILD_LIBRARY', 'HAVE__STAT', 'HAVE_BASETSD_H', 'HAVE_SLEEP', 'HAVE_WINDOWS_H']) 11 11 env_freealut.Append(CPPPATH=['include', '#/ExtLibs/openal-win/include']) 12 12 if env_freealut["TARGET_ARCH"]=="x86": -
cafu/trunk/ExtLibs/freealut/include/AL/alut.h
r14 r411 17 17 #endif 18 18 19 #if defined(_WIN32) && !defined(_XBOX) 19 #if defined(_WIN32) && !defined(_XBOX) && defined(ALUT_BUILD_AS_DLL) // CF: I added ALUT_BUILD_AS_DLL so that we can build alut as a *static* library as well. 20 20 #if defined (ALUT_BUILD_LIBRARY) 21 21 #define ALUT_API __declspec(dllexport) -
cafu/trunk/Libs/SoundSystem/Common/MP3Stream.cpp
r285 r411 29 29 #include <stdexcept> 30 30 31 #ifdef _WIN3232 // Under Windows, the mpg123 functions must be properly declared for DLL import.33 #define LINK_MPG123_DLL34 #endif31 // #ifdef _WIN32 32 // // Under Windows, the mpg123 functions must be properly declared for DLL import. 33 // #define LINK_MPG123_DLL 34 // #endif 35 35 #include "mpg123.h" 36 36
