Skip to main content

Compiled HTK and Cxterm on Mac OS X 10.3 (Panther)

HTK:

Follow http://htk.eng.cam.ac.uk/docs/faq.shtml "How can I compile HTK 3.2 on Mac OS X". One trick missing:

in the HTKLib folder, open the strarr.c source and change
 #include <malloc.h> 
into
 #include <malloc/malloc.h> 
Cause in Panther (also FreeBSD?), malloc.h is in /usr/include/malloc/.

Cxterm:

Change
 int initgroups(const char *, gid_t) 
into
 int initgroups(const char *, int) 
cause that's the prototype in Panther(also FreeBSD?).

Feels good.

Comments