summaryrefslogtreecommitdiffstats
path: root/net/freeswitch/Config.in
blob: 52b1c06d0ff066e986dadb54b4911a3aa7096573 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
menu "Advanced configuration"
	depends on PACKAGE_freeswitch

config FS_WITH_DEBUG
	bool "Compile with debug information"
	default n
	help
	  Enable extra debug codepaths, like asserts and extra output. If you
	  want to get meaningful backtraces see
	  https://wiki.openwrt.org/doc/devel/debugging for starting points.

config FS_WITH_FREETYPE
	bool "Compile with FreeType support"
	default y if x86_64
	help
	  Add FreeType support to FreeSWITCH

config FS_WITH_LIBYUV
	bool "Compile with libyuv support"
	default y if x86_64
	help
	  Add libyuv support to FreeSWITCH

config FS_WITH_ODBC
	bool "Compile with ODBC support"
	default y if x86_64
	help
	  Enable ODBC support.

config FS_WITH_PNG
	bool "Compile with PNG support"
	default y if x86_64
	help
	  Add PNG support to FreeSWITCH

config FS_WITH_SRTP
	bool "Compile with SRTP support"
	default y
	help
	  Compile with SRTP support.

config FS_WITH_VPX
	bool "Compile with VPx support"
	depends on FS_WITH_LIBYUV
	default y if x86_64
	help
	  Compile with VPx video codec support

config FS_WITH_MODCONF
	bool "Include module examples"
	default y if x86_64
	help
	  Some modules include examples in their source directory, e.g. xml
	  snippets. Select y to include them.

endmenu