cloudtrends / doubango

Automatically exported from code.google.com/p/doubango
0 stars 0 forks source link

Default enable Google WebRTC #63

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
I am porting WebRTC to doubango 1.0
In the makefile of tingDAV, the comment says that the WebRTC is enabled by 
default. But the code is testing if HAVE_WEBRTC is set to yes by user, which i 
think will disable WebRTC by default.

Please provide any additional information below.
version 652

Original issue reported on code.google.com by xin...@gmail.com on 31 Aug 2011 at 1:31

GoogleCodeExporter commented 8 years ago
/tinyDAV/droid-makefile

# Google WebRTC (Default: enabled)
ifeq ($(HAVE_WEBRTC), yes)
    WEBRTC_CFLAGS := -DHAVE_WEBRTC=1
    WEBRTC_LDFLAGS := -lwebrtc_aecm_$(MARCH) -lwebrtc_aec_$(MARCH) -lwebrtc_spl_$(MARCH) -lwebrtc_apm_utility_$(MARCH) -lwebrtc_ns_$(MARCH) -lwebrtc_system_wrappers_$(MARCH)
else
    WEBRTC_CFLAGS := -DHAVE_WEBRTC=0
endif

Original comment by xin...@gmail.com on 31 Aug 2011 at 1:33

GoogleCodeExporter commented 8 years ago

Original comment by boss...@yahoo.fr on 31 Aug 2011 at 7:38