Changeset 93 for trunk/SConstruct
- Timestamp:
- 11/24/05 10:51:29 (3 years ago)
- Files:
-
- 1 modified
-
trunk/SConstruct (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/SConstruct
r81 r93 29 29 opts.Add(PathOption('PYTHON_ROOT','python root directory','/opt/python')) 30 30 opts.Add('PYTHON_VERSION','python version','2.4') 31 opts.Add(ListOption('DATASOURCES','list of available datasources',' postgis',['postgis','shape']))31 opts.Add(ListOption('DATASOURCES','list of available datasources','shape',['postgis','shape','raster'])) 32 32 opts.Add('POSTGRESQL_ROOT','path to postgresql prefix','/usr/local') 33 33 … … 37 37 build_prefix = build_dir+'/'+str(platform) 38 38 39 cxx = 'g++'39 #cxx = 'g++' 40 40 41 env = Environment( CXX=cxx,ENV=os.environ, options=opts)41 env = Environment(ENV=os.environ, options=opts) 42 42 43 43 cxx_debug='-Wall -ftemplate-depth-100 -O0 -fno-inline -g -pthread -DDEBUG'
