summaryrefslogtreecommitdiff
path: root/comms/asterisk18/options.mk
diff options
context:
space:
mode:
authorjnemeth <jnemeth@pkgsrc.org>2011-07-16 21:35:11 +0000
committerjnemeth <jnemeth@pkgsrc.org>2011-07-16 21:35:11 +0000
commit41a3f743d0bd4a8f3961a15e79629b609d081618 (patch)
tree363a8eab1b925b6634883a6db274e3eed9bd218a /comms/asterisk18/options.mk
parentd084120ee614acf12666c5c0e48401575ce61277 (diff)
downloadpkgsrc-41a3f743d0bd4a8f3961a15e79629b609d081618.tar.gz
Update to Asterisk 1.8.5.0: this is a general bug fix release
The release of Asterisk 1.8.5.0 resolves several issues reported by the community and would have not been possible without your participation. Thank you! The following is a sample of the issues resolved in this release: * Fix Deadlock with attended transfer of SIP call * Fixes thread blocking issue in the sip TCP/TLS implementation. * Be more tolerant of what URI we accept for call completion PUBLISH requests. * Fix a nasty chanspy bug which was causing a channel leak every time a spied on channel made a call. * This patch fixes a bug with MeetMe behavior where the 'P' option for always prompting for a pin is ignored for the first caller. * Fix issue where Asterisk does not hangup a channel after endpoint hangs up. If the call that the dialplan started an AGI script for is hungup while the AGI script is in the middle of a command then the AGI script is not notified of the hangup. * Resolve issue where leaving a voicemail, the MWI message is never sent. The same thing happens when checking a voicemail and marking it as read. * Resolve issue where wait for leader with Music On Hold allows crosstalk between participants. Parenthesis in the wrong position. Regression from issue #14365 when expanding conference flags to use 64 bits. For a full list of changes in this release, please see the ChangeLog: http://downloads.asterisk.org/pub/telephony/asterisk/ChangeLog-1.8.5.0 Thank you for your continued support of Asterisk!
Diffstat (limited to 'comms/asterisk18/options.mk')
-rw-r--r--comms/asterisk18/options.mk12
1 files changed, 6 insertions, 6 deletions
diff --git a/comms/asterisk18/options.mk b/comms/asterisk18/options.mk
index 433245151c2..009415904a3 100644
--- a/comms/asterisk18/options.mk
+++ b/comms/asterisk18/options.mk
@@ -1,4 +1,4 @@
-# $NetBSD: options.mk,v 1.2 2011/02/06 08:30:17 jnemeth Exp $
+# $NetBSD: options.mk,v 1.3 2011/07/16 21:35:11 jnemeth Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.asterisk
PKG_SUPPORTED_OPTIONS= zaptel x11 unixodbc ilbc webvmail ldap spandsp
@@ -18,16 +18,16 @@ PLIST_VARS+= zaptel x11 unixodbc ilbc webvmail ldap spandsp
#MAKE_FLAGS+= WITHOUT_ZAPTEL=1
#.endif
-# gtkconsole depends on GTK 1.x
+# gtkconsole depends on GTK 2.x
.if !empty(PKG_OPTIONS:Mx11)
-. include "../../x11/gtk/buildlink3.mk"
+. include "../../x11/gtk2/buildlink3.mk"
. include "../../devel/SDL/buildlink3.mk"
CONFIGURE_ARGS+= --with-sdl
-CONFIGURE_ARGS+= --with-gtk
+CONFIGURE_ARGS+= --with-gtk2
PLIST.x11= yes
.else
CONFIGURE_ARGS+= --without-sdl
-CONFIGURE_ARGS+= --without-gtk
+CONFIGURE_ARGS+= --without-gtk2
.endif
.if !empty(PKG_OPTIONS:Munixodbc)
@@ -38,7 +38,7 @@ CONFIGURE_ARGS+= --with-unixodbc
PLIST.unixodbc= yes
.else
CONFIGURE_ARGS+= --without-ltdl
-CONFIGURE_ARGS+= --without-odbc
+CONFIGURE_ARGS+= --without-unixodbc
.endif
.if !empty(PKG_OPTIONS:Milbc)