mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-02-07 12:17:35 +00:00
8330336e9a
[apr] Backport APR_RING_FOREACH and APR_RING_FOREACH_SAFE macros to APR for unimrcp compatibility. [unimrcp] configure.gnu - need full path, not relative path for library paths [unimrcp] added uni_revision.h - couldn't get it to autogenerate from build [mod_unimrcp] add better logging and error checking on module load. Currently dumps core on MRCPv1 TTS attempt [mod_unimrcp] don't configure MRCPv1 session with a connection agent- causes crash
46 lines
1.1 KiB
Plaintext
46 lines
1.1 KiB
Plaintext
dnl
|
|
dnl UNI_PLUGIN_ENABLED(name)
|
|
dnl
|
|
dnl where name is the name of the plugin.
|
|
dnl
|
|
dnl This macro can be used for a plugin which must be enabled by default.
|
|
dnl
|
|
dnl Adds the following argument to the configure script:
|
|
dnl
|
|
dnl --disable-$1-plugin
|
|
dnl
|
|
dnl Sets the following variable on exit:
|
|
dnl
|
|
dnl enable_$1_plugin : "yes" or "no"
|
|
dnl
|
|
AC_DEFUN([UNI_PLUGIN_ENABLED],[
|
|
AC_ARG_ENABLE(
|
|
[$1-plugin],
|
|
[AC_HELP_STRING([--disable-$1-plugin],[exclude $1 plugin from build])],
|
|
[enable_$1_plugin="$enableval"],
|
|
[enable_$1_plugin="yes"])
|
|
])
|
|
|
|
dnl
|
|
dnl UNI_PLUGIN_DISABLED(name)
|
|
dnl
|
|
dnl where name is the name of the plugin.
|
|
dnl
|
|
dnl This macro can be used for a plugin which must be disabled by default.
|
|
dnl
|
|
dnl Adds the following argument to the configure script:
|
|
dnl
|
|
dnl --enable-$1-plugin
|
|
dnl
|
|
dnl Sets the following variable on exit:
|
|
dnl
|
|
dnl enable_$1_plugin : "yes" or "no"
|
|
dnl
|
|
AC_DEFUN([UNI_PLUGIN_DISABLED],[
|
|
AC_ARG_ENABLE(
|
|
[$1-plugin],
|
|
[AC_HELP_STRING([--enable-$1-plugin],[include $1 plugin in build])],
|
|
[enable_$1_plugin="$enableval"],
|
|
[enable_$1_plugin="no"])
|
|
])
|