mirror of
https://abf.rosa.ru/djam/asterisk.git
synced 2025-02-24 02:52:58 +00:00
Automatic import for version 1.8.5.0
This commit is contained in:
commit
154b4b85fa
13 changed files with 2618 additions and 0 deletions
3
.abf.yml
Normal file
3
.abf.yml
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
sources:
|
||||||
|
"asterisk-1.8.5.0.tar.gz": 9e29581deea773c2537f5c01a43823211688412a
|
||||||
|
"asterisk-mp3.tar.bz2": e7d9a2725d7462edfdc818a918e00157dad2a213
|
|
@ -0,0 +1,45 @@
|
||||||
|
From a45cb3fffcafefae5bcd96061d23fe44ebc61990 Mon Sep 17 00:00:00 2001
|
||||||
|
From: Jeffrey C. Ollie <jcollie@pc21224.campus.dmacc.edu>
|
||||||
|
Date: Thu, 8 Nov 2007 15:52:36 -0600
|
||||||
|
Subject: [PATCH] Modify modules.conf so that different voicemail modules can be loaded.
|
||||||
|
|
||||||
|
---
|
||||||
|
configs/modules.conf.sample | 26 ++++++++++++++++++++++++++
|
||||||
|
1 files changed, 26 insertions(+), 0 deletions(-)
|
||||||
|
|
||||||
|
diff --git a/configs/modules.conf.sample b/configs/modules.conf.sample
|
||||||
|
index 8f73de1..7dd8940 100644
|
||||||
|
--- a/configs/modules.conf.sample
|
||||||
|
+++ b/configs/modules.conf.sample
|
||||||
|
@@ -38,3 +38,28 @@
|
||||||
|
;noload => chan_oss.so
|
||||||
|
noload => chan_console.so
|
||||||
|
;
|
||||||
|
+;
|
||||||
|
+; Voicemail storage selection
|
||||||
|
+;
|
||||||
|
+; Comment out the "noload" lines for the voicemail
|
||||||
|
+; storage system that you want. Leave the ones that
|
||||||
|
+; you don't want uncommented.
|
||||||
|
+;
|
||||||
|
+
|
||||||
|
+;
|
||||||
|
+; Voicemail with IMAP storage
|
||||||
|
+;
|
||||||
|
+noload => app_directory_imap.so
|
||||||
|
+noload => app_voicemail_imap.so
|
||||||
|
+
|
||||||
|
+;
|
||||||
|
+; Voicemail with ODBC storage
|
||||||
|
+;
|
||||||
|
+noload => app_directory_odbc.so
|
||||||
|
+noload => app_voicemail_odbc.so
|
||||||
|
+
|
||||||
|
+;
|
||||||
|
+; Voicemail with filesystem storage
|
||||||
|
+;
|
||||||
|
+;noload => app_directory_plain.so
|
||||||
|
+;noload => app_voicemail_plain.so
|
||||||
|
--
|
||||||
|
1.5.6.5
|
||||||
|
|
27
asterisk-1.6.1-beta3-ffmpeg_fix.diff
Normal file
27
asterisk-1.6.1-beta3-ffmpeg_fix.diff
Normal file
|
@ -0,0 +1,27 @@
|
||||||
|
diff -Naur asterisk-1.6.1-beta3/channels/console_video.h asterisk-1.6.1-beta3.oden/channels/console_video.h
|
||||||
|
--- asterisk-1.6.1-beta3/channels/console_video.h 2008-06-30 17:45:15.000000000 +0200
|
||||||
|
+++ asterisk-1.6.1-beta3.oden/channels/console_video.h 2008-12-11 17:43:35.000000000 +0100
|
||||||
|
@@ -28,9 +28,9 @@
|
||||||
|
"console {device}"
|
||||||
|
#else
|
||||||
|
|
||||||
|
-#include <ffmpeg/avcodec.h>
|
||||||
|
+#include <libavcodec/avcodec.h>
|
||||||
|
#ifndef OLD_FFMPEG
|
||||||
|
-#include <ffmpeg/swscale.h> /* requires a recent ffmpeg */
|
||||||
|
+#include <libswscale/swscale.h> /* requires a recent ffmpeg */
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#define CONSOLE_VIDEO_CMDS \
|
||||||
|
diff -Naur asterisk-1.6.1-beta3/configure.ac asterisk-1.6.1-beta3.oden/configure.ac
|
||||||
|
--- asterisk-1.6.1-beta3/configure.ac 2008-12-01 22:46:26.000000000 +0100
|
||||||
|
+++ asterisk-1.6.1-beta3.oden/configure.ac 2008-12-11 17:41:36.000000000 +0100
|
||||||
|
@@ -2089,7 +2089,7 @@
|
||||||
|
|
||||||
|
AST_EXT_TOOL_CHECK([SDL], [sdl-config])
|
||||||
|
AST_EXT_LIB_CHECK([SDL_IMAGE], [SDL_image], [IMG_Load], [SDL_image.h], [${SDL_LIB}], [${SDL_INCLUDE}])
|
||||||
|
-AST_EXT_LIB_CHECK([FFMPEG], [avcodec], [sws_getContext], [ffmpeg/avcodec.h], [${PTHREAD_LIBS} -lz -lm], [${PTHREAD_CFLAGS}])
|
||||||
|
+AST_EXT_LIB_CHECK([FFMPEG], [avcodec], [sws_getContext], [libavcodec/avcodec.h], [-lswscale ${PTHREAD_LIBS} -lz -lm], [${PTHREAD_CFLAGS}])
|
||||||
|
|
||||||
|
# possible places for video4linux version 1
|
||||||
|
AC_CHECK_HEADER([linux/videodev.h],
|
11
asterisk-1.6.1-beta3-net-snmp_fix.diff
Normal file
11
asterisk-1.6.1-beta3-net-snmp_fix.diff
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
--- configure.ac 2008-12-11 16:47:27.000000000 +0100
|
||||||
|
+++ configure.ac.oden 2008-12-11 17:05:02.000000000 +0100
|
||||||
|
@@ -1689,7 +1689,7 @@
|
||||||
|
#error Need libneon >= 0.29.0
|
||||||
|
#endif])
|
||||||
|
|
||||||
|
-AST_EXT_TOOL_CHECK([NETSNMP], [net-snmp-config], , [--agent-libs],
|
||||||
|
+AST_EXT_TOOL_CHECK([NETSNMP], [net-snmp-config], , [--base-agent-libs],
|
||||||
|
[#include <net-snmp/net-snmp-config.h>
|
||||||
|
#include <net-snmp/net-snmp-includes.h>
|
||||||
|
#include <net-snmp/agent/net-snmp-agent-includes.h>],
|
5
asterisk-1.6.1-rc1-utils_pthread_fix.diff
Normal file
5
asterisk-1.6.1-rc1-utils_pthread_fix.diff
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
diff -r -U0 asterisk-1.6.1-rc1.orig/utils/Makefile asterisk-1.6.1-rc1/utils/Makefile
|
||||||
|
--- asterisk-1.6.1-rc1.orig/utils/Makefile 2009-02-23 08:53:37.000000000 -0500
|
||||||
|
+++ asterisk-1.6.1-rc1/utils/Makefile 2009-02-23 08:57:22.000000000 -0500
|
||||||
|
@@ -22,0 +23 @@
|
||||||
|
+LIBS+=-lpthread
|
37
asterisk-external_liblpc10_and_libilbc.diff
Normal file
37
asterisk-external_liblpc10_and_libilbc.diff
Normal file
|
@ -0,0 +1,37 @@
|
||||||
|
--- codecs/Makefile 2008-08-07 17:16:48.000000000 +0200
|
||||||
|
+++ codecs/Makefile.oden 2008-12-11 19:46:48.000000000 +0100
|
||||||
|
@@ -17,8 +17,8 @@
|
||||||
|
MENUSELECT_CATEGORY=CODECS
|
||||||
|
MENUSELECT_DESCRIPTION=Codec Translators
|
||||||
|
|
||||||
|
-LIBILBC:=ilbc/libilbc.a
|
||||||
|
-LIBLPC10:=lpc10/liblpc10.a
|
||||||
|
+LIBILBC:=-lilbc
|
||||||
|
+LIBLPC10:=-llpc10
|
||||||
|
|
||||||
|
all: _all
|
||||||
|
|
||||||
|
@@ -31,22 +31,14 @@
|
||||||
|
|
||||||
|
clean::
|
||||||
|
$(MAKE) -C gsm clean
|
||||||
|
- $(MAKE) -C lpc10 clean
|
||||||
|
- $(MAKE) -C ilbc clean
|
||||||
|
rm -f g722/*.[oa]
|
||||||
|
|
||||||
|
gsm/lib/libgsm.a:
|
||||||
|
@mkdir -p gsm/lib
|
||||||
|
@$(MAKE) -C gsm lib/libgsm.a
|
||||||
|
|
||||||
|
-$(LIBLPC10):
|
||||||
|
- @$(MAKE) -C lpc10 all
|
||||||
|
-
|
||||||
|
$(if $(filter codec_lpc10,$(EMBEDDED_MODS)),modules.link,codec_lpc10.so): $(LIBLPC10)
|
||||||
|
|
||||||
|
-$(LIBILBC):
|
||||||
|
- @$(MAKE) -C ilbc all _ASTCFLAGS="$(filter-out -Wmissing-prototypes -Wmissing-declarations -Wshadow,$(_ASTCFLAGS)) $(AST_NO_STRICT_OVERFLOW)"
|
||||||
|
-
|
||||||
|
$(if $(filter codec_ilbc,$(EMBEDDED_MODS)),modules.link,codec_ilbc.so): $(LIBILBC)
|
||||||
|
|
||||||
|
$(if $(filter codec_g722,$(EMBEDDED_MODS)),modules.link,codec_g722.so): g722/g722_encode.o g722/g722_decode.o
|
||||||
|
|
9
asterisk-logrotate
Normal file
9
asterisk-logrotate
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
/var/log/asterisk/messages /var/log/asterisk/event_log /var/log/asterisk/queue_log {
|
||||||
|
missingok
|
||||||
|
notifempty
|
||||||
|
create 0640 asterisk asterisk
|
||||||
|
sharedscripts
|
||||||
|
postrotate
|
||||||
|
/usr/sbin/asterisk -rx 'logger reload' >/dev/null 2>/dev/null || true
|
||||||
|
endscript
|
||||||
|
}
|
100
asterisk-neon-include-fix.patch
Normal file
100
asterisk-neon-include-fix.patch
Normal file
|
@ -0,0 +1,100 @@
|
||||||
|
diff -ur asterisk-1.8.1.1.orig//configure.ac asterisk-1.8.1.1/configure.ac
|
||||||
|
--- asterisk-1.8.1.1.orig//configure.ac.neon 2010-12-17 12:04:52.000000000 +0100
|
||||||
|
+++ asterisk-1.8.1.1./configure.ac 2010-12-17 12:05:05.000000000 +0100
|
||||||
|
@@ -1687,7 +1687,7 @@
|
||||||
|
AST_EXT_TOOL_CHECK([NEON], [neon-config])
|
||||||
|
|
||||||
|
AST_EXT_TOOL_CHECK([NEON29], [neon-config], , [--libs],
|
||||||
|
-[#include <ne_auth.h>],
|
||||||
|
+[#include <neon/ne_auth.h>],
|
||||||
|
[#ifndef NE_AUTH_NTLM
|
||||||
|
#error Need libneon >= 0.29.0
|
||||||
|
#endif])
|
||||||
|
diff -ur asterisk-1.8.1.1.orig//res/res_calendar_caldav.c asterisk-1.8.1.1/res/res_calendar_caldav.c
|
||||||
|
--- asterisk-1.8.1.1.orig//res/res_calendar_caldav.c 2010-09-17 10:37:49.000000000 +0200
|
||||||
|
+++ asterisk-1.8.1.1/res/res_calendar_caldav.c 2010-12-17 12:12:39.000000000 +0100
|
||||||
|
@@ -30,11 +30,11 @@
|
||||||
|
ASTERISK_FILE_VERSION(__FILE__, "$Revision: 287269 $")
|
||||||
|
|
||||||
|
#include <libical/ical.h>
|
||||||
|
-#include <ne_session.h>
|
||||||
|
-#include <ne_uri.h>
|
||||||
|
-#include <ne_request.h>
|
||||||
|
-#include <ne_auth.h>
|
||||||
|
-#include <ne_redirect.h>
|
||||||
|
+#include <neon/ne_session.h>
|
||||||
|
+#include <neon/ne_uri.h>
|
||||||
|
+#include <neon/ne_request.h>
|
||||||
|
+#include <neon/ne_auth.h>
|
||||||
|
+#include <neon/ne_redirect.h>
|
||||||
|
#include <libxml/xmlmemory.h>
|
||||||
|
#include <libxml/parser.h>
|
||||||
|
|
||||||
|
diff -ur asterisk-1.8.1.1.orig//res/res_calendar_ews.c asterisk-1.8.1.1/res/res_calendar_ews.c
|
||||||
|
--- asterisk-1.8.1.1.orig//res/res_calendar_ews.c 2010-09-17 10:44:28.000000000 +0200
|
||||||
|
+++ asterisk-1.8.1.1/res/res_calendar_ews.c 2010-12-17 12:12:24.000000000 +0100
|
||||||
|
@@ -27,15 +27,15 @@
|
||||||
|
|
||||||
|
ASTERISK_FILE_VERSION(__FILE__, "$Revision: 287271 $")
|
||||||
|
|
||||||
|
-#include <ne_request.h>
|
||||||
|
-#include <ne_session.h>
|
||||||
|
-#include <ne_uri.h>
|
||||||
|
-#include <ne_socket.h>
|
||||||
|
-#include <ne_auth.h>
|
||||||
|
-#include <ne_xml.h>
|
||||||
|
-#include <ne_xmlreq.h>
|
||||||
|
-#include <ne_utils.h>
|
||||||
|
-#include <ne_redirect.h>
|
||||||
|
+#include <neon/ne_request.h>
|
||||||
|
+#include <neon/ne_session.h>
|
||||||
|
+#include <neon/ne_uri.h>
|
||||||
|
+#include <neon/ne_socket.h>
|
||||||
|
+#include <neon/ne_auth.h>
|
||||||
|
+#include <neon/ne_xml.h>
|
||||||
|
+#include <neon/ne_xmlreq.h>
|
||||||
|
+#include <neon/ne_utils.h>
|
||||||
|
+#include <neon/ne_redirect.h>
|
||||||
|
|
||||||
|
#include "asterisk/module.h"
|
||||||
|
#include "asterisk/calendar.h"
|
||||||
|
diff -ur asterisk-1.8.1.1.orig//res/res_calendar_exchange.c asterisk-1.8.1.1/res/res_calendar_exchange.c
|
||||||
|
--- asterisk-1.8.1.1.orig//res/res_calendar_exchange.c 2010-12-17 11:53:43.000000000 +0100
|
||||||
|
+++ asterisk-1.8.1.1/res/res_calendar_exchange.c 2010-12-17 12:12:52.000000000 +0100
|
||||||
|
@@ -30,11 +30,11 @@
|
||||||
|
ASTERISK_FILE_VERSION(__FILE__, "$Revision: 300214 $")
|
||||||
|
|
||||||
|
#include <libical/ical.h>
|
||||||
|
-#include <ne_session.h>
|
||||||
|
-#include <ne_uri.h>
|
||||||
|
-#include <ne_request.h>
|
||||||
|
-#include <ne_auth.h>
|
||||||
|
-#include <ne_redirect.h>
|
||||||
|
+#include <neon/ne_session.h>
|
||||||
|
+#include <neon/ne_uri.h>
|
||||||
|
+#include <neon/ne_request.h>
|
||||||
|
+#include <neon/ne_auth.h>
|
||||||
|
+#include <neon/ne_redirect.h>
|
||||||
|
#include <iksemel.h>
|
||||||
|
|
||||||
|
#include "asterisk/module.h"
|
||||||
|
diff -ur asterisk-1.8.1.1.orig//res/res_calendar_icalendar.c asterisk-1.8.1.1/res/res_calendar_icalendar.c
|
||||||
|
--- asterisk-1.8.1.1.orig//res/res_calendar_icalendar.c 2010-09-17 10:37:49.000000000 +0200
|
||||||
|
+++ asterisk-1.8.1.1/res/res_calendar_icalendar.c 2010-12-17 12:12:56.000000000 +0100
|
||||||
|
@@ -29,11 +29,11 @@
|
||||||
|
ASTERISK_FILE_VERSION(__FILE__, "$Revision: 300214 $")
|
||||||
|
|
||||||
|
#include <libical/ical.h>
|
||||||
|
-#include <ne_session.h>
|
||||||
|
-#include <ne_uri.h>
|
||||||
|
-#include <ne_request.h>
|
||||||
|
-#include <ne_auth.h>
|
||||||
|
-#include <ne_redirect.h>
|
||||||
|
+#include <neon/ne_session.h>
|
||||||
|
+#include <neon/ne_uri.h>
|
||||||
|
+#include <neon/ne_request.h>
|
||||||
|
+#include <neon/ne_auth.h>
|
||||||
|
+#include <neon/ne_redirect.h>
|
||||||
|
|
||||||
|
#include "asterisk/module.h"
|
||||||
|
#include "asterisk/calendar.h"
|
2154
asterisk.spec
Normal file
2154
asterisk.spec
Normal file
File diff suppressed because it is too large
Load diff
9
editline-include-missing-1.6.1-fix.diff
Normal file
9
editline-include-missing-1.6.1-fix.diff
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
--- main/editline/Makefile.in.orig 2009-02-24 10:23:52.000000000 +0100
|
||||||
|
+++ main/editline/Makefile.in 2009-02-24 10:23:42.000000000 +0100
|
||||||
|
@@ -16,5 +16,5 @@
|
||||||
|
AR = @AR@
|
||||||
|
RANLIB = @RANLIB@
|
||||||
|
-CPPFLAGS = @CPPFLAGS@ -I.
|
||||||
|
+CPPFLAGS = @CPPFLAGS@ -I. -I../../include
|
||||||
|
CFLAGS = @CFLAGS@
|
||||||
|
A_CFLAGS = @A_CFLAGS@
|
57
g72x_install
Normal file
57
g72x_install
Normal file
|
@ -0,0 +1,57 @@
|
||||||
|
#!/bin/bash
|
||||||
|
# This script install the Open SOurce G723.1 and G729 codec
|
||||||
|
# to the Asterisk.
|
||||||
|
# Please run in console:
|
||||||
|
# sh /usr/share/doc/asterisk/g72x_install
|
||||||
|
# and the modules should be update all asterisk update. :-)
|
||||||
|
#
|
||||||
|
|
||||||
|
[[ -e `which wget` ]] && WGET=`which wget` || exit 1
|
||||||
|
[[ -d /usr/lib/asterisk/modules ]] && LIBNAME="lib"
|
||||||
|
[[ -d /usr/lib64/asterisk/modules ]] && LIBNAME="lib64"
|
||||||
|
|
||||||
|
AST_VERSION=18
|
||||||
|
asteriskhostinglv="http://asterisk.hosting.lv/bin"
|
||||||
|
|
||||||
|
MD5SUM_FILE="MD5SUM"
|
||||||
|
if [ -d /usr/lib/asterisk/modules ] ; then
|
||||||
|
G273_FILE="codec_g723-ast${AST_VERSION}-gcc4-glibc-pentium2.so"
|
||||||
|
G279_FILE="codec_g729-ast${AST_VERSION}-gcc4-glibc-pentium2.so"
|
||||||
|
else
|
||||||
|
G273_FILE="codec_g723-ast${AST_VERSION}-gcc4-glibc-x86_64-pentium4.so"
|
||||||
|
G279_FILE="codec_g729-ast${AST_VERSION}-gcc4-glibc-x86_64-pentium4.so"
|
||||||
|
fi
|
||||||
|
ASTCONV_FILE="astconv"
|
||||||
|
G729_ENC_FILE="g729_my_enc.bin"
|
||||||
|
G729_DEC_FILE="g729_my_dec.bin"
|
||||||
|
README_FILE="README.txt"
|
||||||
|
|
||||||
|
rm -rf $TMP/g72x && mkdir -p $TMP/g72x && pushd $TMP/g72x
|
||||||
|
|
||||||
|
$WGET -q $steriskhostinglv/MD5SUM
|
||||||
|
for I in astconv g729_my_enc.bin g729_my_dec.bin ; do
|
||||||
|
$WGET -q http://asterisk.hosting.lv/bin/$I
|
||||||
|
[[ "`md5sum $I`" == "`grep $I $MD5SUM_FILE`" ]] || echo Error: $I
|
||||||
|
done
|
||||||
|
rm -f MD5SUM
|
||||||
|
|
||||||
|
$WGET -q $steriskhostinglv/$MD5SUM_FILE
|
||||||
|
$WGET -q http://asterisk.hosting.lv/src/README.txt
|
||||||
|
for I in $G273_FILE $G279_FILE ; do
|
||||||
|
$WGET -q $steriskhostinglv/$I
|
||||||
|
[[ "`md5sum $I`" == "`grep $I $MD5SUM_FILE`" ]] || echo Error: $I
|
||||||
|
done
|
||||||
|
|
||||||
|
mv README.txt /usr/share/doc/asterisk/README.g72x.txt
|
||||||
|
chmod +x *
|
||||||
|
mv $G273_FILE /usr/$LIBNAME/asterisk/modules/codec_g723.so
|
||||||
|
mv $G279_FILE /usr/$LIBNAME/asterisk/modules/codec_g729.so
|
||||||
|
mv g729_my_enc.bin /usr/bin/g729_my_enc
|
||||||
|
mv g729_my_dec.bin /usr/bin/g729_my_dec
|
||||||
|
mv astconv /usr/bin/astconv
|
||||||
|
|
||||||
|
popd
|
||||||
|
|
||||||
|
rm -rf $TMP/g72x
|
||||||
|
echo The G723/G729 codecs is installed on your Asterisk.
|
||||||
|
|
106
menuselect.makedeps
Normal file
106
menuselect.makedeps
Normal file
|
@ -0,0 +1,106 @@
|
||||||
|
MENUSELECT_DEPENDS_app_mysql=MYSQLCLIENT
|
||||||
|
MENUSELECT_DEPENDS_cdr_mysql=MYSQLCLIENT
|
||||||
|
MENUSELECT_DEPENDS_chan_mobile=BLUETOOTH
|
||||||
|
MENUSELECT_DEPENDS_res_config_mysql=MYSQLCLIENT
|
||||||
|
MENUSELECT_DEPENDS_app_flash=DAHDI
|
||||||
|
MENUSELECT_DEPENDS_app_page=DAHDI
|
||||||
|
MENUSELECT_DEPENDS_app_dahdibarge=DAHDI
|
||||||
|
MENUSELECT_DEPENDS_app_fax=SPANDSP
|
||||||
|
MENUSELECT_DEPENDS_app_osplookup=OSPTK OPENSSL
|
||||||
|
MENUSELECT_DEPENDS_app_meetme=DAHDI
|
||||||
|
MENUSELECT_DEPENDS_app_rpt=DAHDI TONEZONE
|
||||||
|
MENUSELECT_DEPENDS_app_jack=JACK RESAMPLE
|
||||||
|
MENUSELECT_DEPENDS_app_dahdiras=DAHDI
|
||||||
|
MENUSELECT_DEPENDS_cdr_tds=FREETDS
|
||||||
|
MENUSELECT_DEPENDS_cdr_sqlite3_custom=SQLITE3
|
||||||
|
MENUSELECT_DEPENDS_cdr_syslog=SYSLOG
|
||||||
|
MENUSELECT_DEPENDS_cdr_radius=RADIUS
|
||||||
|
MENUSELECT_DEPENDS_cdr_pgsql=PGSQL
|
||||||
|
MENUSELECT_DEPENDS_cdr_sqlite=SQLITE
|
||||||
|
MENUSELECT_DEPENDS_cel_sqlite3_custom=SQLITE3
|
||||||
|
MENUSELECT_DEPENDS_cel_radius=RADIUS
|
||||||
|
MENUSELECT_DEPENDS_cel_pgsql=PGSQL
|
||||||
|
MENUSELECT_DEPENDS_cel_tds=FREETDS
|
||||||
|
MENUSELECT_DEPENDS_chan_gtalk=IKSEMEL OPENSSL
|
||||||
|
MENUSELECT_DEPENDS_chan_usbradio=OSS ALSA USB
|
||||||
|
MENUSELECT_DEPENDS_chan_nbs=NBS
|
||||||
|
MENUSELECT_DEPENDS_chan_dahdi=DAHDI TONEZONE PRI SS7 OPENR2
|
||||||
|
MENUSELECT_DEPENDS_chan_iax2=CRYPTO
|
||||||
|
MENUSELECT_DEPENDS_chan_oss=OSS
|
||||||
|
MENUSELECT_DEPENDS_chan_phone=IXJUSER
|
||||||
|
MENUSELECT_DEPENDS_chan_h323=OPENH323
|
||||||
|
MENUSELECT_DEPENDS_chan_jingle=IKSEMEL OPENSSL
|
||||||
|
MENUSELECT_DEPENDS_chan_alsa=ALSA
|
||||||
|
MENUSELECT_DEPENDS_chan_misdn=ISDNNET MISDN SUPPSERV
|
||||||
|
MENUSELECT_DEPENDS_chan_console=PORTAUDIO
|
||||||
|
MENUSELECT_DEPENDS_chan_vpb=VPB
|
||||||
|
MENUSELECT_DEPENDS_codec_speex=SPEEX SPEEX_PREPROCESS SPEEXDSP
|
||||||
|
MENUSELECT_DEPENDS_codec_dahdi=DAHDI
|
||||||
|
MENUSELECT_DEPENDS_codec_gsm=GSM
|
||||||
|
MENUSELECT_DEPENDS_codec_resample=RESAMPLE
|
||||||
|
MENUSELECT_DEPENDS_format_ogg_vorbis=VORBIS OGG
|
||||||
|
MENUSELECT_DEPENDS_func_iconv=ICONV
|
||||||
|
MENUSELECT_DEPENDS_func_speex=SPEEX SPEEX_PREPROCESS SPEEXDSP
|
||||||
|
MENUSELECT_DEPENDS_func_curl=CURL
|
||||||
|
MENUSELECT_DEPENDS_func_aes=CRYPTO
|
||||||
|
MENUSELECT_DEPENDS_pbx_lua=LUA
|
||||||
|
MENUSELECT_DEPENDS_pbx_dundi=ZLIB CRYPTO
|
||||||
|
MENUSELECT_DEPENDS_res_http_post=GMIME
|
||||||
|
MENUSELECT_DEPENDS_res_curl=CURL
|
||||||
|
MENUSELECT_DEPENDS_res_jabber=IKSEMEL OPENSSL
|
||||||
|
MENUSELECT_DEPENDS_res_timing_dahdi=DAHDI
|
||||||
|
MENUSELECT_DEPENDS_res_timing_timerfd=TIMERFD
|
||||||
|
MENUSELECT_DEPENDS_res_config_curl=CURL
|
||||||
|
MENUSELECT_DEPENDS_res_odbc=GENERIC_ODBC LTDL
|
||||||
|
MENUSELECT_DEPENDS_res_ais=AIS
|
||||||
|
MENUSELECT_DEPENDS_res_calendar_ews=NEON29
|
||||||
|
MENUSELECT_DEPENDS_res_crypto=OPENSSL
|
||||||
|
MENUSELECT_DEPENDS_res_config_ldap=LDAP
|
||||||
|
MENUSELECT_DEPENDS_res_config_pgsql=PGSQL
|
||||||
|
MENUSELECT_DEPENDS_res_calendar_caldav=NEON ICAL LIBXML2
|
||||||
|
MENUSELECT_DEPENDS_res_snmp=NETSNMP
|
||||||
|
MENUSELECT_DEPENDS_res_config_sqlite=SQLITE
|
||||||
|
MENUSELECT_DEPENDS_res_calendar_icalendar=NEON ICAL
|
||||||
|
MENUSELECT_DEPENDS_res_srtp=SRTP
|
||||||
|
MENUSELECT_DEPENDS_res_fax_spandsp=SPANDSP
|
||||||
|
MENUSELECT_DEPENDS_res_calendar_exchange=NEON ICAL IKSEMEL
|
||||||
|
MENUSELECT_DEPENDS_res_timing_kqueue=KQUEUE
|
||||||
|
MENUSELECT_DEPENDS_test_netsock2=TEST_FRAMEWORK
|
||||||
|
MENUSELECT_DEPENDS_test_substitution=TEST_FRAMEWORK
|
||||||
|
MENUSELECT_DEPENDS_test_acl=TEST_FRAMEWORK
|
||||||
|
MENUSELECT_DEPENDS_test_event=TEST_FRAMEWORK
|
||||||
|
MENUSELECT_DEPENDS_test_stringfields=TEST_FRAMEWORK
|
||||||
|
MENUSELECT_DEPENDS_test_aoc=TEST_FRAMEWORK
|
||||||
|
MENUSELECT_DEPENDS_test_func_file=TEST_FRAMEWORK
|
||||||
|
MENUSELECT_DEPENDS_test_gosub=TEST_FRAMEWORK
|
||||||
|
MENUSELECT_DEPENDS_test_heap=TEST_FRAMEWORK
|
||||||
|
MENUSELECT_DEPENDS_test_devicestate=TEST_FRAMEWORK
|
||||||
|
MENUSELECT_DEPENDS_test_pbx=TEST_FRAMEWORK
|
||||||
|
MENUSELECT_DEPENDS_test_expr=TEST_FRAMEWORK
|
||||||
|
MENUSELECT_DEPENDS_test_time=TEST_FRAMEWORK
|
||||||
|
MENUSELECT_DEPENDS_test_app=TEST_FRAMEWORK
|
||||||
|
MENUSELECT_DEPENDS_test_db=TEST_FRAMEWORK
|
||||||
|
MENUSELECT_DEPENDS_test_utils=TEST_FRAMEWORK
|
||||||
|
MENUSELECT_DEPENDS_test_strings=TEST_FRAMEWORK
|
||||||
|
MENUSELECT_DEPENDS_test_ast_format_str_reduce=TEST_FRAMEWORK
|
||||||
|
MENUSELECT_DEPENDS_test_sched=TEST_FRAMEWORK
|
||||||
|
MENUSELECT_DEPENDS_test_poll=TEST_FRAMEWORK
|
||||||
|
MENUSELECT_DEPENDS_test_astobj2=TEST_FRAMEWORK
|
||||||
|
MENUSELECT_DEPENDS_test_skel=TEST_FRAMEWORK
|
||||||
|
MENUSELECT_DEPENDS_REBUILD_PARSERS=BISON FLEX
|
||||||
|
MENUSELECT_DEPENDS_USE_HOARD_ALLOCATOR=HOARD
|
||||||
|
MENUSELECT_DEPENDS_ODBC_STORAGE=GENERIC_ODBC LTDL
|
||||||
|
MENUSELECT_DEPENDS_IMAP_STORAGE=IMAP_TK OPENSSL
|
||||||
|
MENUSELECT_DEPENDS_astman=NEWT
|
||||||
|
MENUSELECT_DEPENDS_smsq=POPT
|
||||||
|
MENUSELECT_DEPENDS_ADDONS=GNU_LD
|
||||||
|
MENUSELECT_DEPENDS_APPS=GNU_LD
|
||||||
|
MENUSELECT_DEPENDS_BRIDGES=GNU_LD
|
||||||
|
MENUSELECT_DEPENDS_CDR=GNU_LD
|
||||||
|
MENUSELECT_DEPENDS_CHANNELS=GNU_LD
|
||||||
|
MENUSELECT_DEPENDS_CODECS=GNU_LD
|
||||||
|
MENUSELECT_DEPENDS_FORMATS=GNU_LD
|
||||||
|
MENUSELECT_DEPENDS_FUNCS=GNU_LD
|
||||||
|
MENUSELECT_DEPENDS_PBX=GNU_LD
|
||||||
|
MENUSELECT_DEPENDS_RES=GNU_LD
|
||||||
|
MENUSELECT_DEPENDS_TEST=GNU_LD
|
55
menuselect.makeopts
Normal file
55
menuselect.makeopts
Normal file
|
@ -0,0 +1,55 @@
|
||||||
|
MENUSELECT_ADDONS=
|
||||||
|
MENUSELECT_APPS=app_fax
|
||||||
|
MENUSELECT_BRIDGES=
|
||||||
|
MENUSELECT_CDR=cdr_odbc cdr_adaptive_odbc cdr_sqlite
|
||||||
|
MENUSELECT_CEL=cel_odbc
|
||||||
|
MENUSELECT_CHANNELS=chan_h323 chan_misdn chan_vpb
|
||||||
|
MENUSELECT_CODECS=
|
||||||
|
MENUSELECT_FORMATS=
|
||||||
|
MENUSELECT_FUNCS=func_odbc
|
||||||
|
MENUSELECT_PBX=
|
||||||
|
MENUSELECT_RES=res_odbc res_config_odbc res_config_sqlite res_timing_kqueue
|
||||||
|
MENUSELECT_TESTS=test_netsock2 test_substitution test_acl test_event test_locale test_stringfields test_aoc test_func_file test_gosub test_heap test_devicestate test_security_events test_pbx test_expr test_amihooks test_time test_app test_dlinklists test_db test_utils test_logger test_strings test_ast_format_str_reduce test_sched test_poll test_astobj2 test_skel
|
||||||
|
MENUSELECT_CFLAGS=LOADABLE_MODULES USE_HOARD_ALLOCATOR G711_NEW_ALGORITHM G711_REDUCED_BRANCHING TEST_CODING_TABLES TEST_TANDEM_TRANSCODING
|
||||||
|
MENUSELECT_OPTS_app_voicemail=FILE_STORAGE
|
||||||
|
MENUSELECT_UTILS=aelparse astcanary astman check_expr check_expr2 conf2ael hashtest hashtest2 muted refcounter smsq stereorize streamplayer
|
||||||
|
MENUSELECT_AGIS=agi-test.agi eagi-test eagi-sphinx-test jukebox.agi
|
||||||
|
MENUSELECT_EMBED=
|
||||||
|
MENUSELECT_CORE_SOUNDS=
|
||||||
|
MENUSELECT_MOH=
|
||||||
|
MENUSELECT_EXTRA_SOUNDS=
|
||||||
|
MENUSELECT_BUILD_DEPS=res_adsi res_smdi res_monitor app_meetme res_agi chan_local app_voicemail res_jabber res_pktccops res_crypto res_ael_share res_fax chan_usbradio
|
||||||
|
MENUSELECT_DEPSFAILED=MENUSELECT_CDR=cdr_odbc
|
||||||
|
MENUSELECT_DEPSFAILED=MENUSELECT_CDR=cdr_adaptive_odbc
|
||||||
|
MENUSELECT_DEPSFAILED=MENUSELECT_CDR=cdr_sqlite
|
||||||
|
MENUSELECT_DEPSFAILED=MENUSELECT_CEL=cel_odbc
|
||||||
|
MENUSELECT_DEPSFAILED=MENUSELECT_CHANNELS=chan_h323
|
||||||
|
MENUSELECT_DEPSFAILED=MENUSELECT_CHANNELS=chan_misdn
|
||||||
|
MENUSELECT_DEPSFAILED=MENUSELECT_CHANNELS=chan_vpb
|
||||||
|
MENUSELECT_DEPSFAILED=MENUSELECT_FUNCS=func_odbc
|
||||||
|
MENUSELECT_DEPSFAILED=MENUSELECT_RES=res_odbc
|
||||||
|
MENUSELECT_DEPSFAILED=MENUSELECT_RES=res_config_odbc
|
||||||
|
MENUSELECT_DEPSFAILED=MENUSELECT_RES=res_config_sqlite
|
||||||
|
MENUSELECT_DEPSFAILED=MENUSELECT_RES=res_timing_kqueue
|
||||||
|
MENUSELECT_DEPSFAILED=MENUSELECT_TESTS=test_netsock2
|
||||||
|
MENUSELECT_DEPSFAILED=MENUSELECT_TESTS=test_substitution
|
||||||
|
MENUSELECT_DEPSFAILED=MENUSELECT_TESTS=test_acl
|
||||||
|
MENUSELECT_DEPSFAILED=MENUSELECT_TESTS=test_event
|
||||||
|
MENUSELECT_DEPSFAILED=MENUSELECT_TESTS=test_stringfields
|
||||||
|
MENUSELECT_DEPSFAILED=MENUSELECT_TESTS=test_aoc
|
||||||
|
MENUSELECT_DEPSFAILED=MENUSELECT_TESTS=test_func_file
|
||||||
|
MENUSELECT_DEPSFAILED=MENUSELECT_TESTS=test_gosub
|
||||||
|
MENUSELECT_DEPSFAILED=MENUSELECT_TESTS=test_heap
|
||||||
|
MENUSELECT_DEPSFAILED=MENUSELECT_TESTS=test_devicestate
|
||||||
|
MENUSELECT_DEPSFAILED=MENUSELECT_TESTS=test_pbx
|
||||||
|
MENUSELECT_DEPSFAILED=MENUSELECT_TESTS=test_expr
|
||||||
|
MENUSELECT_DEPSFAILED=MENUSELECT_TESTS=test_time
|
||||||
|
MENUSELECT_DEPSFAILED=MENUSELECT_TESTS=test_app
|
||||||
|
MENUSELECT_DEPSFAILED=MENUSELECT_TESTS=test_db
|
||||||
|
MENUSELECT_DEPSFAILED=MENUSELECT_TESTS=test_utils
|
||||||
|
MENUSELECT_DEPSFAILED=MENUSELECT_TESTS=test_strings
|
||||||
|
MENUSELECT_DEPSFAILED=MENUSELECT_TESTS=test_ast_format_str_reduce
|
||||||
|
MENUSELECT_DEPSFAILED=MENUSELECT_TESTS=test_sched
|
||||||
|
MENUSELECT_DEPSFAILED=MENUSELECT_TESTS=test_poll
|
||||||
|
MENUSELECT_DEPSFAILED=MENUSELECT_TESTS=test_astobj2
|
||||||
|
MENUSELECT_DEPSFAILED=MENUSELECT_TESTS=test_skel
|
Loading…
Add table
Reference in a new issue