pgsql2sqlite:also link -ldl on linux
This commit is contained in:
parent
9e7c842a26
commit
359372d3b2
1 changed files with 3 additions and 0 deletions
|
@ -54,6 +54,9 @@ else:
|
|||
# Link Library to Dependencies
|
||||
libraries = copy(program_env['LIBS'])
|
||||
|
||||
if env['RUNTIME_LINK'] == 'static' and env['PLATFORM'] == 'Linux':
|
||||
libraries.append('dl')
|
||||
|
||||
if env['HAS_CAIRO']:
|
||||
program_env.PrependUnique(CPPPATH=env['CAIRO_CPPPATHS'])
|
||||
program_env.Append(CPPDEFINES = '-DHAVE_CAIRO')
|
||||
|
|
Loading…
Reference in a new issue