From: Mazi Lo Date: Sat, 11 Oct 2014 19:25:26 +0000 (-0400) Subject: FreeSWITCH: X-Git-Url: http://207.154.207.93/?a=commitdiff_plain;h=3b8f19f56ad78c22036cf99544f9a06a4ddbfae9;p=feed%2Ftelephony.git FreeSWITCH: 1. Add a silent-rules configure switch 2. Set its default setting to --disable-silent-rules 3. Set FS_WITH_ALSA default setting to enable. Signed-off-by: Mazi Lo --- diff --git a/net/freeswitch/Config.in b/net/freeswitch/Config.in index a102e65..b72f2bf 100644 --- a/net/freeswitch/Config.in +++ b/net/freeswitch/Config.in @@ -86,7 +86,7 @@ menu "Configuration" config FS_WITH_ALSA bool "Enable ALSA for sound support" - default n + default y help Compile with ALSA support. @@ -173,12 +173,6 @@ menu "Configuration" help Compile with SSL support. - config FS_WITH_STUN - bool "Enable stun module" - default n - help - Enable stun module - config FS_WITH_OPT bool "Enable optimization" default y @@ -186,6 +180,13 @@ menu "Configuration" Compile with optimization flag enabled. This will add max optimising compiler flags + config FS_WITH_SILENT_RULES + bool "Enable with less verbose build output" + default n + help + Enable this option to produce a less verbose build output + (undo: "make V=1") + config FS_WITH_SRTP bool "Enable SRTP" default y @@ -213,6 +214,12 @@ menu "Configuration" help Use OpenSSL crypto primitives. + config FS_WITH_STUN + bool "Enable stun module" + default n + help + Enable stun module + config FS_WITH_ERLANG depends on PACKAGE_freeswitch-mod-erlang-event string diff --git a/net/freeswitch/Makefile b/net/freeswitch/Makefile index db1c880..c95a91b 100644 --- a/net/freeswitch/Makefile +++ b/net/freeswitch/Makefile @@ -214,6 +214,7 @@ PKG_CONFIG_DEPENDS:= \ CONFIG_FS_WITH_OPENWRT_SOURCE \ CONFIG_FS_WITH_OPT \ CONFIG_FS_WITH_POSTGRESQL \ + CONFIG_FS_WITH_SILENT_RULES \ CONFIG_FS_WITH_SQLITE3 \ CONFIG_FS_WITH_SRTP \ CONFIG_FS_WITH_SRTP_GENERIC_AESICM \ @@ -589,6 +590,7 @@ CONFIGURE_ARGS+= \ $(call autoconf_bool,CONFIG_FS_WITH_OPT,optimization) \ $(call autoconf_bool,CONFIG_FS_WITH_POSTGRESQL,core-pgsql-pkgconfig) \ $(call autoconf_bool,CONFIG_FS_WITH_POSTGRESQL,core-pgsql-support) \ + $(call autoconf_bool,CONFIG_FS_WITH_SILENT_RULES,silent-rules) \ $(call autoconf_bool,CONFIG_FS_WITH_SRTP,srtp) \ $(call autoconf_bool,CONFIG_FS_WITH_SRTP_GENERIC_AESICM,generic-aesicm) \ $(call autoconf_bool,CONFIG_FS_WITH_SRTP_KERNEL_LINUX,kernel-linux) \