diff options
author | ijliao <ijliao@FreeBSD.org> | 2002-10-09 17:53:16 +0000 |
---|---|---|
committer | ijliao <ijliao@FreeBSD.org> | 2002-10-09 17:53:16 +0000 |
commit | 139b6e509651a8d4bcb3f69f1976c732675444c1 (patch) | |
tree | 6480a8350647a02b469bdb72652ff6bf1270f61e /net/rfbproxy | |
parent | c6570090056a42afa4721d438cb5ad276a039f94 (diff) | |
download | FreeBSD-ports-139b6e509651a8d4bcb3f69f1976c732675444c1.zip FreeBSD-ports-139b6e509651a8d4bcb3f69f1976c732675444c1.tar.gz |
fix build
PR: 43855
Submitted by: Maxim Maximov <mcsi@agava.com>
Diffstat (limited to 'net/rfbproxy')
-rw-r--r-- | net/rfbproxy/files/patch-rfbproxy.c | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/net/rfbproxy/files/patch-rfbproxy.c b/net/rfbproxy/files/patch-rfbproxy.c new file mode 100644 index 0000000..97e947d --- /dev/null +++ b/net/rfbproxy/files/patch-rfbproxy.c @@ -0,0 +1,13 @@ +--- rfbproxy.c.orig Wed Oct 9 14:23:44 2002 ++++ rfbproxy.c Wed Oct 9 14:25:19 2002 +@@ -60,8 +60,10 @@ + # include <stdint.h> + #else + # if HAVE_U_INTXX_T ++# ifndef __FreeBSD__ + typedef u_int16_t uint16_t; + typedef u_int32_t uint32_t; ++# endif + # else + typedef unsigned short uint16_t; + typedef unsigned long uint32_t; |