Package Details: dahdi-tools 3.1.0-2

Git Clone URL: https://aur.archlinux.org/dahdi-tools.git (read-only, click to copy)
Package Base: dahdi-tools
Description: DAHDI tools for Asterisk (Digium, OpenVox, Allo and Yeastar cards)
Upstream URL: http://www.asterisk.org/
Licenses: LGPLv2
Submitter: mbroemme
Maintainer: ckoba
Last Packager: ckoba
Votes: 2
Popularity: 0.000000
First Submitted: 2015-02-10 19:19 (UTC)
Last Updated: 2021-05-22 02:09 (UTC)

Latest Comments

alerque commented on 2021-12-27 11:15 (UTC)

This is missing a dependency on dahdi-linux, it will not build without. There are issues building that package on current kernels, but I just adopted it and will try to work that out (happy to accept help if you know how). In the mean time this can at least get the missing dependency added.

ckoba commented on 2021-05-20 00:31 (UTC)

Updated to 3.1.0.

mbroemme commented on 2015-06-03 09:52 (UTC)

@atomopawn: Added, many thanks.

atomopawn commented on 2015-05-13 13:59 (UTC)

Thanks for creating these new packages. This one fails to compile for me with the new version gcc because there is an ambiguous conditional statement. Here's a patch for it: diff -rupN dahdi-tools-2.10.0.1.old/xpp/mpptalk.c dahdi-tools-2.10.0.1/xpp/mpptalk.c --- dahdi-tools-2.10.0.1.old/xpp/mpptalk.c 2015-05-12 22:26:28.469166000 -0400 +++ dahdi-tools-2.10.0.1/xpp/mpptalk.c 2015-05-12 22:27:15.231603000 -0400 @@ -512,7 +512,7 @@ int mpp_send_seg(struct astribank_device assert(astribank != NULL); xtalk_dev = astribank->xtalk_dev; - if(!astribank->burn_state == BURN_STATE_STARTED) { + if(!(astribank->burn_state == BURN_STATE_STARTED)) { ERR("Tried to send a segment while burn_state=%d\n", astribank->burn_state); return -EINVAL;