mirror of
https://github.com/UberGames/GtkRadiant.git
synced 2024-11-25 05:11:43 +00:00
commit
aa185ce027
1 changed files with 19 additions and 17 deletions
|
@ -214,7 +214,7 @@ class Config:
|
||||||
print 'xml2-config failed'
|
print 'xml2-config failed'
|
||||||
assert( False )
|
assert( False )
|
||||||
xml2libs = commands.getoutput( 'xml2-config --libs' )
|
xml2libs = commands.getoutput( 'xml2-config --libs' )
|
||||||
env.Append( LINKFLAGS = xml2libs.split( ' ' ) )
|
env.ParseConfig( 'xml2-config --libs' )
|
||||||
baseflags = [ '-pipe', '-Wall', '-fmessage-length=0', '-fvisibility=hidden', xml2.split( ' ' ) ]
|
baseflags = [ '-pipe', '-Wall', '-fmessage-length=0', '-fvisibility=hidden', xml2.split( ' ' ) ]
|
||||||
|
|
||||||
if ( useGtk ):
|
if ( useGtk ):
|
||||||
|
@ -402,6 +402,8 @@ class Config:
|
||||||
# print( module_ldd )
|
# print( module_ldd )
|
||||||
|
|
||||||
def find_library( output, libname ):
|
def find_library( output, libname ):
|
||||||
|
print output
|
||||||
|
print libname
|
||||||
match = filter( lambda l : l.find( libname ) != -1, output.split( '\n' ) )[0]
|
match = filter( lambda l : l.find( libname ) != -1, output.split( '\n' ) )[0]
|
||||||
return re.split( '.*=> (.*) .*', match )[1]
|
return re.split( '.*=> (.*) .*', match )[1]
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue