diff options
author | Timo Teräs <timo.teras@iki.fi> | 2011-03-22 14:11:27 +0200 |
---|---|---|
committer | Timo Teräs <timo.teras@iki.fi> | 2011-03-22 14:11:27 +0200 |
commit | 89a1070091a2f9bc438f8bbb6ea320086ec828e4 (patch) | |
tree | a3bfd6871665bba3346b3ede41ad8c6e615435f3 /main/vlc/APKBUILD | |
parent | 5002b2448f71b396b396d20c61e94923c4ddf67c (diff) | |
download | aports-89a1070091a2f9bc438f8bbb6ea320086ec828e4.tar.bz2 aports-89a1070091a2f9bc438f8bbb6ea320086ec828e4.tar.xz |
main/vlc: unbreak streaming of files to network
The uclibc patch disabled using of monotonic clocks for
pthread_cond_timedwait(). This was needed for LinuxThreads as it
does not support it. However, this completely breaks the NPTL build.
We really need to use the monotonic clock as that's how
pthreads_condattr_init constructions our conditions. The original
patch was flawed: it should have disabled the monotonic clock via
other ways.
Diffstat (limited to 'main/vlc/APKBUILD')
-rw-r--r-- | main/vlc/APKBUILD | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/main/vlc/APKBUILD b/main/vlc/APKBUILD index eb39d69b32..a4978b2cfb 100644 --- a/main/vlc/APKBUILD +++ b/main/vlc/APKBUILD @@ -2,7 +2,7 @@ # Maintainer: Natanael Copa <ncopa@alpinelinux.org> pkgname=vlc pkgver=1.1.7 -pkgrel=7 +pkgrel=8 pkgdesc="A multi-platform MPEG, VCD/DVD, and DivX player" url="http://www.videolan.org/vlc/" arch="all" @@ -90,6 +90,7 @@ build () --disable-optimizations \ --disable-qt4 --disable-skins2 \ --disable-rpath \ + --enable-debug \ --enable-a52 \ --enable-avcodec \ --enable-avformat \ |