freeswitch-stable: rename to just freeswitch
Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
This commit is contained in:
parent
b7ada77e17
commit
e3b3dce36e
4 changed files with 444 additions and 449 deletions
|
@ -1,7 +1,7 @@
|
||||||
menu "Advanced configuration"
|
menu "Advanced configuration"
|
||||||
depends on PACKAGE_freeswitch-stable
|
depends on PACKAGE_freeswitch
|
||||||
|
|
||||||
config FS_STABLE_WITH_DEBUG
|
config FS_WITH_DEBUG
|
||||||
bool "Compile with debug information"
|
bool "Compile with debug information"
|
||||||
default n
|
default n
|
||||||
help
|
help
|
||||||
|
@ -9,51 +9,51 @@ config FS_STABLE_WITH_DEBUG
|
||||||
want to get meaningful backtraces see
|
want to get meaningful backtraces see
|
||||||
https://wiki.openwrt.org/doc/devel/debugging for starting points.
|
https://wiki.openwrt.org/doc/devel/debugging for starting points.
|
||||||
|
|
||||||
config FS_STABLE_WITH_FREETYPE
|
config FS_WITH_FREETYPE
|
||||||
bool "Compile with FreeType support"
|
bool "Compile with FreeType support"
|
||||||
default y if x86_64
|
default y if x86_64
|
||||||
help
|
help
|
||||||
Add FreeType support to FreeSWITCH
|
Add FreeType support to FreeSWITCH
|
||||||
|
|
||||||
config FS_STABLE_WITH_LIBYUV
|
config FS_WITH_LIBYUV
|
||||||
bool "Compile with libyuv support"
|
bool "Compile with libyuv support"
|
||||||
default y if x86_64
|
default y if x86_64
|
||||||
help
|
help
|
||||||
Add libyuv support to FreeSWITCH
|
Add libyuv support to FreeSWITCH
|
||||||
|
|
||||||
config FS_STABLE_WITH_ODBC
|
config FS_WITH_ODBC
|
||||||
bool "Compile with ODBC support"
|
bool "Compile with ODBC support"
|
||||||
default y if x86_64
|
default y if x86_64
|
||||||
help
|
help
|
||||||
Enable ODBC support.
|
Enable ODBC support.
|
||||||
|
|
||||||
config FS_STABLE_WITH_PNG
|
config FS_WITH_PNG
|
||||||
bool "Compile with PNG support"
|
bool "Compile with PNG support"
|
||||||
default y if x86_64
|
default y if x86_64
|
||||||
help
|
help
|
||||||
Add PNG support to FreeSWITCH
|
Add PNG support to FreeSWITCH
|
||||||
|
|
||||||
config FS_STABLE_WITH_SRTP
|
config FS_WITH_SRTP
|
||||||
bool "Compile with SRTP support"
|
bool "Compile with SRTP support"
|
||||||
default y
|
default y
|
||||||
help
|
help
|
||||||
Compile with SRTP support.
|
Compile with SRTP support.
|
||||||
|
|
||||||
config FS_STABLE_WITH_VPX
|
config FS_WITH_VPX
|
||||||
bool "Compile with VPx support"
|
bool "Compile with VPx support"
|
||||||
depends on FS_STABLE_WITH_LIBYUV
|
depends on FS_WITH_LIBYUV
|
||||||
default y if x86_64
|
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_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 y if x86_64
|
default y if x86_64
|
||||||
help
|
help
|
||||||
Compile with ZRTP support.
|
Compile with ZRTP support.
|
||||||
|
|
||||||
config FS_STABLE_WITH_MODCONF
|
config FS_WITH_MODCONF
|
||||||
bool "Include module examples"
|
bool "Include module examples"
|
||||||
default y if x86_64
|
default y if x86_64
|
||||||
help
|
help
|
||||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -5,7 +5,7 @@
|
||||||
$(SPHINXBASE_BUILDDIR)/Makefile: $(SPHINXBASE_DIR)
|
$(SPHINXBASE_BUILDDIR)/Makefile: $(SPHINXBASE_DIR)
|
||||||
mkdir -p $(SPHINXBASE_BUILDDIR)
|
mkdir -p $(SPHINXBASE_BUILDDIR)
|
||||||
- (cd $(SPHINXBASE_BUILDDIR) && $(DEFAULT_VARS) $(SPHINXBASE_DIR)/configure $(DEFAULT_ARGS) --srcdir=$(SPHINXBASE_DIR) --without-python CFLAGS=)
|
- (cd $(SPHINXBASE_BUILDDIR) && $(DEFAULT_VARS) $(SPHINXBASE_DIR)/configure $(DEFAULT_ARGS) --srcdir=$(SPHINXBASE_DIR) --without-python CFLAGS=)
|
||||||
+ (cd $(SPHINXBASE_BUILDDIR) && sed -i 's|$$(srcdir)/||g' test/regression/Makefile.am && autoreconf -v -f -i -s && $(DEFAULT_VARS) ac_cv_header_alsa_asoundlib_h=no ac_cv_header_jack_jack_h=no ac_cv_header_pulse_pulseaudio_h=no $(SPHINXBASE_DIR)/configure $(DEFAULT_ARGS) --srcdir=$(SPHINXBASE_DIR) --without-python $(FS_STABLE_USE_FIXED_POINT))
|
+ (cd $(SPHINXBASE_BUILDDIR) && sed -i 's|$$(srcdir)/||g' test/regression/Makefile.am && autoreconf -v -f -i -s && $(DEFAULT_VARS) ac_cv_header_alsa_asoundlib_h=no ac_cv_header_jack_jack_h=no ac_cv_header_pulse_pulseaudio_h=no $(SPHINXBASE_DIR)/configure $(DEFAULT_ARGS) --srcdir=$(SPHINXBASE_DIR) --without-python $(FS_USE_FIXED_POINT))
|
||||||
$(TOUCH_TARGET)
|
$(TOUCH_TARGET)
|
||||||
|
|
||||||
$(SPHINXBASE_BUILDDIR)/buildstamp: $(SPHINXBASE_BUILDDIR)/Makefile
|
$(SPHINXBASE_BUILDDIR)/buildstamp: $(SPHINXBASE_BUILDDIR)/Makefile
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
/***************/
|
/***************/
|
||||||
#endif /* WIN32 */
|
#endif /* WIN32 */
|
||||||
|
|
||||||
+#if defined(FS_STABLE_ICONV_INBUF_CONST)
|
+#if defined(FS_ICONV_INBUF_CONST)
|
||||||
+#define ICONV_INBUF_TYPE const char **
|
+#define ICONV_INBUF_TYPE const char **
|
||||||
+#else
|
+#else
|
||||||
+#define ICONV_INBUF_TYPE char **
|
+#define ICONV_INBUF_TYPE char **
|
||||||
|
|
Loading…
Reference in a new issue