View | Details | Raw Unified | Return to bug 186005
Collapse All | Expand All

(-)mythtv/Makefile (-1 lines)
Lines 25-31 Link Here
25
25
26
WRKSRC=		${WRKDIR}/${GH_ACCOUNT}-${GH_PROJECT}-e9545c0/${GH_PROJECT}
26
WRKSRC=		${WRKDIR}/${GH_ACCOUNT}-${GH_PROJECT}-e9545c0/${GH_PROJECT}
27
27
28
USE_GCC=	any
29
ONLY_FOR_ARCHS=	i386 amd64
28
ONLY_FOR_ARCHS=	i386 amd64
30
USES=		gmake pkgconfig perl5
29
USES=		gmake pkgconfig perl5
31
USE_QT4=	gui sql network script linguist_build l10n sql-mysql_run \
30
USE_QT4=	gui sql network script linguist_build l10n sql-mysql_run \
(-)mythtv/files/patch-libs__libmyth__remoteutil.h (+10 lines)
Line 0 Link Here
1
--- libs/libmyth/remoteutil.h.orig	2013-09-18 16:06:08.000000000 -0400
2
+++ libs/libmyth/remoteutil.h	2014-01-22 08:26:34.000000000 -0500
3
@@ -8,6 +8,7 @@
4
 using namespace std;
5
 
6
 #include "mythexp.h"
7
+#include <sys/types.h>
8
 
9
 class ProgramInfo;
10
 class MythEvent;
(-)mythtv/files/patch-libs__libmythtv__recorders__dvbdev__dvbci.cpp (-3 / +5 lines)
Lines 1-11 Link Here
1
--- libs/libmythtv/recorders/dvbdev/dvbci.cpp.orig	2010-03-07 04:11:52.000000000 +0100
1
--- libs/libmythtv/recorders/dvbdev/dvbci.cpp.orig	2010-04-26 23:30:52.000000000 +0200
2
+++ libs/libmythtv/recorders/dvbdev/dvbci.cpp	2010-04-26 23:30:52.000000000 +0200
2
+++ libs/libmythtv/recorders/dvbdev/dvbci.cpp	2014-01-22 09:13:22.000000000 -0500
3
@@ -28,7 +28,9 @@
3
@@ -28,7 +28,11 @@
4
 #include <errno.h>
4
 #include <errno.h>
5
 #include <ctype.h>
5
 #include <ctype.h>
6
 #include <linux/dvb/ca.h>
6
 #include <linux/dvb/ca.h>
7
+#ifndef __FreeBSD__
7
+#ifndef __FreeBSD__
8
 #include <malloc.h>
8
 #include <malloc.h>
9
+#else
10
+#include <stdlib.h>
9
+#endif
11
+#endif
10
 #include <netinet/in.h>
12
 #include <netinet/in.h>
11
 #include <poll.h>
13
 #include <poll.h>
(-)mythtv/files/patch-libs__libmythui__mythgesture.cpp (+19 lines)
Line 0 Link Here
1
--- libs/libmythui/mythgesture.cpp.orig	2013-09-18 16:06:08.000000000 -0400
2
+++ libs/libmythui/mythgesture.cpp	2014-01-22 08:20:33.000000000 -0500
3
@@ -28,6 +28,7 @@
4
 
5
 #include "mythgesture.h"
6
 
7
+#include <cstdlib>
8
 #include <cmath>
9
 #include <algorithm>
10
 
11
@@ -283,7 +284,7 @@
12
     int dely = p.y() - points.back().y();
13
 
14
     /* step by the greatest delta direction */
15
-    if (abs(delx) > abs(dely))
16
+    if (std::abs(delx) > std::abs(dely))
17
     {
18
         float iy = points.back().y();
19
 
(-)mythtv/files/patch-libs__libmythui__mythpainter.cpp (+9 lines)
Line 0 Link Here
1
--- libs/libmythui/mythpainter.cpp.orig	2013-09-18 16:06:08.000000000 -0400
2
+++ libs/libmythui/mythpainter.cpp	2014-01-22 08:18:40.000000000 -0500
3
@@ -1,5 +1,6 @@
4
 #include <stdint.h>
5
 #include <algorithm>
6
+#include <cstdlib>
7
 
8
 // QT headers
9
 #include <QRect>
(-)mythtv/files/patch-libs__libmythupnp__mmulticastsocketdevice.h (+10 lines)
Line 0 Link Here
1
--- libs/libmythupnp/mmulticastsocketdevice.h.orig	2013-09-18 16:06:08.000000000 -0400
2
+++ libs/libmythupnp/mmulticastsocketdevice.h	2014-01-22 08:24:26.000000000 -0500
3
@@ -18,6 +18,7 @@
4
 #  include <ws2tcpip.h>
5
 # endif
6
 #else
7
+# include <sys/types.h>
8
 # include <sys/socket.h>
9
 # include <netinet/in.h>
10
 # include <netinet/ip.h>

Return to bug 186005