b.liu | e958203 | 2025-04-17 19:18:16 +0800 | [diff] [blame^] | 1 | menu "Advanced configuration" |
| 2 | depends on PACKAGE_freeswitch |
| 3 | |
| 4 | config FS_WITH_DEBUG |
| 5 | bool "Compile with debug information" |
| 6 | default n |
| 7 | help |
| 8 | Enable extra debug codepaths, like asserts and extra output. If you |
| 9 | want to get meaningful backtraces see |
| 10 | https://wiki.openwrt.org/doc/devel/debugging for starting points. |
| 11 | |
| 12 | config FS_WITH_FREETYPE |
| 13 | bool "Compile with FreeType support" |
| 14 | default y if x86_64 |
| 15 | help |
| 16 | Add FreeType support to FreeSWITCH |
| 17 | |
| 18 | config FS_WITH_LIBYUV |
| 19 | bool "Compile with libyuv support" |
| 20 | default y if x86_64 |
| 21 | help |
| 22 | Add libyuv support to FreeSWITCH |
| 23 | |
| 24 | config FS_WITH_ODBC |
| 25 | bool "Compile with ODBC support" |
| 26 | default y if x86_64 |
| 27 | help |
| 28 | Enable ODBC support. |
| 29 | |
| 30 | config FS_WITH_PNG |
| 31 | bool "Compile with PNG support" |
| 32 | default y if x86_64 |
| 33 | help |
| 34 | Add PNG support to FreeSWITCH |
| 35 | |
| 36 | config FS_WITH_SRTP |
| 37 | bool "Compile with SRTP support" |
| 38 | default y |
| 39 | help |
| 40 | Compile with SRTP support. |
| 41 | |
| 42 | config FS_WITH_VPX |
| 43 | bool "Compile with VPx support" |
| 44 | depends on FS_WITH_LIBYUV |
| 45 | default y if x86_64 |
| 46 | help |
| 47 | Compile with VPx video codec support |
| 48 | |
| 49 | config FS_WITH_ZRTP |
| 50 | bool "Compile with ZRTP support" |
| 51 | depends on aarch64||aarch64_be||arm||armeb||i386||mips||mips64||mips64el||mipsel||powerpc||powerpc64||powerpcle||sparc||x86_64 |
| 52 | default y if x86_64 |
| 53 | help |
| 54 | Compile with ZRTP support. |
| 55 | |
| 56 | config FS_WITH_MODCONF |
| 57 | bool "Include module examples" |
| 58 | default y if x86_64 |
| 59 | help |
| 60 | Some modules include examples in their source directory, e.g. xml |
| 61 | snippets. Select y to include them. |
| 62 | |
| 63 | endmenu |