diff options
author | Bernhard Froehlich <decke@FreeBSD.org> | 2010-05-14 19:13:51 +0000 |
---|---|---|
committer | Bernhard Froehlich <decke@FreeBSD.org> | 2010-05-14 19:13:51 +0000 |
commit | 6d7de17a5fbec1dbeac16910a734ad5d1cd30a0d (patch) | |
tree | a3829dbc9479c867ae1a6f10d5815f533fdefc41 /multimedia/mythtv | |
parent | a2d781870f9fabe1823f02c24ec44a2ab76bbc25 (diff) | |
download | ports-6d7de17a5fbec1dbeac16910a734ad5d1cd30a0d.tar.gz ports-6d7de17a5fbec1dbeac16910a734ad5d1cd30a0d.zip |
Notes
Diffstat (limited to 'multimedia/mythtv')
-rw-r--r-- | multimedia/mythtv/files/patch-libs__libmythfreemheg__Programs.cpp | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/multimedia/mythtv/files/patch-libs__libmythfreemheg__Programs.cpp b/multimedia/mythtv/files/patch-libs__libmythfreemheg__Programs.cpp new file mode 100644 index 000000000000..b030a44b4a87 --- /dev/null +++ b/multimedia/mythtv/files/patch-libs__libmythfreemheg__Programs.cpp @@ -0,0 +1,13 @@ +--- libs/libmythfreemheg/Programs.cpp.orig 2009-07-06 22:42:28.000000000 +0200 ++++ libs/libmythfreemheg/Programs.cpp 2010-03-16 13:48:01.000000000 +0100 +@@ -129,9 +129,7 @@ + if (m_Name.Equal("GCD")) { // GetCurrentDate - returns local time. + if (args.Size() == 2) { + struct timeb timebuffer; +-#if HAVE_FTIME +- ftime(&timebuffer); +-#elif HAVE_GETTIMEOFDAY ++#if HAVE_GETTIMEOFDAY + struct timeval time; + struct timezone zone; + |