[mythtv-commits] Ticket #6433: missing include in Changeset 20303
MythTV
mythtv at cvs.mythtv.org
Tue Apr 7 14:17:16 UTC 2009
#6433: missing include in Changeset 20303
------------------------------+---------------------------------------------
Reporter: je at onfray.fr | Owner: ijr
Type: patch | Status: new
Priority: minor | Milestone: unknown
Component: MythTV - General | Version: head
Severity: medium | Mlocked: 0
------------------------------+---------------------------------------------
Trying to build todays head:
{{{
In file included from ThreadedFileWriter.cpp:17:
ThreadedFileWriter.h:46: error: ‘uint64_t’ does not name a type
ThreadedFileWriter.h:47: error: ‘uint64_t’ does not name a type
}}}
Here's a patch to include required stdint.h
{{{
Index: mythtv/libs/libmythtv/ThreadedFileWriter.h
===================================================================
--- mythtv/libs/libmythtv/ThreadedFileWriter.h (révision 20314)
+++ mythtv/libs/libmythtv/ThreadedFileWriter.h (copie de travail)
@@ -6,6 +6,7 @@
#include <qmutex.h>
#include <qwaitcondition.h>
#include <qstring.h>
+#include <stdint.h>
class ThreadedFileWriter
{
}}}
--
Ticket URL: <http://svn.mythtv.org/trac/ticket/6433>
MythTV <http://www.mythtv.org/>
MythTV
More information about the mythtv-commits
mailing list