[asterisk-commits] russell: branch russell/events r92447 - in /team/russell/events: ./ apps/ cha...

SVN commits to the Asterisk project asterisk-commits at lists.digium.com
Wed Dec 12 10:33:39 CST 2007


Author: russell
Date: Wed Dec 12 10:33:39 2007
New Revision: 92447

URL: http://svn.digium.com/view/asterisk?view=rev&rev=92447
Log:
resolve, reset

Modified:
    team/russell/events/   (props changed)
    team/russell/events/apps/app_queue.c
    team/russell/events/channels/DialTone.h
    team/russell/events/channels/chan_sip.c
    team/russell/events/channels/chan_zap.c
    team/russell/events/channels/gentone.c
    team/russell/events/channels/iax2.h
    team/russell/events/channels/misdn/chan_misdn_config.h
    team/russell/events/channels/misdn/ie.c
    team/russell/events/channels/misdn/isdn_lib.c
    team/russell/events/channels/misdn/isdn_lib.h
    team/russell/events/channels/misdn/isdn_msg_parser.c
    team/russell/events/channels/misdn/portinfo.c
    team/russell/events/channels/ringtone.h
    team/russell/events/configure
    team/russell/events/configure.ac
    team/russell/events/include/asterisk/autoconfig.h.in
    team/russell/events/include/asterisk/doxyref.h
    team/russell/events/include/asterisk/manager.h
    team/russell/events/include/asterisk/term.h
    team/russell/events/include/asterisk/transcap.h
    team/russell/events/include/asterisk/translate.h
    team/russell/events/include/asterisk/udptl.h
    team/russell/events/include/asterisk/ulaw.h
    team/russell/events/include/asterisk/zapata.h
    team/russell/events/include/jitterbuf.h
    team/russell/events/main/cygload.c

Propchange: team/russell/events/
------------------------------------------------------------------------------
    automerge = *

Propchange: team/russell/events/
------------------------------------------------------------------------------
Binary property 'branch-1.4-merged' - no diff available.

Propchange: team/russell/events/
------------------------------------------------------------------------------
--- svnmerge-integrated (original)
+++ svnmerge-integrated Wed Dec 12 10:33:39 2007
@@ -1,1 +1,1 @@
-/trunk:1-92418
+/trunk:1-92446

Modified: team/russell/events/apps/app_queue.c
URL: http://svn.digium.com/view/asterisk/team/russell/events/apps/app_queue.c?view=diff&rev=92447&r1=92446&r2=92447
==============================================================================
--- team/russell/events/apps/app_queue.c (original)
+++ team/russell/events/apps/app_queue.c Wed Dec 12 10:33:39 2007
@@ -2196,7 +2196,6 @@
 	const char *queue = qe->parent->name;
 	struct callattempt *o;
 	int status;
-	int sentringing = 0;
 	int numbusies = prebusies;
 	int numnochan = 0;
 	int stillgoing = 0;
@@ -2370,12 +2369,6 @@
 							break;
 						case AST_CONTROL_RINGING:
 							ast_verb(3, "%s is ringing\n", o->chan->name);
-							if (!sentringing) {
-#if 0
-								ast_indicate(in, AST_CONTROL_RINGING);
-#endif								
-								sentringing++;
-							}
 							break;
 						case AST_CONTROL_OFFHOOK:
 							/* Ignore going off hook */

Modified: team/russell/events/channels/DialTone.h
URL: http://svn.digium.com/view/asterisk/team/russell/events/channels/DialTone.h?view=diff&rev=92447&r1=92446&r2=92447
==============================================================================
--- team/russell/events/channels/DialTone.h (original)
+++ team/russell/events/channels/DialTone.h Wed Dec 12 10:33:39 2007
@@ -8,6 +8,11 @@
   * Distributed under the terms of the GNU General Public License
   *
   */
+
+/*! \file
+ * \brief
+ * 8-bit raw data
+ */
 
 static unsigned char DialTone[] = {
 0xff, 0xab, 0x9d, 0x96, 0x91, 0x90, 0x91, 0x96, 0x9c, 0xaa, 

Modified: team/russell/events/channels/chan_sip.c
URL: http://svn.digium.com/view/asterisk/team/russell/events/channels/chan_sip.c?view=diff&rev=92447&r1=92446&r2=92447
==============================================================================
--- team/russell/events/channels/chan_sip.c (original)
+++ team/russell/events/channels/chan_sip.c Wed Dec 12 10:33:39 2007
@@ -2200,14 +2200,16 @@
 	 *    when passed to ast_apply_ha() so it does need to be remapped.
 	 *    This fourth condition is checked later.
 	 */
-	int want_remap = localaddr &&
-		(externip.sin_addr.s_addr || stunaddr.sin_addr.s_addr) &&
-		ast_apply_ha(localaddr, &theirs) == AST_SENSE_ALLOW ;
+	int want_remap;
 
 	*us = internip;		/* starting guess for the internal address */
 	/* now ask the system what would it use to talk to 'them' */
 	ast_ouraddrfor(them, &us->sin_addr);
 	theirs.sin_addr = *them;
+
+	want_remap = localaddr &&
+		(externip.sin_addr.s_addr || stunaddr.sin_addr.s_addr) &&
+		ast_apply_ha(localaddr, &theirs) == AST_SENSE_ALLOW ;
 
 	if (want_remap &&
 	    (!global_matchexterniplocally || !ast_apply_ha(localaddr, us)) ) {

Modified: team/russell/events/channels/chan_zap.c
URL: http://svn.digium.com/view/asterisk/team/russell/events/channels/chan_zap.c?view=diff&rev=92447&r1=92446&r2=92447
==============================================================================
--- team/russell/events/channels/chan_zap.c (original)
+++ team/russell/events/channels/chan_zap.c Wed Dec 12 10:33:39 2007
@@ -11683,6 +11683,7 @@
 	return CLI_SUCCESS;
 }
 
+#ifdef HAVE_ZAPTEL_HWGAIN
 static char *zap_set_hwgain(struct ast_cli_entry *e, int cmd, struct ast_cli_args *a)
 {
 	int channel;
@@ -11753,6 +11754,7 @@
 	return CLI_FAILURE;
 
 }
+#endif
 
 static char *zap_set_swgain(struct ast_cli_entry *e, int cmd, struct ast_cli_args *a)
 {
@@ -11836,7 +11838,9 @@
 	AST_CLI_DEFINE(zap_restart_cmd, "Fully restart zaptel channels"),
 	AST_CLI_DEFINE(zap_show_status, "Show all Zaptel cards status"),
 	AST_CLI_DEFINE(zap_show_version, "Show the Zaptel version in use"),
+#ifdef HAVE_ZAPTEL_HWGAIN
 	AST_CLI_DEFINE(zap_set_hwgain, "Set hardware gains at the port driver"),
+#endif
 	AST_CLI_DEFINE(zap_set_swgain, "Set software gain table values"),
 };
 

Modified: team/russell/events/channels/gentone.c
URL: http://svn.digium.com/view/asterisk/team/russell/events/channels/gentone.c?view=diff&rev=92447&r1=92446&r2=92447
==============================================================================
--- team/russell/events/channels/gentone.c (original)
+++ team/russell/events/channels/gentone.c Wed Dec 12 10:33:39 2007
@@ -1,5 +1,10 @@
 /* Generate a header file for a particular 
    single or double frequency */
+
+/*! \file
+ * \brief
+ * Generate a header file for a particular single or double frequency 
+ */
 
 #include <stdio.h>
 #include <math.h>

Modified: team/russell/events/channels/iax2.h
URL: http://svn.digium.com/view/asterisk/team/russell/events/channels/iax2.h?view=diff&rev=92447&r1=92446&r2=92447
==============================================================================
--- team/russell/events/channels/iax2.h (original)
+++ team/russell/events/channels/iax2.h Wed Dec 12 10:33:39 2007
@@ -9,6 +9,15 @@
  *
  * This program is free software, distributed under the terms of
  * the GNU General Public License
+ */
+
+/*! \file
+ * \brief
+ *
+ * Implementation of Inter-Asterisk eXchange, version 2
+ * \ref iax2-parser.c
+ * \ref iax2-parser.h
+ * \ref chan_iax2.c
  */
  
 #ifndef _IAX2_H

Modified: team/russell/events/channels/misdn/chan_misdn_config.h
URL: http://svn.digium.com/view/asterisk/team/russell/events/channels/misdn/chan_misdn_config.h?view=diff&rev=92447&r1=92446&r2=92447
==============================================================================
--- team/russell/events/channels/misdn/chan_misdn_config.h (original)
+++ team/russell/events/channels/misdn/chan_misdn_config.h Wed Dec 12 10:33:39 2007
@@ -10,6 +10,12 @@
  * This program is free software, distributed under the terms of
  * the GNU General Public License
  */
+
+/*! \file \brief
+ * Interface to mISDN - Config
+ * \author Christian Richter <crich at beronet.com>
+ */
+
 
 
 

Modified: team/russell/events/channels/misdn/ie.c
URL: http://svn.digium.com/view/asterisk/team/russell/events/channels/misdn/ie.c?view=diff&rev=92447&r1=92446&r2=92447
==============================================================================
--- team/russell/events/channels/misdn/ie.c (original)
+++ team/russell/events/channels/misdn/ie.c Wed Dec 12 10:33:39 2007
@@ -13,6 +13,11 @@
  *
  * This program is free software, distributed under the terms of
  * the GNU General Public License
+ */
+
+/*! \file \brief
+ * Interface to mISDN
+ * \author Christian Richter <crich at beronet.com>
  */
 
 /*

Modified: team/russell/events/channels/misdn/isdn_lib.c
URL: http://svn.digium.com/view/asterisk/team/russell/events/channels/misdn/isdn_lib.c?view=diff&rev=92447&r1=92446&r2=92447
==============================================================================
--- team/russell/events/channels/misdn/isdn_lib.c (original)
+++ team/russell/events/channels/misdn/isdn_lib.c Wed Dec 12 10:33:39 2007
@@ -10,6 +10,12 @@
  * This program is free software, distributed under the terms of
  * the GNU General Public License
  */
+
+/*! \file \brief
+ * Interface to mISDN
+ * \author Christian Richter <crich at beronet.com>
+ */
+
 
 
 #include <syslog.h>

Modified: team/russell/events/channels/misdn/isdn_lib.h
URL: http://svn.digium.com/view/asterisk/team/russell/events/channels/misdn/isdn_lib.h?view=diff&rev=92447&r1=92446&r2=92447
==============================================================================
--- team/russell/events/channels/misdn/isdn_lib.h (original)
+++ team/russell/events/channels/misdn/isdn_lib.h Wed Dec 12 10:33:39 2007
@@ -9,6 +9,13 @@
  *
  * This program is free software, distributed under the terms of
  * the GNU General Public License
+ */
+
+/*! \file \brief
+ * 
+ * Interface to mISDN
+ *
+ * \author Christian Richter <crich at beronet.com>
  */
 
 #ifndef TE_LIB

Modified: team/russell/events/channels/misdn/isdn_msg_parser.c
URL: http://svn.digium.com/view/asterisk/team/russell/events/channels/misdn/isdn_msg_parser.c?view=diff&rev=92447&r1=92446&r2=92447
==============================================================================
--- team/russell/events/channels/misdn/isdn_msg_parser.c (original)
+++ team/russell/events/channels/misdn/isdn_msg_parser.c Wed Dec 12 10:33:39 2007
@@ -10,6 +10,12 @@
  * This program is free software, distributed under the terms of
  * the GNU General Public License
  */
+
+/*! \file \brief
+ * Interface to mISDN - message parser
+ * \author Christian Richter <crich at beronet.com>
+ */
+
 
 
 #include "isdn_lib_intern.h"

Modified: team/russell/events/channels/misdn/portinfo.c
URL: http://svn.digium.com/view/asterisk/team/russell/events/channels/misdn/portinfo.c?view=diff&rev=92447&r1=92446&r2=92447
==============================================================================
--- team/russell/events/channels/misdn/portinfo.c (original)
+++ team/russell/events/channels/misdn/portinfo.c Wed Dec 12 10:33:39 2007
@@ -1,3 +1,7 @@
+/*! \file \brief
+ * Interface to mISDN - ???
+ * \author Christian Richter <crich at beronet.com>
+ */
 
 
 #include "isdn_lib.h"

Modified: team/russell/events/channels/ringtone.h
URL: http://svn.digium.com/view/asterisk/team/russell/events/channels/ringtone.h?view=diff&rev=92447&r1=92446&r2=92447
==============================================================================
--- team/russell/events/channels/ringtone.h (original)
+++ team/russell/events/channels/ringtone.h Wed Dec 12 10:33:39 2007
@@ -1,5 +1,9 @@
 /* ringtone.h: Generated from frequencies 440 and 480 
    by gentone.  200 samples  */
+/*! \file
+    \brief
+ Generated from frequencies 440 and 480 by gentone.  200 samples 
+*/
 static short ringtone[200] = {
 	    0, 11581, 21659, 28927, 32445, 31764, 26981, 18727, 
 	 8084, -3559, -14693, -23875, -29927, -32083, -30088, -24228, 

Modified: team/russell/events/configure
URL: http://svn.digium.com/view/asterisk/team/russell/events/configure?view=diff&rev=92447&r1=92446&r2=92447
==============================================================================
--- team/russell/events/configure (original)
+++ team/russell/events/configure Wed Dec 12 10:33:39 2007
@@ -1,5 +1,5 @@
 #! /bin/sh
-# From configure.ac Revision: 88266 .
+# From configure.ac Revision: 89700 .
 # Guess values for system-dependent variables and create Makefiles.
 # Generated by GNU Autoconf 2.61.
 #
@@ -893,6 +893,10 @@
 VPB_INCLUDE
 VPB_DIR
 PBX_VPB
+X11_LIB
+X11_INCLUDE
+X11_DIR
+PBX_X11
 ZLIB_LIB
 ZLIB_INCLUDE
 ZLIB_DIR
@@ -909,9 +913,22 @@
 ZAPTEL_VLDTMF_INCLUDE
 ZAPTEL_VLDTMF_DIR
 PBX_ZAPTEL_VLDTMF
+SDL_LIB
+SDL_INCLUDE
+SDL_DIR
+PBX_SDL
+SDL_IMAGE_LIB
+SDL_IMAGE_INCLUDE
+SDL_IMAGE_DIR
+PBX_SDL_IMAGE
+FFMPEG_LIB
+FFMPEG_INCLUDE
+FFMPEG_DIR
+PBX_FFMPEG
 ALLOCA
 LIBOBJS
 POW_LIB
+HAS_POLL
 GC_CFLAGS
 GC_LDFLAGS
 AST_DECLARATION_AFTER_STATEMENT
@@ -934,6 +951,7 @@
 EDITLINE_LIB
 PBX_H323
 PBX_IXJUSER
+CONFIG_SDL
 GTKCONFIG
 PBX_GTK
 GTK_INCLUDE
@@ -1543,7 +1561,8 @@
   --with-curl=PATH        use cURL files in PATH
   --with-curses=PATH      use curses files in PATH
   --with-crypto=PATH      use OpenSSL Cryptography support files in PATH
-  --with-gsm=PATH         use GSM files in PATH , or 'internal'
+  --with-gsm=PATH         use External GSM library files in PATH , use
+                          'internal' GSM otherwise
   --with-iksemel=PATH     use Iksemel Jabber Library files in PATH
   --with-imap=PATH        use UW IMAP Toolkit files in PATH
   --with-isdnnet=PATH     use ISDN4Linux Library files in PATH
@@ -1582,12 +1601,16 @@
   --with-usb=PATH         use usb files in PATH
   --with-vorbis=PATH      use Vorbis files in PATH
   --with-vpb=PATH         use Voicetronix API files in PATH
+  --with-x11=PATH         use X11 support files in PATH
   --with-z=PATH           use zlib files in PATH
   --with-zaptel=PATH      use Zaptel files in PATH
   --with-zaptel_transcode=PATH
                           use Zaptel_transcode files in PATH
   --with-zaptel_vldtmf=PATH
                           use Zaptel_vldtmf files in PATH
+  --with-sdl=PATH         use Sdl files in PATH
+  --with-SDL_image=PATH   use Sdl Image library files in PATH
+  --with-avcodec=PATH     use Ffmpeg and avcodec library files in PATH
 
 Some influential environment variables:
   CC          C compiler command
@@ -4030,7 +4053,7 @@
      OSARCH=SunOS
      ;;
      *)
-     OSARCH=${HOST_OS}
+     OSARCH=${host_os}
      ;;
 esac
 
@@ -7664,31 +7687,32 @@
 
 
 # package option names should be in alphabetical order
-# by the --with option name, to make things easier for the users :-)
-
-
-ALSA_DESCRIP="Advanced Linux Sound Architecture"
-ALSA_OPTION="asound"
+# by the --with option name (the third field),
+# to make things easier for the users.
+
+
+    ALSA_DESCRIP="Advanced Linux Sound Architecture"
+    ALSA_OPTION="asound"
 
 # Check whether --with-asound was given.
 if test "${with_asound+set}" = set; then
   withval=$with_asound;
-case ${withval} in
-     n|no)
-     USE_ALSA=no
-     ;;
-     y|ye|yes)
-     ac_mandatory_list="${ac_mandatory_list} ALSA"
-     ;;
-     *)
-     ALSA_DIR="${withval}"
-     ac_mandatory_list="${ac_mandatory_list} ALSA"
-     ;;
-esac
-
-fi
-
-PBX_ALSA=0
+	case ${withval} in
+	n|no)
+	USE_ALSA=no
+	;;
+	y|ye|yes)
+	ac_mandatory_list="${ac_mandatory_list} ALSA"
+	;;
+	*)
+	ALSA_DIR="${withval}"
+	ac_mandatory_list="${ac_mandatory_list} ALSA"
+	;;
+	esac
+
+fi
+
+    PBX_ALSA=0
 
 
 
@@ -7698,1316 +7722,1429 @@
 # BKTR is used for backtrace support on platforms that do not
 # have it natively.
 
-BKTR_DESCRIP="Stack Backtrace support"
-BKTR_OPTION="execinfo"
+    BKTR_DESCRIP="Stack Backtrace support"
+    BKTR_OPTION="execinfo"
 
 # Check whether --with-execinfo was given.
 if test "${with_execinfo+set}" = set; then
   withval=$with_execinfo;
-case ${withval} in
-     n|no)
-     USE_BKTR=no
-     ;;
-     y|ye|yes)
-     ac_mandatory_list="${ac_mandatory_list} BKTR"
-     ;;
-     *)
-     BKTR_DIR="${withval}"
-     ac_mandatory_list="${ac_mandatory_list} BKTR"
-     ;;
-esac
-
-fi
-
-PBX_BKTR=0
-
-
-
-
-
-
-CAP_DESCRIP="POSIX 1.e capabilities"
-CAP_OPTION="cap"
+	case ${withval} in
+	n|no)
+	USE_BKTR=no
+	;;
+	y|ye|yes)
+	ac_mandatory_list="${ac_mandatory_list} BKTR"
+	;;
+	*)
+	BKTR_DIR="${withval}"
+	ac_mandatory_list="${ac_mandatory_list} BKTR"
+	;;
+	esac
+
+fi
+
+    PBX_BKTR=0
+
+
+
+
+
+
+    CAP_DESCRIP="POSIX 1.e capabilities"
+    CAP_OPTION="cap"
 
 # Check whether --with-cap was given.
 if test "${with_cap+set}" = set; then
   withval=$with_cap;
-case ${withval} in
-     n|no)
-     USE_CAP=no
-     ;;
-     y|ye|yes)
-     ac_mandatory_list="${ac_mandatory_list} CAP"
-     ;;
-     *)
-     CAP_DIR="${withval}"
-     ac_mandatory_list="${ac_mandatory_list} CAP"
-     ;;
-esac
-
-fi
-
-PBX_CAP=0
-
-
-
-
-
-
-CURL_DESCRIP="cURL"
-CURL_OPTION="curl"
+	case ${withval} in
+	n|no)
+	USE_CAP=no
+	;;
+	y|ye|yes)
+	ac_mandatory_list="${ac_mandatory_list} CAP"
+	;;
+	*)
+	CAP_DIR="${withval}"
+	ac_mandatory_list="${ac_mandatory_list} CAP"
+	;;
+	esac
+
+fi
+
+    PBX_CAP=0
+
+
+
+
+
+
+    CURL_DESCRIP="cURL"
+    CURL_OPTION="curl"
 
 # Check whether --with-curl was given.
 if test "${with_curl+set}" = set; then
   withval=$with_curl;
-case ${withval} in
-     n|no)
-     USE_CURL=no
-     ;;
-     y|ye|yes)
-     ac_mandatory_list="${ac_mandatory_list} CURL"
-     ;;
-     *)
-     CURL_DIR="${withval}"
-     ac_mandatory_list="${ac_mandatory_list} CURL"
-     ;;
-esac
-
-fi
-
-PBX_CURL=0
-
-
-
-
-
-
-CURSES_DESCRIP="curses"
-CURSES_OPTION="curses"
+	case ${withval} in
+	n|no)
+	USE_CURL=no
+	;;
+	y|ye|yes)
+	ac_mandatory_list="${ac_mandatory_list} CURL"
+	;;
+	*)
+	CURL_DIR="${withval}"
+	ac_mandatory_list="${ac_mandatory_list} CURL"
+	;;
+	esac
+
+fi
+
+    PBX_CURL=0
+
+
+
+
+
+
+    CURSES_DESCRIP="curses"
+    CURSES_OPTION="curses"
 
 # Check whether --with-curses was given.
 if test "${with_curses+set}" = set; then
   withval=$with_curses;
-case ${withval} in
-     n|no)
-     USE_CURSES=no
-     ;;
-     y|ye|yes)
-     ac_mandatory_list="${ac_mandatory_list} CURSES"
-     ;;
-     *)
-     CURSES_DIR="${withval}"
-     ac_mandatory_list="${ac_mandatory_list} CURSES"
-     ;;
-esac
-
-fi
-
-PBX_CURSES=0
-
-
-
-
-
-
-CRYPTO_DESCRIP="OpenSSL Cryptography support"
-CRYPTO_OPTION="crypto"
+	case ${withval} in
+	n|no)
+	USE_CURSES=no
+	;;
+	y|ye|yes)
+	ac_mandatory_list="${ac_mandatory_list} CURSES"
+	;;
+	*)
+	CURSES_DIR="${withval}"
+	ac_mandatory_list="${ac_mandatory_list} CURSES"
+	;;
+	esac
+
+fi
+
+    PBX_CURSES=0
+
+
+
+
+
+
+    CRYPTO_DESCRIP="OpenSSL Cryptography support"
+    CRYPTO_OPTION="crypto"
 
 # Check whether --with-crypto was given.
 if test "${with_crypto+set}" = set; then
   withval=$with_crypto;
-case ${withval} in
-     n|no)
-     USE_CRYPTO=no
-     ;;
-     y|ye|yes)
-     ac_mandatory_list="${ac_mandatory_list} CRYPTO"
-     ;;
-     *)
-     CRYPTO_DIR="${withval}"
-     ac_mandatory_list="${ac_mandatory_list} CRYPTO"
-     ;;
-esac
-
-fi
-
-PBX_CRYPTO=0
-
-
-
-
-
-
-GSM_DESCRIP="GSM"
-GSM_OPTION="gsm"
+	case ${withval} in
+	n|no)
+	USE_CRYPTO=no
+	;;
+	y|ye|yes)
+	ac_mandatory_list="${ac_mandatory_list} CRYPTO"
+	;;
+	*)
+	CRYPTO_DIR="${withval}"
+	ac_mandatory_list="${ac_mandatory_list} CRYPTO"
+	;;
+	esac
+
+fi
+
+    PBX_CRYPTO=0
+
+
+
+
+
+
+    GSM_DESCRIP="External GSM library"
+    GSM_OPTION="gsm"
 
 # Check whether --with-gsm was given.
 if test "${with_gsm+set}" = set; then
   withval=$with_gsm;
-case ${withval} in
-     n|no)
-     USE_GSM=no
-     ;;
-     y|ye|yes)
-     ac_mandatory_list="${ac_mandatory_list} GSM"
-     ;;
-     *)
-     GSM_DIR="${withval}"
-     ac_mandatory_list="${ac_mandatory_list} GSM"
-     ;;
-esac
-
-fi
-
-PBX_GSM=0
-
-
-
-
-
-
-IKSEMEL_DESCRIP="Iksemel Jabber Library"
-IKSEMEL_OPTION="iksemel"
+	case ${withval} in
+	n|no)
+	USE_GSM=no
+	;;
+	y|ye|yes)
+	ac_mandatory_list="${ac_mandatory_list} GSM"
+	;;
+	*)
+	GSM_DIR="${withval}"
+	ac_mandatory_list="${ac_mandatory_list} GSM"
+	;;
+	esac
+
+fi
+
+    PBX_GSM=0
+
+
+
+
+
+
+    IKSEMEL_DESCRIP="Iksemel Jabber Library"
+    IKSEMEL_OPTION="iksemel"
 
 # Check whether --with-iksemel was given.
 if test "${with_iksemel+set}" = set; then
   withval=$with_iksemel;
-case ${withval} in
-     n|no)
-     USE_IKSEMEL=no
-     ;;
-     y|ye|yes)
-     ac_mandatory_list="${ac_mandatory_list} IKSEMEL"
-     ;;
-     *)
-     IKSEMEL_DIR="${withval}"
-     ac_mandatory_list="${ac_mandatory_list} IKSEMEL"
-     ;;
-esac
-
-fi
-
-PBX_IKSEMEL=0
-
-
-
-
-
-
-IMAP_TK_DESCRIP="UW IMAP Toolkit"
-IMAP_TK_OPTION="imap"
+	case ${withval} in
+	n|no)
+	USE_IKSEMEL=no
+	;;
+	y|ye|yes)
+	ac_mandatory_list="${ac_mandatory_list} IKSEMEL"
+	;;
+	*)
+	IKSEMEL_DIR="${withval}"
+	ac_mandatory_list="${ac_mandatory_list} IKSEMEL"
+	;;
+	esac
+
+fi
+
+    PBX_IKSEMEL=0
+
+
+
+
+
+
+    IMAP_TK_DESCRIP="UW IMAP Toolkit"
+    IMAP_TK_OPTION="imap"
 
 # Check whether --with-imap was given.
 if test "${with_imap+set}" = set; then
   withval=$with_imap;
-case ${withval} in
-     n|no)
-     USE_IMAP_TK=no
-     ;;
-     y|ye|yes)
-     ac_mandatory_list="${ac_mandatory_list} IMAP_TK"
-     ;;
-     *)
-     IMAP_TK_DIR="${withval}"
-     ac_mandatory_list="${ac_mandatory_list} IMAP_TK"
-     ;;
-esac
-
-fi
-
-PBX_IMAP_TK=0
-
-
-
-
-
-
-ISDNNET_DESCRIP="ISDN4Linux Library"
-ISDNNET_OPTION="isdnnet"
+	case ${withval} in
+	n|no)
+	USE_IMAP_TK=no
+	;;
+	y|ye|yes)
+	ac_mandatory_list="${ac_mandatory_list} IMAP_TK"
+	;;
+	*)
+	IMAP_TK_DIR="${withval}"
+	ac_mandatory_list="${ac_mandatory_list} IMAP_TK"
+	;;
+	esac
+
+fi
+
+    PBX_IMAP_TK=0
+
+
+
+
+
+
+    ISDNNET_DESCRIP="ISDN4Linux Library"
+    ISDNNET_OPTION="isdnnet"
 
 # Check whether --with-isdnnet was given.
 if test "${with_isdnnet+set}" = set; then
   withval=$with_isdnnet;
-case ${withval} in
-     n|no)
-     USE_ISDNNET=no
-     ;;
-     y|ye|yes)
-     ac_mandatory_list="${ac_mandatory_list} ISDNNET"
-     ;;
-     *)
-     ISDNNET_DIR="${withval}"
-     ac_mandatory_list="${ac_mandatory_list} ISDNNET"
-     ;;
-esac
-
-fi
-
-PBX_ISDNNET=0
-
-
-
-
-
-
-KDE_DESCRIP="KDE"
-KDE_OPTION="kde"
+	case ${withval} in
+	n|no)
+	USE_ISDNNET=no
+	;;
+	y|ye|yes)
+	ac_mandatory_list="${ac_mandatory_list} ISDNNET"
+	;;
+	*)
+	ISDNNET_DIR="${withval}"
+	ac_mandatory_list="${ac_mandatory_list} ISDNNET"
+	;;
+	esac
+
+fi
+
+    PBX_ISDNNET=0
+
+
+
+
+
+
+    KDE_DESCRIP="KDE"
+    KDE_OPTION="kde"
 
 # Check whether --with-kde was given.
 if test "${with_kde+set}" = set; then
   withval=$with_kde;
-case ${withval} in
-     n|no)
-     USE_KDE=no
-     ;;
-     y|ye|yes)
-     ac_mandatory_list="${ac_mandatory_list} KDE"
-     ;;
-     *)
-     KDE_DIR="${withval}"
-     ac_mandatory_list="${ac_mandatory_list} KDE"
-     ;;
-esac
-
-fi
-
-PBX_KDE=0
-
-
-
-
-
-
-LTDL_DESCRIP="libtool"
-LTDL_OPTION="ltdl"
+	case ${withval} in
+	n|no)
+	USE_KDE=no
+	;;
+	y|ye|yes)
+	ac_mandatory_list="${ac_mandatory_list} KDE"
+	;;
+	*)
+	KDE_DIR="${withval}"
+	ac_mandatory_list="${ac_mandatory_list} KDE"
+	;;
+	esac
+
+fi
+
+    PBX_KDE=0
+
+
+
+
+
+
+    LTDL_DESCRIP="libtool"
+    LTDL_OPTION="ltdl"
 
 # Check whether --with-ltdl was given.
 if test "${with_ltdl+set}" = set; then
   withval=$with_ltdl;
-case ${withval} in
-     n|no)
-     USE_LTDL=no
-     ;;
-     y|ye|yes)
-     ac_mandatory_list="${ac_mandatory_list} LTDL"
-     ;;
-     *)
-     LTDL_DIR="${withval}"
-     ac_mandatory_list="${ac_mandatory_list} LTDL"
-     ;;
-esac
-
-fi
-
-PBX_LTDL=0
-
-
-
-
-
-
-LUA_DESCRIP="Lua"
-LUA_OPTION="lua"
+	case ${withval} in
+	n|no)
+	USE_LTDL=no
+	;;
+	y|ye|yes)
+	ac_mandatory_list="${ac_mandatory_list} LTDL"
+	;;
+	*)
+	LTDL_DIR="${withval}"
+	ac_mandatory_list="${ac_mandatory_list} LTDL"
+	;;
+	esac
+
+fi
+
+    PBX_LTDL=0
+
+
+
+
+
+
+    LUA_DESCRIP="Lua"
+    LUA_OPTION="lua"
 
 # Check whether --with-lua was given.
 if test "${with_lua+set}" = set; then
   withval=$with_lua;
-case ${withval} in
-     n|no)
-     USE_LUA=no
-     ;;
-     y|ye|yes)
-     ac_mandatory_list="${ac_mandatory_list} LUA"
-     ;;
-     *)
-     LUA_DIR="${withval}"
-     ac_mandatory_list="${ac_mandatory_list} LUA"
-     ;;
-esac
-
-fi
-
-PBX_LUA=0
-
-
-
-
-
-
-MISDN_DESCRIP="mISDN User Library"
-MISDN_OPTION="misdn"
+	case ${withval} in
+	n|no)
+	USE_LUA=no
+	;;
+	y|ye|yes)
+	ac_mandatory_list="${ac_mandatory_list} LUA"
+	;;
+	*)
+	LUA_DIR="${withval}"
+	ac_mandatory_list="${ac_mandatory_list} LUA"
+	;;
+	esac
+
+fi
+
+    PBX_LUA=0
+
+
+
+
+
+
+    MISDN_DESCRIP="mISDN User Library"
+    MISDN_OPTION="misdn"
 
 # Check whether --with-misdn was given.
 if test "${with_misdn+set}" = set; then
   withval=$with_misdn;
-case ${withval} in
-     n|no)
-     USE_MISDN=no
-     ;;
-     y|ye|yes)
-     ac_mandatory_list="${ac_mandatory_list} MISDN"
-     ;;
-     *)
-     MISDN_DIR="${withval}"
-     ac_mandatory_list="${ac_mandatory_list} MISDN"
-     ;;
-esac
-
-fi
-
-PBX_MISDN=0
-
-
-
-
-
-
-NBS_DESCRIP="Network Broadcast Sound"
-NBS_OPTION="nbs"
+	case ${withval} in
+	n|no)
+	USE_MISDN=no
+	;;
+	y|ye|yes)
+	ac_mandatory_list="${ac_mandatory_list} MISDN"
+	;;
+	*)
+	MISDN_DIR="${withval}"
+	ac_mandatory_list="${ac_mandatory_list} MISDN"
+	;;
+	esac
+
+fi
+
+    PBX_MISDN=0
+
+
+
+
+
+
+    NBS_DESCRIP="Network Broadcast Sound"
+    NBS_OPTION="nbs"
 
 # Check whether --with-nbs was given.
 if test "${with_nbs+set}" = set; then
   withval=$with_nbs;
-case ${withval} in
-     n|no)
-     USE_NBS=no
-     ;;
-     y|ye|yes)
-     ac_mandatory_list="${ac_mandatory_list} NBS"
-     ;;
-     *)
-     NBS_DIR="${withval}"
-     ac_mandatory_list="${ac_mandatory_list} NBS"
-     ;;
-esac
-
-fi
-
-PBX_NBS=0
-
-
-
-
-
-
-NCURSES_DESCRIP="ncurses"
-NCURSES_OPTION="ncurses"
+	case ${withval} in
+	n|no)
+	USE_NBS=no
+	;;
+	y|ye|yes)
+	ac_mandatory_list="${ac_mandatory_list} NBS"
+	;;
+	*)
+	NBS_DIR="${withval}"
+	ac_mandatory_list="${ac_mandatory_list} NBS"
+	;;
+	esac
+
+fi
+
+    PBX_NBS=0
+
+
+
+
+
+
+    NCURSES_DESCRIP="ncurses"
+    NCURSES_OPTION="ncurses"
 
 # Check whether --with-ncurses was given.
 if test "${with_ncurses+set}" = set; then
   withval=$with_ncurses;
-case ${withval} in
-     n|no)
-     USE_NCURSES=no
-     ;;
-     y|ye|yes)
-     ac_mandatory_list="${ac_mandatory_list} NCURSES"
-     ;;
-     *)
-     NCURSES_DIR="${withval}"
-     ac_mandatory_list="${ac_mandatory_list} NCURSES"
-     ;;
-esac
-
-fi
-
-PBX_NCURSES=0
-
-
-
-
-
-
-NETSNMP_DESCRIP="Net-SNMP"
-NETSNMP_OPTION="netsnmp"
+	case ${withval} in
+	n|no)
+	USE_NCURSES=no
+	;;
+	y|ye|yes)
+	ac_mandatory_list="${ac_mandatory_list} NCURSES"
+	;;
+	*)
+	NCURSES_DIR="${withval}"
+	ac_mandatory_list="${ac_mandatory_list} NCURSES"
+	;;
+	esac
+
+fi
+
+    PBX_NCURSES=0
+
+
+
+
+
+
+    NETSNMP_DESCRIP="Net-SNMP"
+    NETSNMP_OPTION="netsnmp"
 
 # Check whether --with-netsnmp was given.
 if test "${with_netsnmp+set}" = set; then
   withval=$with_netsnmp;
-case ${withval} in
-     n|no)
-     USE_NETSNMP=no
-     ;;
-     y|ye|yes)
-     ac_mandatory_list="${ac_mandatory_list} NETSNMP"
-     ;;
-     *)
-     NETSNMP_DIR="${withval}"
-     ac_mandatory_list="${ac_mandatory_list} NETSNMP"
-     ;;
-esac
-
-fi
-
-PBX_NETSNMP=0
-
-
-
-
-
-
-NEWT_DESCRIP="newt"
-NEWT_OPTION="newt"
+	case ${withval} in
+	n|no)
+	USE_NETSNMP=no
+	;;
+	y|ye|yes)
+	ac_mandatory_list="${ac_mandatory_list} NETSNMP"
+	;;
+	*)
+	NETSNMP_DIR="${withval}"
+	ac_mandatory_list="${ac_mandatory_list} NETSNMP"
+	;;
+	esac
+
+fi
+
+    PBX_NETSNMP=0
+
+
+
+
+
+
+    NEWT_DESCRIP="newt"
+    NEWT_OPTION="newt"
 
 # Check whether --with-newt was given.
 if test "${with_newt+set}" = set; then
   withval=$with_newt;
-case ${withval} in
-     n|no)
-     USE_NEWT=no
-     ;;
-     y|ye|yes)
-     ac_mandatory_list="${ac_mandatory_list} NEWT"
-     ;;
-     *)
-     NEWT_DIR="${withval}"
-     ac_mandatory_list="${ac_mandatory_list} NEWT"
-     ;;
-esac
-
-fi
-
-PBX_NEWT=0
-
-
-
-
-
-
-UNIXODBC_DESCRIP="unixODBC"
-UNIXODBC_OPTION="odbc"
+	case ${withval} in
+	n|no)
+	USE_NEWT=no
+	;;
+	y|ye|yes)
+	ac_mandatory_list="${ac_mandatory_list} NEWT"
+	;;
+	*)
+	NEWT_DIR="${withval}"
+	ac_mandatory_list="${ac_mandatory_list} NEWT"
+	;;
+	esac
+
+fi
+
+    PBX_NEWT=0
+
+
+
+
+
+
+    UNIXODBC_DESCRIP="unixODBC"
+    UNIXODBC_OPTION="odbc"
 
 # Check whether --with-odbc was given.
 if test "${with_odbc+set}" = set; then
   withval=$with_odbc;
-case ${withval} in
-     n|no)
-     USE_UNIXODBC=no
-     ;;
-     y|ye|yes)
-     ac_mandatory_list="${ac_mandatory_list} UNIXODBC"
-     ;;
-     *)
-     UNIXODBC_DIR="${withval}"
-     ac_mandatory_list="${ac_mandatory_list} UNIXODBC"
-     ;;
-esac
-
-fi
-
-PBX_UNIXODBC=0
-
-
-
-
-
-
-OGG_DESCRIP="OGG"
-OGG_OPTION="ogg"
+	case ${withval} in
+	n|no)
+	USE_UNIXODBC=no
+	;;
+	y|ye|yes)
+	ac_mandatory_list="${ac_mandatory_list} UNIXODBC"
+	;;
+	*)
+	UNIXODBC_DIR="${withval}"
+	ac_mandatory_list="${ac_mandatory_list} UNIXODBC"
+	;;
+	esac
+
+fi
+
+    PBX_UNIXODBC=0
+
+
+
+
+
+
+    OGG_DESCRIP="OGG"
+    OGG_OPTION="ogg"
 
 # Check whether --with-ogg was given.
 if test "${with_ogg+set}" = set; then
   withval=$with_ogg;
-case ${withval} in
-     n|no)
-     USE_OGG=no
-     ;;
-     y|ye|yes)
-     ac_mandatory_list="${ac_mandatory_list} OGG"
-     ;;
-     *)
-     OGG_DIR="${withval}"
-     ac_mandatory_list="${ac_mandatory_list} OGG"
-     ;;
-esac
-
-fi
-
-PBX_OGG=0
-
-
-
-
-
-
-OSPTK_DESCRIP="OSP Toolkit"
-OSPTK_OPTION="osptk"
+	case ${withval} in
+	n|no)
+	USE_OGG=no
+	;;
+	y|ye|yes)
+	ac_mandatory_list="${ac_mandatory_list} OGG"
+	;;
+	*)
+	OGG_DIR="${withval}"
+	ac_mandatory_list="${ac_mandatory_list} OGG"
+	;;
+	esac
+
+fi
+
+    PBX_OGG=0
+
+
+
+
+
+
+    OSPTK_DESCRIP="OSP Toolkit"
+    OSPTK_OPTION="osptk"
 
 # Check whether --with-osptk was given.
 if test "${with_osptk+set}" = set; then
   withval=$with_osptk;
-case ${withval} in
-     n|no)
-     USE_OSPTK=no
-     ;;
-     y|ye|yes)
-     ac_mandatory_list="${ac_mandatory_list} OSPTK"
-     ;;
-     *)
-     OSPTK_DIR="${withval}"
-     ac_mandatory_list="${ac_mandatory_list} OSPTK"
-     ;;
-esac
-
-fi
-
-PBX_OSPTK=0
-
-
-
-
-
-
-OSS_DESCRIP="Open Sound System"
-OSS_OPTION="oss"
+	case ${withval} in
+	n|no)
+	USE_OSPTK=no
+	;;
+	y|ye|yes)
+	ac_mandatory_list="${ac_mandatory_list} OSPTK"
+	;;
+	*)
+	OSPTK_DIR="${withval}"
+	ac_mandatory_list="${ac_mandatory_list} OSPTK"
+	;;
+	esac
+
+fi
+
+    PBX_OSPTK=0
+
+
+
+
+
+
+    OSS_DESCRIP="Open Sound System"
+    OSS_OPTION="oss"
 
 # Check whether --with-oss was given.
 if test "${with_oss+set}" = set; then
   withval=$with_oss;
-case ${withval} in
-     n|no)
-     USE_OSS=no
-     ;;
-     y|ye|yes)
-     ac_mandatory_list="${ac_mandatory_list} OSS"
-     ;;
-     *)
-     OSS_DIR="${withval}"
-     ac_mandatory_list="${ac_mandatory_list} OSS"
-     ;;
-esac
-
-fi
-
-PBX_OSS=0
-
-
-
-
-
-
-POPT_DESCRIP="popt"
-POPT_OPTION="popt"
+	case ${withval} in
+	n|no)
+	USE_OSS=no
+	;;
+	y|ye|yes)
+	ac_mandatory_list="${ac_mandatory_list} OSS"
+	;;
+	*)
+	OSS_DIR="${withval}"
+	ac_mandatory_list="${ac_mandatory_list} OSS"
+	;;
+	esac
+
+fi
+
+    PBX_OSS=0
+
+
+
+
+
+
+    POPT_DESCRIP="popt"
+    POPT_OPTION="popt"
 
 # Check whether --with-popt was given.
 if test "${with_popt+set}" = set; then
   withval=$with_popt;
-case ${withval} in
-     n|no)
-     USE_POPT=no
-     ;;
-     y|ye|yes)
-     ac_mandatory_list="${ac_mandatory_list} POPT"
-     ;;
-     *)
-     POPT_DIR="${withval}"
-     ac_mandatory_list="${ac_mandatory_list} POPT"
-     ;;
-esac
-
-fi
-
-PBX_POPT=0
-
-
-
-
-
-
-PGSQL_DESCRIP="PostgreSQL"
-PGSQL_OPTION="postgres"
+	case ${withval} in
+	n|no)
+	USE_POPT=no
+	;;
+	y|ye|yes)
+	ac_mandatory_list="${ac_mandatory_list} POPT"
+	;;
+	*)
+	POPT_DIR="${withval}"
+	ac_mandatory_list="${ac_mandatory_list} POPT"
+	;;
+	esac
+
+fi
+
+    PBX_POPT=0
+
+
+
+
+
+
+    PGSQL_DESCRIP="PostgreSQL"
+    PGSQL_OPTION="postgres"
 
 # Check whether --with-postgres was given.
 if test "${with_postgres+set}" = set; then
   withval=$with_postgres;
-case ${withval} in
-     n|no)
-     USE_PGSQL=no
-     ;;
-     y|ye|yes)
-     ac_mandatory_list="${ac_mandatory_list} PGSQL"
-     ;;
-     *)
-     PGSQL_DIR="${withval}"
-     ac_mandatory_list="${ac_mandatory_list} PGSQL"
-     ;;
-esac
-
-fi
-
-PBX_PGSQL=0
-
-
-
-
-
-
-PRI_DESCRIP="ISDN PRI"
-PRI_OPTION="pri"
+	case ${withval} in
+	n|no)
+	USE_PGSQL=no
+	;;
+	y|ye|yes)
+	ac_mandatory_list="${ac_mandatory_list} PGSQL"
+	;;
+	*)
+	PGSQL_DIR="${withval}"
+	ac_mandatory_list="${ac_mandatory_list} PGSQL"
+	;;
+	esac
+
+fi
+
+    PBX_PGSQL=0
+
+
+
+
+
+
+    PRI_DESCRIP="ISDN PRI"
+    PRI_OPTION="pri"
 
 # Check whether --with-pri was given.
 if test "${with_pri+set}" = set; then
   withval=$with_pri;
-case ${withval} in
-     n|no)
-     USE_PRI=no
-     ;;
-     y|ye|yes)
-     ac_mandatory_list="${ac_mandatory_list} PRI"
-     ;;
-     *)
-     PRI_DIR="${withval}"
-     ac_mandatory_list="${ac_mandatory_list} PRI"
-     ;;
-esac
-
-fi
-
-PBX_PRI=0
-
-
-
-
-
-
-SS7_DESCRIP="ISDN SS7"
-SS7_OPTION="ss7"
+	case ${withval} in
+	n|no)
+	USE_PRI=no
+	;;
+	y|ye|yes)
+	ac_mandatory_list="${ac_mandatory_list} PRI"
+	;;
+	*)
+	PRI_DIR="${withval}"
+	ac_mandatory_list="${ac_mandatory_list} PRI"
+	;;
+	esac
+
+fi
+
+    PBX_PRI=0
+
+
+
+
+
+
+    SS7_DESCRIP="ISDN SS7"
+    SS7_OPTION="ss7"
 
 # Check whether --with-ss7 was given.
 if test "${with_ss7+set}" = set; then
   withval=$with_ss7;
-case ${withval} in
-     n|no)
-     USE_SS7=no
-     ;;
-     y|ye|yes)
-     ac_mandatory_list="${ac_mandatory_list} SS7"
-     ;;
-     *)
-     SS7_DIR="${withval}"
-     ac_mandatory_list="${ac_mandatory_list} SS7"
-     ;;
-esac
-
-fi
-
-PBX_SS7=0
-
-
-
-
-
-
-PWLIB_DESCRIP="PWlib"
-PWLIB_OPTION="pwlib"
+	case ${withval} in
+	n|no)
+	USE_SS7=no
+	;;
+	y|ye|yes)
+	ac_mandatory_list="${ac_mandatory_list} SS7"
+	;;
+	*)
+	SS7_DIR="${withval}"
+	ac_mandatory_list="${ac_mandatory_list} SS7"
+	;;
+	esac
+
+fi
+
+    PBX_SS7=0
+
+
+
+
+
+
+    PWLIB_DESCRIP="PWlib"
+    PWLIB_OPTION="pwlib"
 
 # Check whether --with-pwlib was given.
 if test "${with_pwlib+set}" = set; then
   withval=$with_pwlib;
-case ${withval} in
-     n|no)
-     USE_PWLIB=no
-     ;;
-     y|ye|yes)
-     ac_mandatory_list="${ac_mandatory_list} PWLIB"
-     ;;
-     *)
-     PWLIB_DIR="${withval}"
-     ac_mandatory_list="${ac_mandatory_list} PWLIB"
-     ;;
-esac
-
-fi
-
-PBX_PWLIB=0
-
-
-
-
-
-
-OPENH323_DESCRIP="OpenH323"
-OPENH323_OPTION="h323"
+	case ${withval} in
+	n|no)
+	USE_PWLIB=no
+	;;
+	y|ye|yes)
+	ac_mandatory_list="${ac_mandatory_list} PWLIB"
+	;;
+	*)
+	PWLIB_DIR="${withval}"
+	ac_mandatory_list="${ac_mandatory_list} PWLIB"
+	;;
+	esac
+
+fi
+
+    PBX_PWLIB=0
+
+
+
+
+
+
+    OPENH323_DESCRIP="OpenH323"
+    OPENH323_OPTION="h323"
 
 # Check whether --with-h323 was given.
 if test "${with_h323+set}" = set; then
   withval=$with_h323;
-case ${withval} in
-     n|no)
-     USE_OPENH323=no
-     ;;
-     y|ye|yes)
-     ac_mandatory_list="${ac_mandatory_list} OPENH323"
-     ;;
-     *)
-     OPENH323_DIR="${withval}"
-     ac_mandatory_list="${ac_mandatory_list} OPENH323"
-     ;;
-esac
-
-fi
-
-PBX_OPENH323=0
-
-
-
-
-
-
-QT_DESCRIP="Qt"
-QT_OPTION="qt"
+	case ${withval} in
+	n|no)
+	USE_OPENH323=no
+	;;
+	y|ye|yes)
+	ac_mandatory_list="${ac_mandatory_list} OPENH323"
+	;;
+	*)
+	OPENH323_DIR="${withval}"
+	ac_mandatory_list="${ac_mandatory_list} OPENH323"
+	;;
+	esac
+
+fi
+
+    PBX_OPENH323=0
+
+
+
+
+
+
+    QT_DESCRIP="Qt"
+    QT_OPTION="qt"
 
 # Check whether --with-qt was given.
 if test "${with_qt+set}" = set; then
   withval=$with_qt;
-case ${withval} in
-     n|no)
-     USE_QT=no
-     ;;
-     y|ye|yes)
-     ac_mandatory_list="${ac_mandatory_list} QT"
-     ;;
-     *)
-     QT_DIR="${withval}"
-     ac_mandatory_list="${ac_mandatory_list} QT"
-     ;;
-esac
-
-fi
-
-PBX_QT=0
-
-
-
-
-
-
-RADIUS_DESCRIP="Radius Client"
-RADIUS_OPTION="radius"
+	case ${withval} in
+	n|no)
+	USE_QT=no
+	;;
+	y|ye|yes)
+	ac_mandatory_list="${ac_mandatory_list} QT"
+	;;
+	*)
+	QT_DIR="${withval}"
+	ac_mandatory_list="${ac_mandatory_list} QT"
+	;;
+	esac
+
+fi
+
+    PBX_QT=0
+
+
+
+
+
+
+    RADIUS_DESCRIP="Radius Client"
+    RADIUS_OPTION="radius"
 
 # Check whether --with-radius was given.
 if test "${with_radius+set}" = set; then
   withval=$with_radius;
-case ${withval} in
-     n|no)
-     USE_RADIUS=no
-     ;;
-     y|ye|yes)
-     ac_mandatory_list="${ac_mandatory_list} RADIUS"
-     ;;
-     *)
-     RADIUS_DIR="${withval}"
-     ac_mandatory_list="${ac_mandatory_list} RADIUS"
-     ;;
-esac
-
-fi
-
-PBX_RADIUS=0
-
-
-
-
-
-
-SACLM_DESCRIP="SAForum AIS CLM"
-SACLM_OPTION="SaClm"
+	case ${withval} in
+	n|no)
+	USE_RADIUS=no
+	;;
+	y|ye|yes)
+	ac_mandatory_list="${ac_mandatory_list} RADIUS"
+	;;
+	*)
+	RADIUS_DIR="${withval}"
+	ac_mandatory_list="${ac_mandatory_list} RADIUS"
+	;;
+	esac
+
+fi
+
+    PBX_RADIUS=0
+
+
+
+
+
+
+    SACLM_DESCRIP="SAForum AIS CLM"
+    SACLM_OPTION="SaClm"
 
 # Check whether --with-SaClm was given.
 if test "${with_SaClm+set}" = set; then
   withval=$with_SaClm;
-case ${withval} in
-     n|no)
-     USE_SACLM=no
-     ;;
-     y|ye|yes)
-     ac_mandatory_list="${ac_mandatory_list} SACLM"
-     ;;
-     *)
-     SACLM_DIR="${withval}"
-     ac_mandatory_list="${ac_mandatory_list} SACLM"
-     ;;
-esac
-
-fi
-
-PBX_SACLM=0
-
-
-
-
-
-
-SAEVT_DESCRIP="SAForum AIS EVT"
-SAEVT_OPTION="SaEvt"
+	case ${withval} in
+	n|no)
+	USE_SACLM=no
+	;;
+	y|ye|yes)
+	ac_mandatory_list="${ac_mandatory_list} SACLM"
+	;;
+	*)
+	SACLM_DIR="${withval}"
+	ac_mandatory_list="${ac_mandatory_list} SACLM"
+	;;
+	esac
+
+fi
+
+    PBX_SACLM=0
+
+
+
+
+
+
+    SAEVT_DESCRIP="SAForum AIS EVT"
+    SAEVT_OPTION="SaEvt"
 
 # Check whether --with-SaEvt was given.
 if test "${with_SaEvt+set}" = set; then
   withval=$with_SaEvt;
-case ${withval} in
-     n|no)
-     USE_SAEVT=no
-     ;;
-     y|ye|yes)
-     ac_mandatory_list="${ac_mandatory_list} SAEVT"
-     ;;
-     *)
-     SAEVT_DIR="${withval}"
-     ac_mandatory_list="${ac_mandatory_list} SAEVT"
-     ;;
-esac
-
-fi
-
-PBX_SAEVT=0
-
-
-
-
-
-
-SPEEX_DESCRIP="Speex"
-SPEEX_OPTION="speex"
+	case ${withval} in
+	n|no)
+	USE_SAEVT=no
+	;;
+	y|ye|yes)
+	ac_mandatory_list="${ac_mandatory_list} SAEVT"
+	;;
+	*)
+	SAEVT_DIR="${withval}"
+	ac_mandatory_list="${ac_mandatory_list} SAEVT"
+	;;
+	esac
+
+fi
+
+    PBX_SAEVT=0
+
+
+
+
+
+
+    SPEEX_DESCRIP="Speex"
+    SPEEX_OPTION="speex"
 
 # Check whether --with-speex was given.
 if test "${with_speex+set}" = set; then
   withval=$with_speex;
-case ${withval} in
-     n|no)
-     USE_SPEEX=no
-     ;;
-     y|ye|yes)
-     ac_mandatory_list="${ac_mandatory_list} SPEEX"
-     ;;
-     *)
-     SPEEX_DIR="${withval}"
-     ac_mandatory_list="${ac_mandatory_list} SPEEX"
-     ;;
-esac
-
-fi
-
-PBX_SPEEX=0
-
-
-
-
-
-
-SQLITE_DESCRIP="SQLite"
-SQLITE_OPTION="sqlite"
+	case ${withval} in
+	n|no)
+	USE_SPEEX=no
+	;;
+	y|ye|yes)
+	ac_mandatory_list="${ac_mandatory_list} SPEEX"
+	;;
+	*)
+	SPEEX_DIR="${withval}"
+	ac_mandatory_list="${ac_mandatory_list} SPEEX"
+	;;
+	esac
+
+fi
+
+    PBX_SPEEX=0
+
+
+
+
+
+
+    SQLITE_DESCRIP="SQLite"
+    SQLITE_OPTION="sqlite"
 
 # Check whether --with-sqlite was given.
 if test "${with_sqlite+set}" = set; then
   withval=$with_sqlite;
-case ${withval} in
-     n|no)
-     USE_SQLITE=no
-     ;;
-     y|ye|yes)
-     ac_mandatory_list="${ac_mandatory_list} SQLITE"
-     ;;
-     *)
-     SQLITE_DIR="${withval}"
-     ac_mandatory_list="${ac_mandatory_list} SQLITE"
-     ;;
-esac
-
-fi
-
-PBX_SQLITE=0
-
-
-
-
-
-
-SQLITE3_DESCRIP="SQLite"
-SQLITE3_OPTION="sqlite3"
+	case ${withval} in
+	n|no)
+	USE_SQLITE=no
+	;;
+	y|ye|yes)
+	ac_mandatory_list="${ac_mandatory_list} SQLITE"
+	;;
+	*)
+	SQLITE_DIR="${withval}"
+	ac_mandatory_list="${ac_mandatory_list} SQLITE"
+	;;
+	esac
+
+fi
+
+    PBX_SQLITE=0
+
+
+
+
+
+
+    SQLITE3_DESCRIP="SQLite"
+    SQLITE3_OPTION="sqlite3"
 
 # Check whether --with-sqlite3 was given.
 if test "${with_sqlite3+set}" = set; then
   withval=$with_sqlite3;
-case ${withval} in
-     n|no)
-     USE_SQLITE3=no
-     ;;
-     y|ye|yes)
-     ac_mandatory_list="${ac_mandatory_list} SQLITE3"
-     ;;
-     *)
-     SQLITE3_DIR="${withval}"
-     ac_mandatory_list="${ac_mandatory_list} SQLITE3"
-     ;;
-esac
-
-fi
-
-PBX_SQLITE3=0
-
-
-
-
-
-

[... 19813 lines stripped ...]



More information about the asterisk-commits mailing list