Hi,

Out of the box (or cvs if you like) I was unable to get arcem to compile.
 It complained about a number of 64-bit types/methods that darwin doesn't
have.  Darwin just seems to expose them as non-decorated types/methods.

Attached is the output of "cvs diff -u" for the "hostfs.h" file which is
what I had to patch in order to get it to build. (also inline)

>>>
--- hostfs.h 12 May 2012 17:34:51 -0000 1.4
+++ hostfs.h 1 Jul 2012 01:42:46 -0000
@@ -23,6 +23,13 @@
 extern void hostfs_init(void);
 extern void hostfs_reset(void);

+#if defined __MACH__
+typedef off_t off64_t;
+#define ftello64 ftello
+#define fseeko64 fseeko
+#define fopen64 fopen
+#endif
+
 #ifdef __amigaos4__
 #include <sys/_types.h>
 typedef _off64_t off64_t;
<<<

Now, all I have to do is get the mouse to move :)

Thanks
Doug

Attachment: hostfs.h.diff
Description: Binary data

------------------------------------------------------------------------------
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
-- 
arcem-devel mailing list
arcem-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/arcem-devel

Reply via email to