diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2010-06-09 09:02:37 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2010-06-09 09:02:37 +0000 |
commit | b94537f180f8193e485a88f178857f3c8af6955c (patch) | |
tree | 2355bd7136376998372dc3fe7c26d6e39486fca8 /main | |
parent | df41d8f169f98412989bfd811beea619c3289262 (diff) | |
download | aports-b94537f180f8193e485a88f178857f3c8af6955c.tar.bz2 aports-b94537f180f8193e485a88f178857f3c8af6955c.tar.xz |
main/freeswitch: use /dev/urandom instead of /dev/random
fixes #327
Diffstat (limited to 'main')
-rw-r--r-- | main/freeswitch/APKBUILD | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/main/freeswitch/APKBUILD b/main/freeswitch/APKBUILD index 6560ffe108..1f9407ecd0 100644 --- a/main/freeswitch/APKBUILD +++ b/main/freeswitch/APKBUILD @@ -1,7 +1,7 @@ # Contributor: Michael Mason <ms13sp@gmail.com> pkgname=freeswitch pkgver=1.0.6 -pkgrel=7 +pkgrel=8 pkgdesc="A communications platform written in C from the ground up" url="http://www.freeswitch.org" license="GPL" @@ -30,6 +30,8 @@ build() { --with-rundir=/var/run/freeswitch \ --mandir=/usr/share/man \ --infodir=/usr/share/info \ + --with-devrandom=/dev/urandom \ + || return 1 make all || return 1 } |