From: <dv...@us...> - 2006-07-24 22:12:36
|
Revision: 45 Author: dvalin Date: 2006-07-24 15:12:23 -0700 (Mon, 24 Jul 2006) ViewCVS: http://svn.sourceforge.net/dunelegacy/?rev=45&view=rev Log Message: ----------- Be sure to link against boost Modified Paths: -------------- branches/dunks/SConstruct Modified: branches/dunks/SConstruct =================================================================== --- branches/dunks/SConstruct 2006-07-24 21:31:28 UTC (rev 44) +++ branches/dunks/SConstruct 2006-07-24 22:12:23 UTC (rev 45) @@ -26,7 +26,7 @@ env.ParseConfig('sdl-config --cflags --libs') env.ParseConfig('pkg-config --cflags --libs zziplib') env.Append(CCFLAGS=["-Wall", "-Werror", "-O2", "-ffast-math", "-funroll-loops"]) - env.Append(LINKFLAGS = ["-ffast-math"]) + env.Append(LINKFLAGS = ["-ffast-math", "-lboost_signals"]) if 1: env.Append(CCFLAGS=["-ggdb"]) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <dv...@us...> - 2008-04-20 22:56:42
|
Revision: 152 http://dunelegacy.svn.sourceforge.net/dunelegacy/?rev=152&view=rev Author: dvalin Date: 2008-04-20 15:56:39 -0700 (Sun, 20 Apr 2008) Log Message: ----------- build with -pedantic Modified Paths: -------------- branches/dunks/SConstruct Modified: branches/dunks/SConstruct =================================================================== --- branches/dunks/SConstruct 2008-04-20 22:56:12 UTC (rev 151) +++ branches/dunks/SConstruct 2008-04-20 22:56:39 UTC (rev 152) @@ -25,7 +25,7 @@ if sys.platform != "win32": env.ParseConfig('sdl-config --cflags --libs') env.ParseConfig('pkg-config --cflags --libs zziplib') - env.Append(CCFLAGS=["-Wall", "-O0"]) #, "-Werror"]) + env.Append(CCFLAGS=["-Wall", "-pedantic", "-O0"]) #, "-Werror"]) #env.Append(CCFLAGS=["-Wall", "-Werror", "-O2", "-ffast-math", "-funroll-loops"]) #env.Append(LINKFLAGS = ["-ffast-math"]) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <dv...@us...> - 2008-04-24 18:52:54
|
Revision: 155 http://dunelegacy.svn.sourceforge.net/dunelegacy/?rev=155&view=rev Author: dvalin Date: 2008-04-24 11:52:12 -0700 (Thu, 24 Apr 2008) Log Message: ----------- don't link against libzzip Modified Paths: -------------- branches/dunks/SConstruct Modified: branches/dunks/SConstruct =================================================================== --- branches/dunks/SConstruct 2008-04-24 16:46:49 UTC (rev 154) +++ branches/dunks/SConstruct 2008-04-24 18:52:12 UTC (rev 155) @@ -24,7 +24,6 @@ if sys.platform != "win32": env.ParseConfig('sdl-config --cflags --libs') - env.ParseConfig('pkg-config --cflags --libs zziplib') env.Append(CCFLAGS=["-Wall", "-pedantic", "-O0"]) #, "-Werror"]) #env.Append(CCFLAGS=["-Wall", "-Werror", "-O2", "-ffast-math", "-funroll-loops"]) #env.Append(LINKFLAGS = ["-ffast-math"]) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <dv...@us...> - 2008-04-30 03:20:54
|
Revision: 214 http://dunelegacy.svn.sourceforge.net/dunelegacy/?rev=214&view=rev Author: dvalin Date: 2008-04-29 20:20:51 -0700 (Tue, 29 Apr 2008) Log Message: ----------- don't link against SDL_image as we no longer use it Modified Paths: -------------- branches/dunks/SConstruct Modified: branches/dunks/SConstruct =================================================================== --- branches/dunks/SConstruct 2008-04-30 02:02:51 UTC (rev 213) +++ branches/dunks/SConstruct 2008-04-30 03:20:51 UTC (rev 214) @@ -36,7 +36,6 @@ env.Append(CCFLAGS = ["/O2", "/EHsc", "/MD", "/Op", "/DEBUG", "/Zi", "/GR"]) env.Append(LIBS = [ "SDL", - "SDL_mixer", "SDL_image", "SDL_net", "SDL_ttf", This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <dv...@us...> - 2008-04-30 03:22:58
|
Revision: 215 http://dunelegacy.svn.sourceforge.net/dunelegacy/?rev=215&view=rev Author: dvalin Date: 2008-04-29 20:22:55 -0700 (Tue, 29 Apr 2008) Log Message: ----------- bah, I removed wrong, really move SDL_image and not SDL_mixer Modified Paths: -------------- branches/dunks/SConstruct Modified: branches/dunks/SConstruct =================================================================== --- branches/dunks/SConstruct 2008-04-30 03:20:51 UTC (rev 214) +++ branches/dunks/SConstruct 2008-04-30 03:22:55 UTC (rev 215) @@ -36,7 +36,7 @@ env.Append(CCFLAGS = ["/O2", "/EHsc", "/MD", "/Op", "/DEBUG", "/Zi", "/GR"]) env.Append(LIBS = [ "SDL", - "SDL_image", + "SDL_mixer", "SDL_net", "SDL_ttf", ]) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <dv...@us...> - 2008-05-04 19:15:42
|
Revision: 269 http://dunelegacy.svn.sourceforge.net/dunelegacy/?rev=269&view=rev Author: dvalin Date: 2008-05-04 12:15:39 -0700 (Sun, 04 May 2008) Log Message: ----------- yet another forgotten commit Modified Paths: -------------- branches/dunks/SConstruct Modified: branches/dunks/SConstruct =================================================================== --- branches/dunks/SConstruct 2008-05-04 19:11:46 UTC (rev 268) +++ branches/dunks/SConstruct 2008-05-04 19:15:39 UTC (rev 269) @@ -63,5 +63,5 @@ Export('env') -#SConscript("src/pakfile/SConscript") +SConscript("src/pakfile/SConscript") SConscript("src/SConscript") This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <dv...@us...> - 2008-05-27 21:09:32
|
Revision: 277 http://dunelegacy.svn.sourceforge.net/dunelegacy/?rev=277&view=rev Author: dvalin Date: 2008-05-27 14:09:29 -0700 (Tue, 27 May 2008) Log Message: ----------- drop zziplib & zlib stuff Modified Paths: -------------- branches/dunks/SConstruct Modified: branches/dunks/SConstruct =================================================================== --- branches/dunks/SConstruct 2008-05-27 21:00:17 UTC (rev 276) +++ branches/dunks/SConstruct 2008-05-27 21:09:29 UTC (rev 277) @@ -5,10 +5,6 @@ # default to using sdl-config if not on windows opts.Add('SDL_INCLUDE_PATH', 'include path for SDL', '') opts.Add('SDL_LIB_PATH', 'lib path for SDL', '') -opts.Add('ZLIB_INCLUDE_PATH', 'include path for zlib', '') -opts.Add('ZLIB_LIB_PATH', 'lib path for zlib', '') -opts.Add('ZZIP_INCLUDE_PATH', 'include path for zlib', '') -opts.Add('ZZIP_LIB_PATH', 'lib path for zlib', '') opts.Add('BOOST_INCLUDE_PATH', 'include path for boost', '') # need to get two paths as far as i can tell. these can probably be calculated somehow This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |