Skip to content
Snippets Groups Projects
linux2-config.py 5.99 KiB
Newer Older
  • Learn to ignore specific revisions
  • Nathan Letwory's avatar
    Nathan Letwory committed
    LCGDIR = '../lib/linux2'
    
    LIBDIR = "${LCGDIR}"
    
    
    WITH_BF_VERSE = False
    
    BF_VERSE_INCLUDE = "#extern/verse/dist"
    
    Nathan Letwory's avatar
    Nathan Letwory committed
    BF_PYTHON = '/usr'
    
    BF_PYTHON_VERSION = '2.5'
    
    WITH_BF_STATICPYTHON = False
    
    BF_PYTHON_INC = '${BF_PYTHON}/include/python${BF_PYTHON_VERSION}'
    BF_PYTHON_BINARY = '${BF_PYTHON}/bin/python${BF_PYTHON_VERSION}'
    
    BF_PYTHON_LIB = 'python${BF_PYTHON_VERSION}' #BF_PYTHON+'/lib/python'+BF_PYTHON_VERSION+'/config/libpython'+BF_PYTHON_VERSION+'.a'
    
    Ken Hughes's avatar
     
    Ken Hughes committed
    BF_PYTHON_LINKFLAGS = ['-Xlinker', '-export-dynamic']
    
    BF_PYTHON_LIB_STATIC = '${BF_PYTHON}/lib/libpython${BF_PYTHON_VERSION}.a'
    
    Nathan Letwory's avatar
    Nathan Letwory committed
    
    
    WITH_BF_OPENAL = True
    WITH_BF_STATICOPENAL = False
    
    Nathan Letwory's avatar
    Nathan Letwory committed
    BF_OPENAL = '/usr'
    
    BF_OPENAL_INC = '${BF_OPENAL}/include'
    
    Nathan Letwory's avatar
    Nathan Letwory committed
    BF_OPENAL_LIB = 'openal'
    
    BF_OPENAL_LIB_STATIC = '${BF_OPENAL}/lib/libopenal.a'
    
    
    # some distros have a separate libalut
    # if you get linker complaints, you need to uncomment the line below
    # BF_OPENAL_LIB = 'openal alut'  
    
    # BF_OPENAL_LIB_STATIC = '${BF_OPENAL}/lib/libopenal.a ${BF_OPENAL}/lib/libalut.a'
    
    Nathan Letwory's avatar
    Nathan Letwory committed
    
    
    WITH_BF_STATICCXX = False
    
    BF_CXX_LIB_STATIC = '${BF_CXX}/lib/libstdc++.a'
    
    
    WITH_BF_SDL = True
    
    Nathan Letwory's avatar
    Nathan Letwory committed
    BF_SDL = '/usr' #$(shell sdl-config --prefix)
    
    BF_SDL_INC = '${BF_SDL}/include/SDL' #$(shell $(BF_SDL)/bin/sdl-config --cflags)
    
    Nathan Letwory's avatar
    Nathan Letwory committed
    BF_SDL_LIB = 'SDL' #BF_SDL #$(shell $(BF_SDL)/bin/sdl-config --libs) -lSDL_mixer
    
    
    WITH_BF_FMOD = False
    
    BF_FMOD = LIBDIR + '/fmod'
    
    Nathan Letwory's avatar
    Nathan Letwory committed
    
    
    WITH_BF_OPENEXR = True
    WITH_BF_STATICOPENEXR = False
    
    Nathan Letwory's avatar
    Nathan Letwory committed
    BF_OPENEXR = '/usr'
    
    # when compiling with your own openexr lib you might need to set...
    # BF_OPENEXR_INC = '${BF_OPENEXR}/include/OpenEXR ${BF_OPENEXR}/include'
    
    
    BF_OPENEXR_INC = '${BF_OPENEXR}/include/OpenEXR'
    
    BF_OPENEXR_LIB = 'Half IlmImf Iex Imath '
    
    BF_OPENEXR_LIB_STATIC = '${BF_OPENEXR}/lib/libHalf.a ${BF_OPENEXR}/lib/libIlmImf.a ${BF_OPENEXR}/lib/libIex.a ${BF_OPENEXR}/lib/libImath.a ${BF_OPENEXR}/lib/libIlmThread.a'
    
    # BF_OPENEXR_LIBPATH = '${BF_OPENEXR}/lib'
    
    Nathan Letwory's avatar
    Nathan Letwory committed
    
    
    WITH_BF_DDS = True
    
    WITH_BF_JPEG = True
    
    Nathan Letwory's avatar
    Nathan Letwory committed
    BF_JPEG = '/usr'
    
    BF_JPEG_INC = '${BF_JPEG}/include'
    
    Nathan Letwory's avatar
    Nathan Letwory committed
    BF_JPEG_LIB = 'jpeg'
    
    
    WITH_BF_PNG = True
    
    Nathan Letwory's avatar
    Nathan Letwory committed
    BF_PNG = '/usr'
    
    BF_PNG_INC = '${BF_PNG}/include'
    
    Nathan Letwory's avatar
    Nathan Letwory committed
    BF_PNG_LIB = 'png'
    
    BF_TIFF = '/usr'
    
    BF_TIFF_INC = '${BF_TIFF}/include'
    
    Nathan Letwory's avatar
    Nathan Letwory committed
    
    
    WITH_BF_ZLIB = True
    
    Nathan Letwory's avatar
    Nathan Letwory committed
    BF_ZLIB = '/usr'
    
    BF_ZLIB_INC = '${BF_ZLIB}/include'
    
    Nathan Letwory's avatar
    Nathan Letwory committed
    BF_ZLIB_LIB = 'z'
    
    
    WITH_BF_INTERNATIONAL = True
    
    Nathan Letwory's avatar
    Nathan Letwory committed
    BF_GETTEXT = '/usr'
    
    BF_GETTEXT_INC = '${BF_GETTEXT}/include'
    
    Nathan Letwory's avatar
    Nathan Letwory committed
    BF_GETTEXT_LIB = 'gettextlib'
    
    BF_GETTEXT_LIBPATH = '${BF_GETTEXT}/lib'
    
    Nathan Letwory's avatar
    Nathan Letwory committed
    
    
    WITH_BF_FTGL = True
    
    Nathan Letwory's avatar
    Nathan Letwory committed
    BF_FTGL = '#extern/bFTGL'
    
    BF_FTGL_INC = '${BF_FTGL}/include'
    
    Nathan Letwory's avatar
    Nathan Letwory committed
    BF_FTGL_LIB = 'extern_ftgl'
    
    
    WITH_BF_GAMEENGINE=False
    
    Nathan Letwory's avatar
    Nathan Letwory committed
    
    
    WITH_BF_ODE = False
    
    BF_ODE = LIBDIR + '/ode'
    
    Nathan Letwory's avatar
    Nathan Letwory committed
    BF_ODE_INC = BF_ODE + '/include'
    BF_ODE_LIB = BF_ODE + '/lib/libode.a'
    
    
    WITH_BF_BULLET = True
    
    Nathan Letwory's avatar
    Nathan Letwory committed
    BF_BULLET = '#extern/bullet2/src'
    BF_BULLET_INC = '${BF_BULLET}'
    
    Nathan Letwory's avatar
    Nathan Letwory committed
    BF_BULLET_LIB = 'extern_bullet'
    
    BF_SOLID = '#extern/solid'
    
    BF_SOLID_INC = '${BF_SOLID}'
    
    Nathan Letwory's avatar
    Nathan Letwory committed
    BF_SOLID_LIB = 'extern_solid'
    
    
    WITH_BF_YAFRAY = True
    
    #WITH_BF_NSPR = True
    
    #BF_NSPR = $(LIBDIR)/nspr
    
    Nathan Letwory's avatar
    Nathan Letwory committed
    #BF_NSPR_INC = -I$(BF_NSPR)/include -I$(BF_NSPR)/include/nspr
    #BF_NSPR_LIB = 
    
    # Uncomment the following line to use Mozilla inplace of netscape
    #CPPFLAGS += -DMOZ_NOT_NET
    # Location of MOZILLA/Netscape header files...
    
    #BF_MOZILLA = $(LIBDIR)/mozilla
    
    Nathan Letwory's avatar
    Nathan Letwory committed
    #BF_MOZILLA_INC = -I$(BF_MOZILLA)/include/mozilla/nspr -I$(BF_MOZILLA)/include/mozilla -I$(BF_MOZILLA)/include/mozilla/xpcom -I$(BF_MOZILLA)/include/mozilla/idl
    #BF_MOZILLA_LIB =
    # Will fall back to look in BF_MOZILLA_INC/nspr and BF_MOZILLA_LIB
    # if this is not set.
    #
    # Be paranoid regarding library creation (do not update archives)
    
    #BF_PARANOID = True
    
    Nathan Letwory's avatar
    Nathan Letwory committed
    
    # enable freetype2 support for text objects
    BF_FREETYPE = '/usr'
    
    BF_FREETYPE_INC = '${BF_FREETYPE}/include ${BF_FREETYPE}/include/freetype2'
    
    Nathan Letwory's avatar
    Nathan Letwory committed
    BF_FREETYPE_LIB = 'freetype'
    
    
    WITH_BF_QUICKTIME = False # -DWITH_QUICKTIME
    
    Nathan Letwory's avatar
    Nathan Letwory committed
    BF_QUICKTIME = '/usr/local'
    
    BF_QUICKTIME_INC = '${BF_QUICKTIME}/include'
    
    
    WITH_BF_ICONV = False
    
    Kent Mein's avatar
     
    Kent Mein committed
    BF_ICONV = LIBDIR + "/iconv"
    BF_ICONV_INC = '${BF_ICONV}/include'
    BF_ICONV_LIB = 'iconv'
    BF_ICONV_LIBPATH = '${BF_ICONV}/lib'
    
    
    WITH_BF_BINRELOC = True
    
    # enable ffmpeg  support
    
    WITH_BF_FFMPEG = True  # -DWITH_FFMPEG
    
    Peter Schlaile's avatar
    Peter Schlaile committed
    BF_FFMPEG = '#extern/ffmpeg'
    BF_FFMPEG_LIB = ''
    
    Peter Schlaile's avatar
    Peter Schlaile committed
    # Uncomment the following two lines to use system's ffmpeg
    # BF_FFMPEG = '/usr'
    
    Peter Schlaile's avatar
    Peter Schlaile committed
    # BF_FFMPEG_LIB = 'avformat avcodec swscale avutil'
    BF_FFMPEG_INC = '${BF_FFMPEG}/include'
    BF_FFMPEG_LIBPATH='${BF_FFMPEG}/lib'
    
    Nathan Letwory's avatar
    Nathan Letwory committed
    
    
    Peter Schlaile's avatar
    Peter Schlaile committed
    # enable ogg, vorbis and theora in ffmpeg
    
    WITH_BF_OGG = False  # -DWITH_OGG 
    
    Peter Schlaile's avatar
    Peter Schlaile committed
    BF_OGG = '/usr'
    BF_OGG_INC = '${BF_OGG}/include'
    BF_OGG_LIB = 'ogg vorbis theoraenc theoradec'
    
    
    WITH_BF_OPENJPEG = True 
    
    Peter Schlaile's avatar
    Peter Schlaile committed
    BF_OPENJPEG = '#extern/libopenjpeg'
    BF_OPENJPEG_LIB = ''
    BF_OPENJPEG_INC = '${BF_OPENJPEG}/include'
    BF_OPENJPEG_LIBPATH='${BF_OPENJPEG}/lib'
    
    
    WITH_BF_REDCODE = False  
    
    Peter Schlaile's avatar
    Peter Schlaile committed
    BF_REDCODE = '#extern/libredcode'
    BF_REDCODE_LIB = ''
    BF_REDCODE_INC = '${BF_REDCODE}/include'
    BF_REDCODE_LIBPATH='${BF_REDCODE}/lib'
    
    
    Nathan Letwory's avatar
    Nathan Letwory committed
    # Mesa Libs should go here if your using them as well....
    
    WITH_BF_STATICOPENGL = False
    
    BF_OPENGL = '/usr'
    
    BF_OPENGL_INC = '${BF_OPENGL}/include'
    
    Nathan Letwory's avatar
    Nathan Letwory committed
    BF_OPENGL_LIBPATH = '/usr/X11R6/lib'
    
    BF_OPENGL_LIB_STATIC = '${BF_OPENGL_LIBPATH}/libGL.a ${BF_OPENGL_LIBPATH}/libGLU.a ${BF_OPENGL_LIBPATH}/libXxf86vm.a ${BF_OPENGL_LIBPATH}/libX11.a ${BF_OPENGL_LIBPATH}/libXi.a ${BF_OPENGL_LIBPATH}/libXext.a ${BF_OPENGL_LIBPATH}/libXxf86vm.a'
    
    Nathan Letwory's avatar
    Nathan Letwory committed
    
    
    Nathan Letwory's avatar
    Nathan Letwory committed
    ##
    
    Robert Holcomb's avatar
     
    Robert Holcomb committed
    CC = 'gcc'
    CXX = 'g++'
    
    Nathan Letwory's avatar
    Nathan Letwory committed
    ##ifeq ($CPU),alpha)
    ##   CFLAGS += -pipe -fPIC -funsigned-char -fno-strict-aliasing -mieee
    
    
    Nathan Letwory's avatar
    Nathan Letwory committed
    CCFLAGS = ['-pipe','-fPIC','-funsigned-char','-fno-strict-aliasing']
    
    Nathan Letwory's avatar
    Nathan Letwory committed
    
    CPPFLAGS = ['-DXP_UNIX']
    
    Nathan Letwory's avatar
    Nathan Letwory committed
    CXXFLAGS = ['-pipe','-fPIC','-funsigned-char','-fno-strict-aliasing']
    
    Nathan Letwory's avatar
    Nathan Letwory committed
    REL_CFLAGS = ['-O2']
    REL_CCFLAGS = ['-O2']
    
    ##BF_DEPEND = True
    
    Nathan Letwory's avatar
    Nathan Letwory committed
    ##
    ##AR = ar
    ##ARFLAGS = ruv
    ##ARFLAGSQUIET = ru
    ##
    
    C_WARN = '-Wall -Wno-char-subscripts -Wdeclaration-after-statement'
    
    Nathan Letwory's avatar
    Nathan Letwory committed
    
    
    Nathan Letwory's avatar
    Nathan Letwory committed
    CC_WARN = '-Wall'
    
    Nathan Letwory's avatar
    Nathan Letwory committed
    
    ##FIX_STUBS_WARNINGS = -Wno-unused
    
    LLIBS = 'util c m dl pthread stdc++'
    ##LOPTS = --dynamic
    ##DYNLDFLAGS = -shared $(LDFLAGS)
    
    
    BF_PROFILE_FLAGS = ['-pg','-g']
    
    BF_PROFILE = False
    
    Nathan Letwory's avatar
    Nathan Letwory committed
    
    
    BF_DEBUG = False
    
    Nathan Letwory's avatar
    Nathan Letwory committed
    
    BF_BUILDDIR = '../build/linux2'
    BF_INSTALLDIR='../install/linux2'
    
    Nathan Letwory's avatar
    Nathan Letwory committed
    BF_DOCDIR='../install/doc'
    
    Robert Holcomb's avatar
     
    Robert Holcomb committed
    PLATFORM_LINKFLAGS = ['-pthread']
    
    Robert Holcomb's avatar
     
    Robert Holcomb committed