From f750a68a2627f5185edff05885b010c63bb16571 Mon Sep 17 00:00:00 2001 From: Joerg Mueller Date: Tue, 11 Aug 2009 20:48:19 +0000 Subject: Useless final sound system branch update. --- config/linux2-config.py | 2 +- config/win32-mingw-config.py | 2 +- config/win64-vc-config.py | 2 +- source/blender/blenkernel/CMakeLists.txt | 1 - source/blender/blenloader/intern/writefile.c | 2 -- source/blender/editors/space_file/filelist.c | 2 ++ tools/Blender.py | 1 + 7 files changed, 6 insertions(+), 6 deletions(-) diff --git a/config/linux2-config.py b/config/linux2-config.py index 3960a387f1a..c1707a02cc4 100644 --- a/config/linux2-config.py +++ b/config/linux2-config.py @@ -14,7 +14,7 @@ BF_PYTHON_LIB_STATIC = '${BF_PYTHON}/lib/libpython${BF_PYTHON_VERSION}.a' WITH_BF_OPENAL = True WITH_BF_STATICOPENAL = False BF_OPENAL = '/usr' -BF_OPENAL_INC = '${BF_OPENAL}/include/AL' +BF_OPENAL_INC = '${BF_OPENAL}/include' BF_OPENAL_LIB = 'openal' BF_OPENAL_LIB_STATIC = '${BF_OPENAL}/lib/libopenal.a' diff --git a/config/win32-mingw-config.py b/config/win32-mingw-config.py index 5bd66ddf179..1570698d261 100644 --- a/config/win32-mingw-config.py +++ b/config/win32-mingw-config.py @@ -21,7 +21,7 @@ BF_OPENAL_INC = '${BF_OPENAL}/include' BF_OPENAL_LIB = 'wrap_oal' BF_OPENAL_LIBPATH = '${BF_OPENAL}/lib' -WITH_BF_FFMPEG = True +WITH_BF_FFMPEG = False BF_FFMPEG_LIB = 'avformat swscale avcodec avutil avdevice xvidcore x264' BF_FFMPEG_LIBPATH = LIBDIR + '/gcc/ffmpeg/lib' BF_FFMPEG_INC = LIBDIR + '/gcc/ffmpeg/include' diff --git a/config/win64-vc-config.py b/config/win64-vc-config.py index 3d0aa3666e8..ed08e578df8 100644 --- a/config/win64-vc-config.py +++ b/config/win64-vc-config.py @@ -2,7 +2,7 @@ LCGDIR = '#../lib/win64' LIBDIR = '${LCGDIR}' # enable ffmpeg support -WITH_BF_FFMPEG = True # -DWITH_FFMPEG +WITH_BF_FFMPEG = False # -DWITH_FFMPEG BF_FFMPEG = LIBDIR +'/ffmpeg' BF_FFMPEG_INC = '${BF_FFMPEG}/include' BF_FFMPEG_LIBPATH='${BF_FFMPEG}/lib' diff --git a/source/blender/blenkernel/CMakeLists.txt b/source/blender/blenkernel/CMakeLists.txt index 269fe2b325d..db9bbfcc5e7 100644 --- a/source/blender/blenkernel/CMakeLists.txt +++ b/source/blender/blenkernel/CMakeLists.txt @@ -35,7 +35,6 @@ SET(INC ../nodes ../../../extern/glew/include ../gpu ../makesrna ../../../intern/smoke/extern ../../../intern/bsp/extern ../../../intern/audaspace - ${SDL_INC} ${ZLIB_INC} ) diff --git a/source/blender/blenloader/intern/writefile.c b/source/blender/blenloader/intern/writefile.c index 5e2ef5a534b..73b7158035a 100644 --- a/source/blender/blenloader/intern/writefile.c +++ b/source/blender/blenloader/intern/writefile.c @@ -2140,8 +2140,6 @@ static void write_sounds(WriteData *wd, ListBase *idbase) PackedFile * pf; - // set all samples to unsaved status - sound= idbase->first; while(sound) { if(sound->id.us>0 || wd->current) { diff --git a/source/blender/editors/space_file/filelist.c b/source/blender/editors/space_file/filelist.c index e27385b3bfb..538c1e4fce7 100644 --- a/source/blender/editors/space_file/filelist.c +++ b/source/blender/editors/space_file/filelist.c @@ -848,6 +848,7 @@ void filelist_setfiletypes(struct FileList* filelist, short has_quicktime) || BLI_testextensie(file->relname, ".ac3") || BLI_testextensie(file->relname, ".aac") || BLI_testextensie(file->relname, ".flac") + || BLI_testextensie(file->relname, ".wma") || BLI_testextensie(file->relname, ".eac3")) { file->flags |= SOUNDFILE; } @@ -891,6 +892,7 @@ void filelist_setfiletypes(struct FileList* filelist, short has_quicktime) || BLI_testextensie(file->relname, ".ac3") || BLI_testextensie(file->relname, ".aac") || BLI_testextensie(file->relname, ".flac") + || BLI_testextensie(file->relname, ".wma") || BLI_testextensie(file->relname, ".eac3")) { file->flags |= SOUNDFILE; } diff --git a/tools/Blender.py b/tools/Blender.py index 6b07853ac85..bca9ba4754d 100644 --- a/tools/Blender.py +++ b/tools/Blender.py @@ -198,6 +198,7 @@ def setup_syslibs(lenv): if lenv['WITH_BF_LCMS']: syslibs.append(lenv['BF_LCMS_LIB']) + syslibs += lenv['LLIBS'] return syslibs -- cgit v1.2.3