From c455673f8705d9035b939edab682e2e246edf94e Mon Sep 17 00:00:00 2001 From: Glenn Rice Date: Tue, 9 Mar 2010 22:17:33 +0000 Subject: Added scons options "shared_libname=true" to link agains the system shared libraries for lzo, sfml, and soil. For example add the scons option "shared_lzo=true" for lzo. This will check for the system libraries and then fall back to building and linking statically against the Externals if not found. You must have liblzo2-dev, libsoil-dev, and libsfml-dev installed. Note that you need version 1.5 or later for sfml. Currently scons doesn't check the version for you. If you are having trouble with segmentation faults in linux try "shared_soil=true". That seems to fix the problem. How do we fix this for the static build? git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@5182 8ced0084-cf51-0410-be5f-012b33b47a6e --- Externals/SFML/src/SConscript | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Externals/SFML/src/SConscript') diff --git a/Externals/SFML/src/SConscript b/Externals/SFML/src/SConscript index dde2295f4a..45d0c81db3 100644 --- a/Externals/SFML/src/SConscript +++ b/Externals/SFML/src/SConscript @@ -19,4 +19,4 @@ env_sfml = env.Clone( CXXFLAGS = env.filterWarnings(env['CXXFLAGS']), ) -env_sfml.StaticLibrary(env['local_libs'] + "sfml", files) +env_sfml.StaticLibrary(env['local_libs'] + "sfml-network", files) -- cgit v1.2.3