Changeset 724 for trunk/src/SConscript

Show
Ignore:
Timestamp:
07/29/08 14:35:27 (5 months ago)
Author:
tom
Message:

Add an INTERNAL_LIBAGG build option that can be used to make mapnik
build against the system libagg instead of mapnik's copy.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/src/SConscript

    r704 r724  
    3131install_prefix = env['DESTDIR'] + '/' + prefix 
    3232 
    33 libraries = ['agg'] + env['LIBS'] 
     33libraries = env['LIBS'] 
     34 
     35if env['INTERNAL_LIBAGG']: 
     36    libraries.insert(0, 'agg') 
    3437 
    3538if env['PLATFORM'] == 'Darwin':