Date: Wed, 9 Oct 2002 14:27:41 +0400 (MSD) From: Maxim Maximov <mcsi@agava.com> To: FreeBSD-gnats-submit@FreeBSD.org Subject: ports/43855: fix build of net/rfbproxy Message-ID: <200210091027.g99ARf31080006@ultra.domain>
next in thread | raw e-mail | index | archive | help
>Number: 43855 >Category: ports >Synopsis: fix build of net/rfbproxy >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Oct 09 03:30:00 PDT 2002 >Closed-Date: >Last-Modified: >Originator: Maxim Maximov >Release: FreeBSD 4.7-RC i386 >Organization: >Environment: System: FreeBSD ultra.domain 4.7-RC FreeBSD 4.7-RC #9: Fri Oct 4 12:38:44 MSD 2002 mcsi@ultra.domain:/usr/obj/usr/src/sys/ULTRA i386 >Description: fix build of net/rfbproxy. FreeBSD defines types `uint16_t' and `uint32_t' itself. >How-To-Repeat: >Fix: --- 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; >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200210091027.g99ARf31080006>