Browse Source

Upgrade waf.

tags/v1.3.1000
Jonathan Moore Liles 11 years ago
parent
commit
9884cca97d
3 changed files with 5 additions and 1 deletions
  1. +4
    -0
      fluid/wscript
  2. BIN
      waf
  3. +1
    -1
      wscript

+ 4
- 0
fluid/wscript View File

@@ -33,5 +33,9 @@ def build(bld):
target='ntk-fluid',
includes = [ '.', '../' ],
use = [ 'ntk_images_shared', 'ntk_shared' ],
# FIXME: why is this now neccessary with new waf version?
uselib = [
'LIBJPEG', 'LIBPNG', 'LIBZ', 'DL', 'M', 'PTHREAD' ,
'X11', 'FONTCONFIG', 'XFT', 'CAIRO', 'DL', 'M', 'PTHREAD' ],
install_path = '${BINDIR}' )

BIN
waf View File


+ 1
- 1
wscript View File

@@ -38,7 +38,7 @@ def makelib(bld,*k,**kw):
kw['cflags'] = [ '-fPIC' ]
kw['cxxflags'] = [ '-fPIC' ]
kw['defines'] = [ 'FL_LIBRARY=1', 'FL_INTERNALS=1' ]
kw['vnum'] = API_VERSION
kw['vnum'] = PACKAGE_VERSION
kw['install_path'] = '${LIBDIR}'
kw['features' ] = 'c cxx cxxstlib'
kw['name'] = kw['target'] + '_static'


Loading…
Cancel
Save