Skip to content

Commit

Permalink
Merge branch 'master' into bcg729_VAD_DTX_updates
Browse files Browse the repository at this point in the history
  • Loading branch information
sobomax committed Apr 1, 2017
2 parents 88ab19e + c9941c3 commit ca59cbe
Show file tree
Hide file tree
Showing 54 changed files with 852 additions and 203 deletions.
14 changes: 6 additions & 8 deletions Makefile.am
Expand Up @@ -2,21 +2,19 @@ ACLOCAL_AMFLAGS= -I m4

AUTOMAKE_OPTIONS= foreign

SUBDIRS= libexecinfo makeann

if BUILD_MODULES
SUBDIRS+= modules
SUBD_MOD= modules
endif
if BUILD_ELPERIODIC
SUBDIRS+= libelperiodic
SUBD_ELP= libelperiodic/src
endif

SUBDIRS+= src pertools tests

if BUILD_EXTRACTAUDIO
SUBDIRS+= extractaudio
SUBD_EAUD= extractaudio
endif

SUBDIRS= libexecinfo makeann $(SUBD_MOD) $(SUBD_ELP) src pertools tests \
$(SUBD_EAUD)

dist_man_MANS= rtpproxy.8
EXTRA_DIST= README.remote manpage.xml debian/README.Debian debian/changelog \
debian/compat debian/conffiles.ex debian/control debian/copyright \
Expand Down
20 changes: 13 additions & 7 deletions Makefile.in
Expand Up @@ -87,9 +87,6 @@ PRE_UNINSTALL = :
POST_UNINSTALL = :
build_triplet = @build@
host_triplet = @host@
@BUILD_MODULES_TRUE@am__append_1 = modules
@BUILD_ELPERIODIC_TRUE@am__append_2 = libelperiodic
@BUILD_EXTRACTAUDIO_TRUE@am__append_3 = extractaudio
subdir = .
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
am__aclocal_m4_deps = $(top_srcdir)/m4/libtool.m4 \
Expand Down Expand Up @@ -192,8 +189,8 @@ am__define_uniq_tagged_files = \
ETAGS = etags
CTAGS = ctags
CSCOPE = cscope
DIST_SUBDIRS = libexecinfo makeann modules libelperiodic src pertools \
tests extractaudio
DIST_SUBDIRS = libexecinfo makeann modules libelperiodic/src src \
pertools tests extractaudio
am__DIST_COMMON = $(dist_man_MANS) $(srcdir)/Makefile.in AUTHORS \
ChangeLog INSTALL NEWS compile config.guess config.sub depcomp \
install-sh ltmain.sh missing
Expand Down Expand Up @@ -277,9 +274,12 @@ LDFLAGS = @LDFLAGS@
LIBOBJS = @LIBOBJS@
LIBS = @LIBS@
LIBS_DL = @LIBS_DL@
LIBS_ELPERIODIC = @LIBS_ELPERIODIC@
LIBS_G722 = @LIBS_G722@
LIBS_G729 = @LIBS_G729@
LIBS_GSM = @LIBS_GSM@
LIBS_SIPLOG = @LIBS_SIPLOG@
LIBS_SIPLOG_DBG = @LIBS_SIPLOG_DBG@
LIBS_SNDFILE = @LIBS_SNDFILE@
LIBS_SRTP = @LIBS_SRTP@
LIBTOOL = @LIBTOOL@
Expand All @@ -305,6 +305,7 @@ PACKAGE_URL = @PACKAGE_URL@
PACKAGE_VERSION = @PACKAGE_VERSION@
PATH_SEPARATOR = @PATH_SEPARATOR@
RANLIB = @RANLIB@
RT_LIB = @RT_LIB@
SED = @SED@
SET_MAKE = @SET_MAKE@
SHELL = @SHELL@
Expand Down Expand Up @@ -357,15 +358,20 @@ psdir = @psdir@
sbindir = @sbindir@
sharedstatedir = @sharedstatedir@
srcdir = @srcdir@
subdirs = @subdirs@
sysconfdir = @sysconfdir@
target_alias = @target_alias@
top_build_prefix = @top_build_prefix@
top_builddir = @top_builddir@
top_srcdir = @top_srcdir@
ACLOCAL_AMFLAGS = -I m4
AUTOMAKE_OPTIONS = foreign
SUBDIRS = libexecinfo makeann $(am__append_1) $(am__append_2) src \
pertools tests $(am__append_3)
@BUILD_MODULES_TRUE@SUBD_MOD = modules
@BUILD_ELPERIODIC_TRUE@SUBD_ELP = libelperiodic/src
@BUILD_EXTRACTAUDIO_TRUE@SUBD_EAUD = extractaudio
SUBDIRS = libexecinfo makeann $(SUBD_MOD) $(SUBD_ELP) src pertools tests \
$(SUBD_EAUD)

dist_man_MANS = rtpproxy.8
EXTRA_DIST = README.remote manpage.xml debian/README.Debian debian/changelog \
debian/compat debian/conffiles.ex debian/control debian/copyright \
Expand Down
37 changes: 37 additions & 0 deletions aclocal.m4
Expand Up @@ -108,6 +108,43 @@ AC_DEFUN([AM_AUX_DIR_EXPAND],
am_aux_dir=`cd "$ac_aux_dir" && pwd`
])

# AM_COND_IF -*- Autoconf -*-

# Copyright (C) 2008-2014 Free Software Foundation, Inc.
#
# This file is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
# with or without modifications, as long as this notice is preserved.

# _AM_COND_IF
# _AM_COND_ELSE
# _AM_COND_ENDIF
# --------------
# These macros are only used for tracing.
m4_define([_AM_COND_IF])
m4_define([_AM_COND_ELSE])
m4_define([_AM_COND_ENDIF])

# AM_COND_IF(COND, [IF-TRUE], [IF-FALSE])
# ---------------------------------------
# If the shell condition COND is true, execute IF-TRUE, otherwise execute
# IF-FALSE. Allow automake to learn about conditional instantiating macros
# (the AC_CONFIG_FOOS).
AC_DEFUN([AM_COND_IF],
[m4_ifndef([_AM_COND_VALUE_$1],
[m4_fatal([$0: no such condition "$1"])])dnl
_AM_COND_IF([$1])dnl
if test -z "$$1_TRUE"; then :
m4_n([$2])[]dnl
m4_ifval([$3],
[_AM_COND_ELSE([$1])dnl
else
$3
])dnl
_AM_COND_ENDIF([$1])dnl
fi[]dnl
])

# AM_CONDITIONAL -*- Autoconf -*-

# Copyright (C) 1997-2014 Free Software Foundation, Inc.
Expand Down

0 comments on commit ca59cbe

Please sign in to comment.