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