Gentoo Archives: gentoo-commits

From: "Matthias Schwarzott (zzam)" <zzam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-vdr r665 - in gentoo-vdr-scripts/trunk: . etc/conf.d usr/share/vdr/rcscript
Date: Tue, 23 Feb 2010 21:14:35
Message-Id: E1Nk25N-0006Jb-Ub@stork.gentoo.org
1 Author: zzam
2 Date: 2010-02-23 21:14:29 +0000 (Tue, 23 Feb 2010)
3 New Revision: 665
4
5 Modified:
6 gentoo-vdr-scripts/trunk/ChangeLog
7 gentoo-vdr-scripts/trunk/etc/conf.d/vdr
8 gentoo-vdr-scripts/trunk/usr/share/vdr/rcscript/pre-start-45-nptl-check.sh
9 Log:
10 Change default of FORCE_OLD_THREADS to no. Suggested by chub in #gentoo-vdr.
11
12 Modified: gentoo-vdr-scripts/trunk/ChangeLog
13 ===================================================================
14 --- gentoo-vdr-scripts/trunk/ChangeLog 2010-01-22 20:48:47 UTC (rev 664)
15 +++ gentoo-vdr-scripts/trunk/ChangeLog 2010-02-23 21:14:29 UTC (rev 665)
16 @@ -1,6 +1,11 @@
17 # ChangeLog for gentoo-vdr-scripts
18 # $Id$
19
20 + 23 Feb 2010; Matthias Schwarzott <zzam@g.o>
21 + usr/share/vdr/rcscript/pre-start-45-nptl-check.sh, etc/conf.d/vdr:
22 + Change default of FORCE_OLD_THREADS to no. Suggested by chub in
23 + #gentoo-vdr.
24 +
25 17 Nov 2009; Matthias Schwarzott <zzam@g.o>
26 usr/share/vdr/rcscript/pre-start-30-parameter.sh, etc/init.d/vdr:
27 Use new lirc socket path if it exists. Now depend on virtual service lirc
28
29 Modified: gentoo-vdr-scripts/trunk/etc/conf.d/vdr
30 ===================================================================
31 --- gentoo-vdr-scripts/trunk/etc/conf.d/vdr 2010-01-22 20:48:47 UTC (rev 664)
32 +++ gentoo-vdr-scripts/trunk/etc/conf.d/vdr 2010-02-23 21:14:29 UTC (rev 665)
33 @@ -204,7 +204,7 @@
34 # force the use of old linux threads
35 # instead of new posix threads (NPTL)
36 # allowed values: yes no
37 -# default: yes
38 +# default: no
39 #FORCE_OLD_THREADS="yes"
40
41 # do not use vdr -u option to set user
42
43 Modified: gentoo-vdr-scripts/trunk/usr/share/vdr/rcscript/pre-start-45-nptl-check.sh
44 ===================================================================
45 --- gentoo-vdr-scripts/trunk/usr/share/vdr/rcscript/pre-start-45-nptl-check.sh 2010-01-22 20:48:47 UTC (rev 664)
46 +++ gentoo-vdr-scripts/trunk/usr/share/vdr/rcscript/pre-start-45-nptl-check.sh 2010-02-23 21:14:29 UTC (rev 665)
47 @@ -1,6 +1,6 @@
48 # $Id$
49 addon_main() {
50 - if yesno "${FORCE_OLD_THREADS:-yes}"; then
51 + if yesno "${FORCE_OLD_THREADS:-no}"; then
52 # Test wheather force of old pthreads will work
53 if LD_ASSUME_KERNEL=2.4.1 /bin/true 2>/dev/null; then
54 export LD_ASSUME_KERNEL=2.4.1