Changeset 37:9571680014bd
- Timestamp:
- 08/24/06 13:34:25
(2 years ago)
- Author:
- halina@ada
- Parents:
36:60ef945db5bf 33:a5ded39b49e5
- Message:
tunnel false
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r32 |
r37 |
|
| 7 | 7 | BoolOption('video', "Enable Video Support", False), |
|---|
| 8 | 8 | BoolOption('ssl', "Enable SSL support", True), |
|---|
| 9 | | BoolOption('httptunnel', "Enable HTTP tunneling support", True), |
|---|
| | 9 | BoolOption('httptunnel', "Enable HTTP tunneling support", False), |
|---|
| 10 | 10 | BoolOption('netlib', "Enable netlib module support", False), |
|---|
| 11 | | BoolOption('phapi_embed', 'Compile PHPAPI for embedded environment', False), |
|---|
| | 11 | BoolOption('phapi_embed', 'Compile PHPAPI for embedded environment', True), |
|---|
| 12 | 12 | BoolOption('phapi_video_hack', "enable VIDEO HACK", False), |
|---|
| 13 | | BoolOption('shared_phapi', "Compile PHAPI as shared library", True), |
|---|
| | 13 | BoolOption('shared_phapi', "Compile PHAPI as shared library", False), |
|---|
| 14 | 14 | BoolOption('vcproj', "Build .vcproj files for use with debugger", False), |
|---|
| 15 | 15 | BoolOption('libsamplerate', "Enable usage of libsamplerate", False), |
|---|
| … | … | |
| 24 | 24 | BoolOption('amr', "Enable usage of AMR codec", False), |
|---|
| 25 | 25 | BoolOption('debug', "Enable debug build", True), |
|---|
| 26 | | BoolOption('enable_phapi_embed', "Enable EMBEDDED version of PHAPI", False), |
|---|
| | 26 | BoolOption('enable_phapi_embed', "Enable EMBEDDED version of PHAPI", True), |
|---|
| 27 | 27 | BoolOption('qos_debug', "Enable QoS debugging functionality", False), |
|---|
| 28 | 28 | BoolOption('enable_alsa', "Disable ALSA driver", False), |
|---|
| … | … | |
| 47 | 47 | |
|---|
| 48 | 48 | |
|---|
| | 49 | print "VERONA Building in ", BJ.buildpath |
|---|
| 49 | 50 | |
|---|
| 50 | 51 | env.SConscript('SConscript', build_dir = BJ.buildpath, duplicate = 0) |
|---|
| r34 |
r37 |
|
| 36 | 36 | |
|---|
| 37 | 37 | env = BJ.NewEnv() |
|---|
| 38 | | print "SConstruct Compiling with ", env['CC'] |
|---|
| | 38 | if env["shared_phapi"]: |
|---|
| | 39 | BJ.sharedtarget = True |
|---|
| 39 | 40 | |
|---|
| 40 | 41 | #Duplicate = 0 is very important: it tells SCons |
|---|
| … | … | |
| 46 | 47 | |
|---|
| 47 | 48 | |
|---|
| 48 | | print "SConstruct Building in ", BJ.buildpath |
|---|
| | 49 | print "VERONA Building in ", BJ.buildpath |
|---|
| 49 | 50 | |
|---|
| 50 | 51 | env.SConscript('SConscript', build_dir = BJ.buildpath, duplicate = 0) |
|---|