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

(-)net/rfbproxy/Makefile (-1 / +2 lines)
Lines 16-22 Link Here
16
LIB_DEPENDS=	gnugetopt:${PORTSDIR}/devel/libgnugetopt
16
LIB_DEPENDS=	gnugetopt:${PORTSDIR}/devel/libgnugetopt
17
17
18
GNU_CONFIGURE=	yes
18
GNU_CONFIGURE=	yes
19
CONFIGURE_ENV=	CPPFLAGS="${CXXFLAGS} -I${LOCALBASE}/include" \
19
CONFIGURE_TARGET=	--build=${ARCH}-portbld-freebsd${OSREL}
20
CONFIGURE_ENV=	CPPFLAGS="-I${LOCALBASE}/include" \
20
		LDFLAGS="-L${LOCALBASE}/lib -lgnugetopt"
21
		LDFLAGS="-L${LOCALBASE}/lib -lgnugetopt"
21
22
22
MAN1=	rfbproxy.1
23
MAN1=	rfbproxy.1
(-)net/rfbproxy/files/patch-rfbproxy.c (+20 lines)
Line 0 Link Here
1
--- rfbproxy.c.orig	Sat Mar  2 06:58:29 2002
2
+++ rfbproxy.c	Sat Oct  5 15:27:33 2002
3
@@ -59,6 +59,9 @@
4
 #if HAVE_STDINT_H
5
 # include <stdint.h>
6
 #else
7
+#if HAVE_INTTYPES_H
8
+# include <inttypes.h>
9
+#else
10
 # if HAVE_U_INTXX_T
11
 typedef u_int16_t uint16_t;
12
 typedef u_int32_t uint32_t;
13
@@ -66,6 +69,7 @@
14
 typedef unsigned short uint16_t;
15
 typedef unsigned long uint32_t;
16
 # endif
17
+#endif
18
 #endif
19
 
20
 #include <sys/types.h>

Return to bug 43683