* Rob Belics ([EMAIL PROTECTED]) wrote:
> There is a Windows open source program I would like to port to FreeBSD.  It 
> seems to compile OK, using gcc, but chokes on MS/Windows only type data 
> types like 'ulong'.  What would be the easiest way to fix/convert these, or 
> must it be done manually?

You can add compatibility header with

typedef unsigned long ulong;

That is easy and fast, and also least painful when you need to
update you port to new version of original sourcecode.

-- 
Dmitry A. Marakasov    | jabber: [EMAIL PROTECTED]
[EMAIL PROTECTED]       | http://www.amdmi3.ru
_______________________________________________
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "[EMAIL PROTECTED]"

Reply via email to