summaryrefslogtreecommitdiff
path: root/community/qlandkartegt
diff options
context:
space:
mode:
authorNicolas Reynolds <fauno@kiwwwi.com.ar>2011-05-28 02:45:35 -0300
committerNicolas Reynolds <fauno@kiwwwi.com.ar>2011-05-28 02:45:35 -0300
commita6ee13798647ec09fb33e316a90ef6ed0b7f314a (patch)
tree815ded684a1ee9e4c23c2f03c98691b9272243c1 /community/qlandkartegt
parentc3b94090a6330f678ade2f767e76ab7802d3463e (diff)
parent4d22176132f4a830ab0cc510dabbc9f8c1c362ea (diff)
Merge branch 'master' of ssh://vparabola/home/parabola/abslibre-pre-mips64el
Conflicts: community/csfml/PKGBUILD community/evolution-rss/PKGBUILD community/inn/PKGBUILD community/libssh2/PKGBUILD community/perl-xml-dom/PKGBUILD community/php52/PKGBUILD community/python-pysfml/PKGBUILD community/skype-call-recorder/PKGBUILD extra/ipod-sharp/PKGBUILD extra/madwifi-utils/PKGBUILD extra/madwifi/PKGBUILD
Diffstat (limited to 'community/qlandkartegt')
-rw-r--r--community/qlandkartegt/gpsd-2.96.patch49
1 files changed, 0 insertions, 49 deletions
diff --git a/community/qlandkartegt/gpsd-2.96.patch b/community/qlandkartegt/gpsd-2.96.patch
deleted file mode 100644
index 634e9ad7e..000000000
--- a/community/qlandkartegt/gpsd-2.96.patch
+++ /dev/null
@@ -1,49 +0,0 @@
-$NetBSD: patch-ab,v 1.1 2011/03/31 20:21:34 drochner Exp $
-
-for gpsd-2.96
-
---- src/CDeviceGPSD.h.orig 2011-03-15 20:13:04.000000000 +0000
-+++ src/CDeviceGPSD.h
-@@ -56,7 +56,7 @@ class CGPSDThread : public QThread
- protected:
- virtual void run();
-
-- gps_data_t* gpsdata;
-+ gps_data_t* gpsdata, gpsdata_store;
-
- bool decodeData();
-
-$NetBSD: patch-ac,v 1.1 2011/03/31 20:21:34 drochner Exp $
-
-for gpsd-2.96
-
---- src/CDeviceGPSD.cpp.orig 2011-03-15 20:13:04.000000000 +0000
-+++ src/CDeviceGPSD.cpp
-@@ -138,6 +138,7 @@ CGPSDThread::CGPSDThread( int _pipe_fd )
- log_mutex( new QMutex() ),
- pipe_fd( _pipe_fd )
- {
-+ gpsdata = &gpsdata_store;
- }
-
-
-@@ -149,8 +150,8 @@ CGPSDThread::~CGPSDThread()
-
- void CGPSDThread::run()
- {
-- gpsdata = gps_open( "localhost", DEFAULT_GPSD_PORT );
-- if( !gpsdata )
-+ int res = gps_open( "localhost", DEFAULT_GPSD_PORT, gpsdata );
-+ if( res )
- {
- // TODO: message box (from other thread)
- qDebug() << "gps_open failed.";
-@@ -187,7 +188,7 @@ void CGPSDThread::run()
- } // if
- else if( FD_ISSET( gpsdata->gps_fd, &fds ) )
- {
-- gps_poll( gpsdata );
-+ gps_read( gpsdata );
- if( !decodeData() ) break;
- } // else if
- } // else if