[SCM] rel2gpx branch, master, updated. upstream/0.26-12-gcfbfc1b

2013-10-06 Thread Andreas Tille
The following commit has been merged in the master branch: commit cfbfc1bcd208164bd0936bf33bb25c159dc0078b Merge: 7241f43d0b07f5d2bbf385cf3437561326c45fa9 31bf76bb90da1d4f4e0eea2b613e99504f4c618e Author: Andreas Tille Date: Sun Oct 6 23:08:06 2013 +0200 Merge branch 'master' of ssh://git.d

[SCM] rel2gpx branch, master, updated. upstream/0.26-12-gcfbfc1b

2013-10-06 Thread Andreas Tille
The following commit has been merged in the master branch: commit 7241f43d0b07f5d2bbf385cf3437561326c45fa9 Author: Andreas Tille Date: Thu Sep 19 11:12:39 2013 +0200 Close ITP and upload to unstable diff --git a/debian/changelog b/debian/changelog index 75a1f29..7b2ef66 100644 --- a/debian

[SCM] rel2gpx annotated tag, upstream/0.26, created. upstream/0.26

2013-10-06 Thread Andreas Tille
The annotated tag, upstream/0.26 has been created at 1cdee358f54d7f21c1fc8441673d0c83fc7813dd (tag) tagging f008f85bf5616d9857e4694e2e10b5e1e2ac2319 (commit) tagged by Andreas Tille on Thu Sep 12 21:31:09 2013 +0200 - Shortlog ---

[SCM] rel2gpx tag, debian/0.26-1, created. 31bf76bb90da1d4f4e0eea2b613e99504f4c618e

2013-10-06 Thread Andreas Tille
The tag, debian/0.26-1 has been created at 31bf76bb90da1d4f4e0eea2b613e99504f4c618e (commit) - Shortlog commit 31bf76bb90da1d4f4e0eea2b613e99504f4c618e Author: Andreas Tille Date: Sun Oct 6 23:02:21 2013 +0200 Accepted i

[SCM] rel2gpx branch, master, updated. 31bf76bb90da1d4f4e0eea2b613e99504f4c618e

2013-10-06 Thread Andreas Tille
The following commit has been merged in the master branch: commit 31bf76bb90da1d4f4e0eea2b613e99504f4c618e Author: Andreas Tille Date: Sun Oct 6 23:02:21 2013 +0200 Accepted in unstable diff --git a/debian/changelog b/debian/changelog index 75a1f29..7b2ef66 100644 --- a/debian/changelog ++

Bug#725383: FTBFS on kfreebsd-*: SYS_gettid is Linux-specific

2013-10-06 Thread Petr Salinger
Is there any lwpid_t which isn't "long" and defined by kernel headers? See upstream sources: http://svnweb.freebsd.org/base/head/sys/sys/_types.h?revision=255219&view=markup typedef __int32_t __lwpid_t; /* Thread ID (a.k.a. LWP) */ And compare with http://svnweb.freebsd.org/base/head/sys/kern

[SCM] spatialite branch, master, updated. debian/4.0.0-1-20-g587cfe5

2013-10-06 Thread Bas Couwenberg
The following commit has been merged in the master branch: commit 587cfe5cf79c6817422f41f9bfe64ac188e8f992 Author: Bas Couwenberg Date: Sun Oct 6 17:33:23 2013 +0200 Fix typo in copyright. diff --git a/debian/copyright b/debian/copyright index 9dd5534..7cba41d 100644 --- a/debian/copyright

Bug#725383: FTBFS on kfreebsd-*: SYS_gettid is Linux-specific

2013-10-06 Thread Robert Millan
Petr Salinger: >> I think you can avoid this by using the primitive: >> >> lwpid_t tid; >> syscall (SYS_thr_self, &tid); > > There is a mess in kernel interfaces, > the right one is > > long tid; > syscall (SYS_thr_self, &tid); Is there any lwpid_t which isn't "long" and defined by kernel heade

Bug#725383: FTBFS on kfreebsd-*: SYS_gettid is Linux-specific

2013-10-06 Thread Petr Salinger
I think you can avoid this by using the primitive: lwpid_t tid; syscall (SYS_thr_self, &tid); There is a mess in kernel interfaces, the right one is long tid; syscall (SYS_thr_self, &tid); But it holds only for current pthread implementation, it can be changed anytime. Petr ___