Sat Jan 12 23:54:47 2008 UTC ()
Fix pthread mutex init. Bump revision.


(joerg)
diff -r1.7 -r1.8 pkgsrc/geography/gpsd/Makefile
diff -r1.6 -r1.7 pkgsrc/geography/gpsd/distinfo
diff -r0 -r1.1 pkgsrc/geography/gpsd/patches/patch-ad

cvs diff -r1.7 -r1.8 pkgsrc/geography/gpsd/Makefile (expand / switch to unified diff)

--- pkgsrc/geography/gpsd/Makefile 2006/08/31 14:12:53 1.7
+++ pkgsrc/geography/gpsd/Makefile 2008/01/12 23:54:46 1.8
@@ -1,16 +1,17 @@ @@ -1,16 +1,17 @@
1# $NetBSD: Makefile,v 1.7 2006/08/31 14:12:53 gdt Exp $ 1# $NetBSD: Makefile,v 1.8 2008/01/12 23:54:46 joerg Exp $
2 2
3DISTNAME= gpsd-2.33 3DISTNAME= gpsd-2.33
 4PKGREVISION= 1
4CATEGORIES= geography 5CATEGORIES= geography
5MASTER_SITES= http://download.berlios.de/gpsd/ 6MASTER_SITES= http://download.berlios.de/gpsd/
6 7
7MAINTAINER= tsarna@NetBSD.org 8MAINTAINER= tsarna@NetBSD.org
8HOMEPAGE= http://gpsd.berlios.de/ 9HOMEPAGE= http://gpsd.berlios.de/
9COMMENT= GPS information daemon 10COMMENT= GPS information daemon
10 11
11GNU_CONFIGURE= YES 12GNU_CONFIGURE= YES
12USE_LIBTOOL= yes 13USE_LIBTOOL= yes
13USE_LANGUAGES= c c++ 14USE_LANGUAGES= c c++
14 15
15INSTALLATION_DIRS= sbin 16INSTALLATION_DIRS= sbin
16 17

cvs diff -r1.6 -r1.7 pkgsrc/geography/gpsd/distinfo (expand / switch to unified diff)

--- pkgsrc/geography/gpsd/distinfo 2006/10/13 06:22:54 1.6
+++ pkgsrc/geography/gpsd/distinfo 2008/01/12 23:54:46 1.7
@@ -1,8 +1,9 @@ @@ -1,8 +1,9 @@
1$NetBSD: distinfo,v 1.6 2006/10/13 06:22:54 rillig Exp $ 1$NetBSD: distinfo,v 1.7 2008/01/12 23:54:46 joerg Exp $
2 2
3SHA1 (gpsd-2.33.tar.gz) = 0dbb3dad459fc4a0ca7e4ba5884e67c93d4b679f 3SHA1 (gpsd-2.33.tar.gz) = 0dbb3dad459fc4a0ca7e4ba5884e67c93d4b679f
4RMD160 (gpsd-2.33.tar.gz) = 175b90cb8dda1d85964078a4f14cec84b0cc4885 4RMD160 (gpsd-2.33.tar.gz) = 175b90cb8dda1d85964078a4f14cec84b0cc4885
5Size (gpsd-2.33.tar.gz) = 639348 bytes 5Size (gpsd-2.33.tar.gz) = 639348 bytes
6SHA1 (patch-aa) = d67077a5f857903615b36e83a2e505a20db841fe 6SHA1 (patch-aa) = d67077a5f857903615b36e83a2e505a20db841fe
7SHA1 (patch-ab) = 0703e9da1e6f34bd575c6b61f891fc13a3598bb4 7SHA1 (patch-ab) = 0703e9da1e6f34bd575c6b61f891fc13a3598bb4
8SHA1 (patch-ac) = f8e15b9a409bc9cd8b32bebbf446cf71ba90475f 8SHA1 (patch-ac) = f8e15b9a409bc9cd8b32bebbf446cf71ba90475f
 9SHA1 (patch-ad) = 25b2bd2064f8aa41c0f4eefb4b5cffdf87beadce

File Added: pkgsrc/geography/gpsd/patches/Attic/patch-ad
$NetBSD: patch-ad,v 1.1 2008/01/12 23:54:47 joerg Exp $

--- gpsd.c.orig	2006-06-09 14:34:09.000000000 +0200
+++ gpsd.c
@@ -129,7 +129,7 @@ static int daemonize(void)
 }
 
 #if defined(PPS_ENABLE)
-static pthread_mutex_t report_mutex;
+static pthread_mutex_t report_mutex = PTHREAD_MUTEX_INITIALIZER;
 #endif /* PPS_ENABLE */
 
 void gpsd_report(int errlevel, const char *fmt, ... )