FreeSWITCH:
1. Fix no FS_WITH_SQLITE3 due to @DEVEL in Config.in 2. Fix configure error due to no ldns package needed by mod_enum. Signed-off-by: Mazi Lo <openwrt.mazilo@recursor.net>
This commit is contained in:
parent
bbddc7adb8
commit
774c735f9f
2 changed files with 3 additions and 2 deletions
|
@ -1,7 +1,8 @@
|
|||
menu "Configuration"
|
||||
depends on PACKAGE_freeswitch && DEVEL
|
||||
depends on PACKAGE_freeswitch
|
||||
|
||||
choice
|
||||
depends on DEVEL
|
||||
prompt "Git HEAD version to use"
|
||||
default FS_WITH_DEFAULT_HEAD
|
||||
help
|
||||
|
|
|
@ -677,7 +677,6 @@ endef
|
|||
define Build/Configure
|
||||
(cd $(PKG_BUILD_DIR); $(if $(CONFIG_FS_WITH_LATEST_HEAD),if $(QUILT_CMD) top > /dev/null 2>&1; then $(QUILT_CMD) pop -a; fi; git pull; if $(QUILT_CMD) next > /dev/null 2>&1; then $(QUILT_CMD) push -a; fi))
|
||||
(cd $(PKG_BUILD_DIR); $(AM_TOOL_PATHS) ./bootstrap.sh)
|
||||
$(call Build/Configure/Default)
|
||||
$(foreach m,$(FS_MOD_AVAILABLE),
|
||||
$(if $(CONFIG_PACKAGE_$(PKG_NAME)-mod-$(m)),
|
||||
$(SED) 's|^[ #]*\([^#]*/mod_$(subst -,_,$(m))\)$$$$|\1|g' $(PKG_BUILD_DIR)/modules.conf
|
||||
|
@ -685,6 +684,7 @@ define Build/Configure
|
|||
$(SED) 's|^\([^#]*/mod_$(subst -,_,$(m))\)$$$$|#\1|g' $(PKG_BUILD_DIR)/modules.conf
|
||||
)
|
||||
)
|
||||
$(call Build/Configure/Default)
|
||||
endef
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue