freeswitch-stable: Enable extra symbols for x86_64 target
There is no space constraint on x86_64, so enable the extra symbols for a complete feature set. Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
This commit is contained in:
parent
4cfbc9c933
commit
e0651d98e5
1 changed files with 8 additions and 8 deletions
|
@ -11,7 +11,7 @@ config FS_STABLE_WITH_DEBUG
|
||||||
|
|
||||||
config FS_STABLE_WITH_FREETYPE
|
config FS_STABLE_WITH_FREETYPE
|
||||||
bool "Compile with FreeType support"
|
bool "Compile with FreeType support"
|
||||||
default n
|
default y if x86_64
|
||||||
help
|
help
|
||||||
Add FreeType support to FreeSWITCH
|
Add FreeType support to FreeSWITCH
|
||||||
|
|
||||||
|
@ -26,25 +26,25 @@ config FS_STABLE_WITH_LIBEDIT
|
||||||
|
|
||||||
config FS_STABLE_WITH_LIBYUV
|
config FS_STABLE_WITH_LIBYUV
|
||||||
bool "Compile with libyuv support"
|
bool "Compile with libyuv support"
|
||||||
default n
|
default y if x86_64
|
||||||
help
|
help
|
||||||
Add libyuv support to FreeSWITCH
|
Add libyuv support to FreeSWITCH
|
||||||
|
|
||||||
config FS_STABLE_WITH_ODBC
|
config FS_STABLE_WITH_ODBC
|
||||||
bool "Compile with ODBC support"
|
bool "Compile with ODBC support"
|
||||||
default n
|
default y if x86_64
|
||||||
help
|
help
|
||||||
Enable ODBC support.
|
Enable ODBC support.
|
||||||
|
|
||||||
config FS_STABLE_WITH_PGSQL
|
config FS_STABLE_WITH_PGSQL
|
||||||
bool "Compile with PGSQL support"
|
bool "Compile with PGSQL support"
|
||||||
default n
|
default y if x86_64
|
||||||
help
|
help
|
||||||
Enable PostgreSQL support.
|
Enable PostgreSQL support.
|
||||||
|
|
||||||
config FS_STABLE_WITH_PNG
|
config FS_STABLE_WITH_PNG
|
||||||
bool "Compile with PNG support"
|
bool "Compile with PNG support"
|
||||||
default n
|
default y if x86_64
|
||||||
help
|
help
|
||||||
Add PNG support to FreeSWITCH
|
Add PNG support to FreeSWITCH
|
||||||
|
|
||||||
|
@ -57,20 +57,20 @@ config FS_STABLE_WITH_SRTP
|
||||||
config FS_STABLE_WITH_VPX
|
config FS_STABLE_WITH_VPX
|
||||||
bool "Compile with VPx support"
|
bool "Compile with VPx support"
|
||||||
depends on FS_STABLE_WITH_LIBYUV
|
depends on FS_STABLE_WITH_LIBYUV
|
||||||
default n
|
default y if x86_64
|
||||||
help
|
help
|
||||||
Compile with VPx video codec support
|
Compile with VPx video codec support
|
||||||
|
|
||||||
config FS_STABLE_WITH_ZRTP
|
config FS_STABLE_WITH_ZRTP
|
||||||
bool "Compile with ZRTP support"
|
bool "Compile with ZRTP support"
|
||||||
depends on aarch64||aarch64_be||arm||armeb||i386||mips||mips64||mips64el||mipsel||powerpc||powerpc64||powerpcle||sparc||x86_64
|
depends on aarch64||aarch64_be||arm||armeb||i386||mips||mips64||mips64el||mipsel||powerpc||powerpc64||powerpcle||sparc||x86_64
|
||||||
default n
|
default y if x86_64
|
||||||
help
|
help
|
||||||
Compile with ZRTP support.
|
Compile with ZRTP support.
|
||||||
|
|
||||||
config FS_STABLE_WITH_MODCONF
|
config FS_STABLE_WITH_MODCONF
|
||||||
bool "Include module examples"
|
bool "Include module examples"
|
||||||
default n
|
default y if x86_64
|
||||||
help
|
help
|
||||||
Some modules include examples in their source directory, e.g. xml
|
Some modules include examples in their source directory, e.g. xml
|
||||||
snippets. Select y to include them.
|
snippets. Select y to include them.
|
||||||
|
|
Loading…
Reference in a new issue