annotate build/openbsd4-config.py @ 697:ecaa4d98f05f tip

Abstracted the GUI code and refactored the GUIChan-specific code into its own module. * Most of the GUIChan code has been refactored into its own gui/guichan module. However, references to the GuiFont class still persist in the Engine and GuiManager code and these will need further refactoring. * GuiManager is now an abstract base class which specific implementations (e.g. GUIChan) should subclass. * The GUIChan GUI code is now a concrete implementation of GuiManager, most of which is in the new GuiChanGuiManager class. * The GUI code in the Console class has been refactored out of the Console and into the GUIChan module as its own GuiChanConsoleWidget class. The rest of the Console class related to executing commands was left largely unchanged. * Existing client code may need to downcast the GuiManager pointer received from FIFE::Engine::getGuiManager() to GuiChanGuiManager, since not all functionality is represented in the GuiManager abstract base class. Python client code can use the new GuiChanGuiManager.castTo static method for this purpose.
author M. George Hansen <technopolitica@gmail.com>
date Sat, 18 Jun 2011 00:28:40 -1000
parents be625cdff350
children
rev   line source
692
be625cdff350 This commit is to back port a fix in 0.3.3 dev branch to the current trunk. Adding boost_system as a required dependency as boost_filesystem is dependent on it. On linux distros with newer versions of gcc FIFE is failing to configure properly without boost_system in the lib list. [t:540]
vtchill@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 429
diff changeset
1 # Install the following packages: libvorbis python py-yaml swig png openal sdl
be625cdff350 This commit is to back port a fix in 0.3.3 dev branch to the current trunk. Adding boost_system as a required dependency as boost_filesystem is dependent on it. On linux distros with newer versions of gcc FIFE is failing to configure properly without boost_system in the lib list. [t:540]
vtchill@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 429
diff changeset
2 # sdl-image sdl-ttf guichan boost
be625cdff350 This commit is to back port a fix in 0.3.3 dev branch to the current trunk. Adding boost_system as a required dependency as boost_filesystem is dependent on it. On linux distros with newer versions of gcc FIFE is failing to configure properly without boost_system in the lib list. [t:540]
vtchill@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 429
diff changeset
3 #
be625cdff350 This commit is to back port a fix in 0.3.3 dev branch to the current trunk. Adding boost_system as a required dependency as boost_filesystem is dependent on it. On linux distros with newer versions of gcc FIFE is failing to configure properly without boost_system in the lib list. [t:540]
vtchill@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 429
diff changeset
4
be625cdff350 This commit is to back port a fix in 0.3.3 dev branch to the current trunk. Adding boost_system as a required dependency as boost_filesystem is dependent on it. On linux distros with newer versions of gcc FIFE is failing to configure properly without boost_system in the lib list. [t:540]
vtchill@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 429
diff changeset
5 import sys
be625cdff350 This commit is to back port a fix in 0.3.3 dev branch to the current trunk. Adding boost_system as a required dependency as boost_filesystem is dependent on it. On linux distros with newer versions of gcc FIFE is failing to configure properly without boost_system in the lib list. [t:540]
vtchill@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 429
diff changeset
6 import os
be625cdff350 This commit is to back port a fix in 0.3.3 dev branch to the current trunk. Adding boost_system as a required dependency as boost_filesystem is dependent on it. On linux distros with newer versions of gcc FIFE is failing to configure properly without boost_system in the lib list. [t:540]
vtchill@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 429
diff changeset
7
be625cdff350 This commit is to back port a fix in 0.3.3 dev branch to the current trunk. Adding boost_system as a required dependency as boost_filesystem is dependent on it. On linux distros with newer versions of gcc FIFE is failing to configure properly without boost_system in the lib list. [t:540]
vtchill@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 429
diff changeset
8 def initEnvironment(env):
be625cdff350 This commit is to back port a fix in 0.3.3 dev branch to the current trunk. Adding boost_system as a required dependency as boost_filesystem is dependent on it. On linux distros with newer versions of gcc FIFE is failing to configure properly without boost_system in the lib list. [t:540]
vtchill@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 429
diff changeset
9 # Vorbisfile
be625cdff350 This commit is to back port a fix in 0.3.3 dev branch to the current trunk. Adding boost_system as a required dependency as boost_filesystem is dependent on it. On linux distros with newer versions of gcc FIFE is failing to configure properly without boost_system in the lib list. [t:540]
vtchill@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 429
diff changeset
10 env.Append(CPPPATH = [
be625cdff350 This commit is to back port a fix in 0.3.3 dev branch to the current trunk. Adding boost_system as a required dependency as boost_filesystem is dependent on it. On linux distros with newer versions of gcc FIFE is failing to configure properly without boost_system in the lib list. [t:540]
vtchill@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 429
diff changeset
11 os.path.join('/', 'usr', 'local', 'include'),
be625cdff350 This commit is to back port a fix in 0.3.3 dev branch to the current trunk. Adding boost_system as a required dependency as boost_filesystem is dependent on it. On linux distros with newer versions of gcc FIFE is failing to configure properly without boost_system in the lib list. [t:540]
vtchill@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 429
diff changeset
12 os.path.join('/', 'usr', 'local', 'include', 'vorbis')
be625cdff350 This commit is to back port a fix in 0.3.3 dev branch to the current trunk. Adding boost_system as a required dependency as boost_filesystem is dependent on it. On linux distros with newer versions of gcc FIFE is failing to configure properly without boost_system in the lib list. [t:540]
vtchill@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 429
diff changeset
13 ])
be625cdff350 This commit is to back port a fix in 0.3.3 dev branch to the current trunk. Adding boost_system as a required dependency as boost_filesystem is dependent on it. On linux distros with newer versions of gcc FIFE is failing to configure properly without boost_system in the lib list. [t:540]
vtchill@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 429
diff changeset
14 env.Append(LIBPATH = [os.path.join('/', 'usr', 'local', 'lib')])
be625cdff350 This commit is to back port a fix in 0.3.3 dev branch to the current trunk. Adding boost_system as a required dependency as boost_filesystem is dependent on it. On linux distros with newer versions of gcc FIFE is failing to configure properly without boost_system in the lib list. [t:540]
vtchill@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 429
diff changeset
15 env.Append(LIBS = ['ogg', 'vorbis'])
be625cdff350 This commit is to back port a fix in 0.3.3 dev branch to the current trunk. Adding boost_system as a required dependency as boost_filesystem is dependent on it. On linux distros with newer versions of gcc FIFE is failing to configure properly without boost_system in the lib list. [t:540]
vtchill@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 429
diff changeset
16
be625cdff350 This commit is to back port a fix in 0.3.3 dev branch to the current trunk. Adding boost_system as a required dependency as boost_filesystem is dependent on it. On linux distros with newer versions of gcc FIFE is failing to configure properly without boost_system in the lib list. [t:540]
vtchill@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 429
diff changeset
17 # PNG
be625cdff350 This commit is to back port a fix in 0.3.3 dev branch to the current trunk. Adding boost_system as a required dependency as boost_filesystem is dependent on it. On linux distros with newer versions of gcc FIFE is failing to configure properly without boost_system in the lib list. [t:540]
vtchill@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 429
diff changeset
18 env.Append(CPPPATH = [os.path.join('/', 'usr', 'local', 'include', 'libpng')])
be625cdff350 This commit is to back port a fix in 0.3.3 dev branch to the current trunk. Adding boost_system as a required dependency as boost_filesystem is dependent on it. On linux distros with newer versions of gcc FIFE is failing to configure properly without boost_system in the lib list. [t:540]
vtchill@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 429
diff changeset
19
be625cdff350 This commit is to back port a fix in 0.3.3 dev branch to the current trunk. Adding boost_system as a required dependency as boost_filesystem is dependent on it. On linux distros with newer versions of gcc FIFE is failing to configure properly without boost_system in the lib list. [t:540]
vtchill@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 429
diff changeset
20 # Python library
be625cdff350 This commit is to back port a fix in 0.3.3 dev branch to the current trunk. Adding boost_system as a required dependency as boost_filesystem is dependent on it. On linux distros with newer versions of gcc FIFE is failing to configure properly without boost_system in the lib list. [t:540]
vtchill@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 429
diff changeset
21 pythonversion = 'python' + str(os.sys.version_info[0]) + '.' + str(os.sys.version_info[1])
be625cdff350 This commit is to back port a fix in 0.3.3 dev branch to the current trunk. Adding boost_system as a required dependency as boost_filesystem is dependent on it. On linux distros with newer versions of gcc FIFE is failing to configure properly without boost_system in the lib list. [t:540]
vtchill@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 429
diff changeset
22 env.Append(CPPPATH = os.path.join('/', 'usr', 'local', 'include', pythonversion))
be625cdff350 This commit is to back port a fix in 0.3.3 dev branch to the current trunk. Adding boost_system as a required dependency as boost_filesystem is dependent on it. On linux distros with newer versions of gcc FIFE is failing to configure properly without boost_system in the lib list. [t:540]
vtchill@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 429
diff changeset
23 env.Append(LIBS = [pythonversion, 'util'])
be625cdff350 This commit is to back port a fix in 0.3.3 dev branch to the current trunk. Adding boost_system as a required dependency as boost_filesystem is dependent on it. On linux distros with newer versions of gcc FIFE is failing to configure properly without boost_system in the lib list. [t:540]
vtchill@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 429
diff changeset
24
be625cdff350 This commit is to back port a fix in 0.3.3 dev branch to the current trunk. Adding boost_system as a required dependency as boost_filesystem is dependent on it. On linux distros with newer versions of gcc FIFE is failing to configure properly without boost_system in the lib list. [t:540]
vtchill@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 429
diff changeset
25 # OpenBSD specific pthreads option
be625cdff350 This commit is to back port a fix in 0.3.3 dev branch to the current trunk. Adding boost_system as a required dependency as boost_filesystem is dependent on it. On linux distros with newer versions of gcc FIFE is failing to configure properly without boost_system in the lib list. [t:540]
vtchill@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 429
diff changeset
26 env.Append(LINKFLAGS = ['-pthread'])
be625cdff350 This commit is to back port a fix in 0.3.3 dev branch to the current trunk. Adding boost_system as a required dependency as boost_filesystem is dependent on it. On linux distros with newer versions of gcc FIFE is failing to configure properly without boost_system in the lib list. [t:540]
vtchill@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 429
diff changeset
27
be625cdff350 This commit is to back port a fix in 0.3.3 dev branch to the current trunk. Adding boost_system as a required dependency as boost_filesystem is dependent on it. On linux distros with newer versions of gcc FIFE is failing to configure properly without boost_system in the lib list. [t:540]
vtchill@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 429
diff changeset
28 return env
be625cdff350 This commit is to back port a fix in 0.3.3 dev branch to the current trunk. Adding boost_system as a required dependency as boost_filesystem is dependent on it. On linux distros with newer versions of gcc FIFE is failing to configure properly without boost_system in the lib list. [t:540]
vtchill@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 429
diff changeset
29
be625cdff350 This commit is to back port a fix in 0.3.3 dev branch to the current trunk. Adding boost_system as a required dependency as boost_filesystem is dependent on it. On linux distros with newer versions of gcc FIFE is failing to configure properly without boost_system in the lib list. [t:540]
vtchill@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 429
diff changeset
30 def addExtras(env, opengl):
be625cdff350 This commit is to back port a fix in 0.3.3 dev branch to the current trunk. Adding boost_system as a required dependency as boost_filesystem is dependent on it. On linux distros with newer versions of gcc FIFE is failing to configure properly without boost_system in the lib list. [t:540]
vtchill@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 429
diff changeset
31 if opengl:
be625cdff350 This commit is to back port a fix in 0.3.3 dev branch to the current trunk. Adding boost_system as a required dependency as boost_filesystem is dependent on it. On linux distros with newer versions of gcc FIFE is failing to configure properly without boost_system in the lib list. [t:540]
vtchill@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 429
diff changeset
32 env.Append(LIBS = ['stdc++', 'GL', 'GLU'])
be625cdff350 This commit is to back port a fix in 0.3.3 dev branch to the current trunk. Adding boost_system as a required dependency as boost_filesystem is dependent on it. On linux distros with newer versions of gcc FIFE is failing to configure properly without boost_system in the lib list. [t:540]
vtchill@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 429
diff changeset
33 env.Append(LIBPATH = os.path.join('/', 'usr', 'X11R6', 'lib'))
be625cdff350 This commit is to back port a fix in 0.3.3 dev branch to the current trunk. Adding boost_system as a required dependency as boost_filesystem is dependent on it. On linux distros with newer versions of gcc FIFE is failing to configure properly without boost_system in the lib list. [t:540]
vtchill@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 429
diff changeset
34
be625cdff350 This commit is to back port a fix in 0.3.3 dev branch to the current trunk. Adding boost_system as a required dependency as boost_filesystem is dependent on it. On linux distros with newer versions of gcc FIFE is failing to configure properly without boost_system in the lib list. [t:540]
vtchill@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 429
diff changeset
35 return env
be625cdff350 This commit is to back port a fix in 0.3.3 dev branch to the current trunk. Adding boost_system as a required dependency as boost_filesystem is dependent on it. On linux distros with newer versions of gcc FIFE is failing to configure properly without boost_system in the lib list. [t:540]
vtchill@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 429
diff changeset
36
be625cdff350 This commit is to back port a fix in 0.3.3 dev branch to the current trunk. Adding boost_system as a required dependency as boost_filesystem is dependent on it. On linux distros with newer versions of gcc FIFE is failing to configure properly without boost_system in the lib list. [t:540]
vtchill@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 429
diff changeset
37 def getRequiredHeaders(opengl):
be625cdff350 This commit is to back port a fix in 0.3.3 dev branch to the current trunk. Adding boost_system as a required dependency as boost_filesystem is dependent on it. On linux distros with newer versions of gcc FIFE is failing to configure properly without boost_system in the lib list. [t:540]
vtchill@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 429
diff changeset
38 return None
be625cdff350 This commit is to back port a fix in 0.3.3 dev branch to the current trunk. Adding boost_system as a required dependency as boost_filesystem is dependent on it. On linux distros with newer versions of gcc FIFE is failing to configure properly without boost_system in the lib list. [t:540]
vtchill@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 429
diff changeset
39
be625cdff350 This commit is to back port a fix in 0.3.3 dev branch to the current trunk. Adding boost_system as a required dependency as boost_filesystem is dependent on it. On linux distros with newer versions of gcc FIFE is failing to configure properly without boost_system in the lib list. [t:540]
vtchill@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 429
diff changeset
40 def getRequiredLibs(opengl):
be625cdff350 This commit is to back port a fix in 0.3.3 dev branch to the current trunk. Adding boost_system as a required dependency as boost_filesystem is dependent on it. On linux distros with newer versions of gcc FIFE is failing to configure properly without boost_system in the lib list. [t:540]
vtchill@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 429
diff changeset
41 libs = [
be625cdff350 This commit is to back port a fix in 0.3.3 dev branch to the current trunk. Adding boost_system as a required dependency as boost_filesystem is dependent on it. On linux distros with newer versions of gcc FIFE is failing to configure properly without boost_system in the lib list. [t:540]
vtchill@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 429
diff changeset
42 ('vorbisfile', 'vorbisfile.h'),
be625cdff350 This commit is to back port a fix in 0.3.3 dev branch to the current trunk. Adding boost_system as a required dependency as boost_filesystem is dependent on it. On linux distros with newer versions of gcc FIFE is failing to configure properly without boost_system in the lib list. [t:540]
vtchill@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 429
diff changeset
43 ('openal', 'AL/al.h'),
be625cdff350 This commit is to back port a fix in 0.3.3 dev branch to the current trunk. Adding boost_system as a required dependency as boost_filesystem is dependent on it. On linux distros with newer versions of gcc FIFE is failing to configure properly without boost_system in the lib list. [t:540]
vtchill@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 429
diff changeset
44 ('SDL', 'SDL.h'),
be625cdff350 This commit is to back port a fix in 0.3.3 dev branch to the current trunk. Adding boost_system as a required dependency as boost_filesystem is dependent on it. On linux distros with newer versions of gcc FIFE is failing to configure properly without boost_system in the lib list. [t:540]
vtchill@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 429
diff changeset
45 ('SDL_ttf', 'SDL_ttf.h'),
be625cdff350 This commit is to back port a fix in 0.3.3 dev branch to the current trunk. Adding boost_system as a required dependency as boost_filesystem is dependent on it. On linux distros with newer versions of gcc FIFE is failing to configure properly without boost_system in the lib list. [t:540]
vtchill@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 429
diff changeset
46 ('SDL_image', 'SDL_image.h'),
be625cdff350 This commit is to back port a fix in 0.3.3 dev branch to the current trunk. Adding boost_system as a required dependency as boost_filesystem is dependent on it. On linux distros with newer versions of gcc FIFE is failing to configure properly without boost_system in the lib list. [t:540]
vtchill@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 429
diff changeset
47 ('guichan', 'guichan.hpp'),
be625cdff350 This commit is to back port a fix in 0.3.3 dev branch to the current trunk. Adding boost_system as a required dependency as boost_filesystem is dependent on it. On linux distros with newer versions of gcc FIFE is failing to configure properly without boost_system in the lib list. [t:540]
vtchill@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 429
diff changeset
48 ('guichan_sdl', ''),
be625cdff350 This commit is to back port a fix in 0.3.3 dev branch to the current trunk. Adding boost_system as a required dependency as boost_filesystem is dependent on it. On linux distros with newer versions of gcc FIFE is failing to configure properly without boost_system in the lib list. [t:540]
vtchill@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 429
diff changeset
49 ('boost_system', ''),
be625cdff350 This commit is to back port a fix in 0.3.3 dev branch to the current trunk. Adding boost_system as a required dependency as boost_filesystem is dependent on it. On linux distros with newer versions of gcc FIFE is failing to configure properly without boost_system in the lib list. [t:540]
vtchill@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 429
diff changeset
50 (('boost_filesystem', 'boost_filesystem-gcc', 'boost_filesystem-gcc41', 'boost_filesystem-mt'), 'boost/filesystem.hpp'),
be625cdff350 This commit is to back port a fix in 0.3.3 dev branch to the current trunk. Adding boost_system as a required dependency as boost_filesystem is dependent on it. On linux distros with newer versions of gcc FIFE is failing to configure properly without boost_system in the lib list. [t:540]
vtchill@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 429
diff changeset
51 (('boost_regex', 'boost_regex-gcc', 'boost_regex-gcc41', 'boost_regex-mt'), 'boost/regex.hpp'),
be625cdff350 This commit is to back port a fix in 0.3.3 dev branch to the current trunk. Adding boost_system as a required dependency as boost_filesystem is dependent on it. On linux distros with newer versions of gcc FIFE is failing to configure properly without boost_system in the lib list. [t:540]
vtchill@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 429
diff changeset
52 ('png', 'png.h'),
be625cdff350 This commit is to back port a fix in 0.3.3 dev branch to the current trunk. Adding boost_system as a required dependency as boost_filesystem is dependent on it. On linux distros with newer versions of gcc FIFE is failing to configure properly without boost_system in the lib list. [t:540]
vtchill@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 429
diff changeset
53 ('Xcursor', 'X11/Xcursor/Xcursor.h')]
be625cdff350 This commit is to back port a fix in 0.3.3 dev branch to the current trunk. Adding boost_system as a required dependency as boost_filesystem is dependent on it. On linux distros with newer versions of gcc FIFE is failing to configure properly without boost_system in the lib list. [t:540]
vtchill@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 429
diff changeset
54
be625cdff350 This commit is to back port a fix in 0.3.3 dev branch to the current trunk. Adding boost_system as a required dependency as boost_filesystem is dependent on it. On linux distros with newer versions of gcc FIFE is failing to configure properly without boost_system in the lib list. [t:540]
vtchill@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 429
diff changeset
55 if (opengl):
be625cdff350 This commit is to back port a fix in 0.3.3 dev branch to the current trunk. Adding boost_system as a required dependency as boost_filesystem is dependent on it. On linux distros with newer versions of gcc FIFE is failing to configure properly without boost_system in the lib list. [t:540]
vtchill@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 429
diff changeset
56 libs.append(('guichan_opengl', ''))
be625cdff350 This commit is to back port a fix in 0.3.3 dev branch to the current trunk. Adding boost_system as a required dependency as boost_filesystem is dependent on it. On linux distros with newer versions of gcc FIFE is failing to configure properly without boost_system in the lib list. [t:540]
vtchill@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 429
diff changeset
57
be625cdff350 This commit is to back port a fix in 0.3.3 dev branch to the current trunk. Adding boost_system as a required dependency as boost_filesystem is dependent on it. On linux distros with newer versions of gcc FIFE is failing to configure properly without boost_system in the lib list. [t:540]
vtchill@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 429
diff changeset
58 return libs
be625cdff350 This commit is to back port a fix in 0.3.3 dev branch to the current trunk. Adding boost_system as a required dependency as boost_filesystem is dependent on it. On linux distros with newer versions of gcc FIFE is failing to configure properly without boost_system in the lib list. [t:540]
vtchill@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 429
diff changeset
59
be625cdff350 This commit is to back port a fix in 0.3.3 dev branch to the current trunk. Adding boost_system as a required dependency as boost_filesystem is dependent on it. On linux distros with newer versions of gcc FIFE is failing to configure properly without boost_system in the lib list. [t:540]
vtchill@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 429
diff changeset
60 def getOptionalLibs(opengl):
be625cdff350 This commit is to back port a fix in 0.3.3 dev branch to the current trunk. Adding boost_system as a required dependency as boost_filesystem is dependent on it. On linux distros with newer versions of gcc FIFE is failing to configure properly without boost_system in the lib list. [t:540]
vtchill@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 429
diff changeset
61 return None
be625cdff350 This commit is to back port a fix in 0.3.3 dev branch to the current trunk. Adding boost_system as a required dependency as boost_filesystem is dependent on it. On linux distros with newer versions of gcc FIFE is failing to configure properly without boost_system in the lib list. [t:540]
vtchill@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 429
diff changeset
62
be625cdff350 This commit is to back port a fix in 0.3.3 dev branch to the current trunk. Adding boost_system as a required dependency as boost_filesystem is dependent on it. On linux distros with newer versions of gcc FIFE is failing to configure properly without boost_system in the lib list. [t:540]
vtchill@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 429
diff changeset
63 # vim: ft=python:
be625cdff350 This commit is to back port a fix in 0.3.3 dev branch to the current trunk. Adding boost_system as a required dependency as boost_filesystem is dependent on it. On linux distros with newer versions of gcc FIFE is failing to configure properly without boost_system in the lib list. [t:540]
vtchill@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 429
diff changeset
64