Changeset 37:9571680014bd

Show
Ignore:
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
  • SConstruct

    r32 r37  
    77        BoolOption('video', "Enable Video Support", False), 
    88        BoolOption('ssl', "Enable SSL support",  True), 
    9         BoolOption('httptunnel', "Enable HTTP tunneling support", True), 
     9        BoolOption('httptunnel', "Enable HTTP tunneling support", False), 
    1010        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), 
    1212        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), 
    1414        BoolOption('vcproj',  "Build .vcproj files for use with debugger", False), 
    1515        BoolOption('libsamplerate', "Enable usage of libsamplerate", False), 
     
    2424        BoolOption('amr', "Enable usage of AMR codec", False), 
    2525        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), 
    2727        BoolOption('qos_debug', "Enable QoS debugging functionality", False), 
    2828        BoolOption('enable_alsa', "Disable ALSA driver", False), 
     
    4747 
    4848 
     49print "VERONA Building in ", BJ.buildpath 
    4950 
    5051env.SConscript('SConscript', build_dir = BJ.buildpath,  duplicate = 0) 
  • SConstruct

    r34 r37  
    3636 
    3737env = BJ.NewEnv() 
    38 print "SConstruct Compiling with ", env['CC'] 
     38if env["shared_phapi"]: 
     39   BJ.sharedtarget = True 
    3940 
    4041#Duplicate = 0 is very important: it tells SCons 
     
    4647 
    4748 
    48 print "SConstruct Building in ", BJ.buildpath 
     49print "VERONA Building in ", BJ.buildpath 
    4950 
    5051env.SConscript('SConscript', build_dir = BJ.buildpath,  duplicate = 0)