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

(-)./Makefile (-1 / +2 lines)
Lines 2-7 Link Here
2
2
3
PORTNAME=	dream
3
PORTNAME=	dream
4
PORTVERSION=	2.1.1
4
PORTVERSION=	2.1.1
5
PORTREVISION=	1
5
CATEGORIES=	audio comms hamradio
6
CATEGORIES=	audio comms hamradio
6
MASTER_SITES=	SF/drm/${PORTNAME}/${PORTVERSION}
7
MASTER_SITES=	SF/drm/${PORTNAME}/${PORTVERSION}
7
DISTNAME=	${PORTNAME}-${PORTVERSION}-svn808
8
DISTNAME=	${PORTNAME}-${PORTVERSION}-svn808
Lines 17-23 LIB_DEPENDS= libhamlib.so:${PORTSDIR}/co Link Here
17
18
18
USE_QT4=	qmake_build moc_build uic_build corelib gui network rcc webkit
19
USE_QT4=	qmake_build moc_build uic_build corelib gui network rcc webkit
19
QT4_MAKE_ARGS=	INSTALL_ROOT=${STAGEDIR}
20
QT4_MAKE_ARGS=	INSTALL_ROOT=${STAGEDIR}
20
USES=		gmake pkgconfig
21
USES=		compiler:openmp gmake
21
WRKSRC=		${WRKDIR}/${PORTNAME}
22
WRKSRC=		${WRKDIR}/${PORTNAME}
22
23
23
OPTIONS_DEFINE=		SNDFILE OGG VORBIS FLAC OPUS SPEEX FAAD FAAC
24
OPTIONS_DEFINE=		SNDFILE OGG VORBIS FLAC OPUS SPEEX FAAD FAAC
(-)./files/patch-src__MDI__PacketSourceFile.cpp (+11 lines)
Line 0 Link Here
1
--- src/MDI/PacketSourceFile.cpp.orig	2013-11-11 16:33:39 UTC
2
+++ src/MDI/PacketSourceFile.cpp
3
@@ -47,6 +47,8 @@ typedef int SOCKET;
4
 # define SOCKET_ERROR				(-1)
5
 # define INVALID_SOCKET				(-1)
6
 #endif
7
+#include <unistd.h>
8
+#include <time.h>
9
 
10
 #include "../util/Pacer.h"
11
 
(-)./files/patch-src__linux__pa_shm_ringbuffer.c (-1 / +1 lines)
Lines 5-11 Link Here
5
 
5
 
6
 #if defined(__APPLE__) || defined(__FreeBSD__)
6
 #if defined(__APPLE__) || defined(__FreeBSD__)
7
-#   include <libkern/OSAtomic.h>
7
-#   include <libkern/OSAtomic.h>
8
+#include <sys/types.h>
8
+#   include <sys/types.h>
9
+#   include <machine/atomic.h>
9
+#   include <machine/atomic.h>
10
 /* Here are the memory barrier functions. Mac OS X and FreeBSD only provide
10
 /* Here are the memory barrier functions. Mac OS X and FreeBSD only provide
11
    full memory barriers, so the three types of barriers are the same. */
11
    full memory barriers, so the three types of barriers are the same. */

Return to bug 207475