freeswitch: don't select packages from Config.in, this causes stuff to end up in rootfs even if freeswitch is built as package only
This commit is contained in:
parent
82fe3a7f96
commit
25a10d6c6d
2 changed files with 6 additions and 5 deletions
|
@ -39,19 +39,16 @@ choice
|
||||||
|
|
||||||
config FS_WITH_MYSQL
|
config FS_WITH_MYSQL
|
||||||
bool "MySQL"
|
bool "MySQL"
|
||||||
select PACKAGE_libmysqlclient
|
|
||||||
help
|
help
|
||||||
Compile libs/apr-util with MySQL support.
|
Compile libs/apr-util with MySQL support.
|
||||||
|
|
||||||
config FS_WITH_POSTGRESQL
|
config FS_WITH_POSTGRESQL
|
||||||
bool "PostgreSQL"
|
bool "PostgreSQL"
|
||||||
select PACKAGE_libpq
|
|
||||||
help
|
help
|
||||||
Compile libs/apr-util with PostgreSQL support.
|
Compile libs/apr-util with PostgreSQL support.
|
||||||
|
|
||||||
config FS_WITH_SQLITE3
|
config FS_WITH_SQLITE3
|
||||||
bool "SQLITE3"
|
bool "SQLITE3"
|
||||||
select PACKAGE_libsqlite3
|
|
||||||
help
|
help
|
||||||
Compile libs/apr-util with SQLITE3 support.
|
Compile libs/apr-util with SQLITE3 support.
|
||||||
|
|
||||||
|
@ -84,7 +81,6 @@ config FS_WITH_IPV6
|
||||||
config FS_WITH_LZMA
|
config FS_WITH_LZMA
|
||||||
bool "Enable liblzma usage in libtiff"
|
bool "Enable liblzma usage in libtiff"
|
||||||
default y
|
default y
|
||||||
select PACKAGE_liblzma
|
|
||||||
help
|
help
|
||||||
Compile libs/tiff package with liblzma support. This option requires
|
Compile libs/tiff package with liblzma support. This option requires
|
||||||
LZMA2 compression package called liblzma.
|
LZMA2 compression package called liblzma.
|
||||||
|
@ -114,7 +110,6 @@ config FS_WITH_OPT
|
||||||
config FS_WITH_SCTP
|
config FS_WITH_SCTP
|
||||||
bool "Enable SCTP (Stream Control Transfer Protocol) support in APR"
|
bool "Enable SCTP (Stream Control Transfer Protocol) support in APR"
|
||||||
default y
|
default y
|
||||||
select PACKAGE_sctp
|
|
||||||
help
|
help
|
||||||
Compile $(PKG_NAME) with SCTP support in lib APR.
|
Compile $(PKG_NAME) with SCTP support in lib APR.
|
||||||
|
|
||||||
|
|
|
@ -31,6 +31,12 @@ PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
|
||||||
PKG_FIXUP:=libtool autoreconf
|
PKG_FIXUP:=libtool autoreconf
|
||||||
PKG_BUILD_PARALLEL:=1
|
PKG_BUILD_PARALLEL:=1
|
||||||
|
|
||||||
|
PKG_BUILD_DEPENDS:= \
|
||||||
|
FS_WITH_MYSQL:libmysqlclient \
|
||||||
|
FS_WITH_POSTGRESQL:libpq \
|
||||||
|
FS_WITH_SQLITE3:libsqlite3 \
|
||||||
|
FS_WITH_LZMA:liblzma \
|
||||||
|
FS_WITH_SCTP:sctp
|
||||||
|
|
||||||
TAR_OPTIONS+= --strip-components=1 -C $(PKG_BUILD_DIR)
|
TAR_OPTIONS+= --strip-components=1 -C $(PKG_BUILD_DIR)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue