ntg-context - mailing list for ConTeXt users
 help / color / mirror / Atom feed
* luatex not compiling
@ 2007-12-20 18:05 Hans van der Meer
  2007-12-21 10:50 ` Martin Schröder
  0 siblings, 1 reply; 14+ messages in thread
From: Hans van der Meer @ 2007-12-20 18:05 UTC (permalink / raw)
  To: NTG ConTeXt

There appears to be a problem with the compilation of luatex on MacOSX  
10.5.x, but I might have found (at least one of) the cause.
On my system (MacOSX10.5.1) complation halted with:
luatexextra.c:408 error: storage size of 'sigstk' isn't known.
Further exploring showed the cause of this: SIGSTKSZ is not defined.
As it turns out SIGSTKSZ is defined in signal.h and in luatexextra.c  
read with
#include <signal.h>, assuming signal.h resides in /usr/include/signal.h.
That however, is not the case on this version of MacOSX: it sits in / 
usr/include/sys/signal.h.
Probably changing the code into:
#include <signal.h>
#ifndef _SIGNAL_H_
#include <sys/signal.h>
#endif
might help, but I have not tested this (some of the pie should be left  
for Taco c.s. ;-)

Hans van der Meer



___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://tex.aanhet.net
archive  : https://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________


^ permalink raw reply	[flat|nested] 14+ messages in thread

end of thread, other threads:[~2007-12-26 11:54 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2007-12-20 18:05 luatex not compiling Hans van der Meer
2007-12-21 10:50 ` Martin Schröder
2007-12-21 15:10   ` Idris Samawi Hamid
2007-12-21 15:27     ` Taco Hoekwater
2007-12-23 20:25       ` [Dev-luatex] " Jjgod Jiang
2007-12-24 20:50         ` Taco Hoekwater
2007-12-25  3:14           ` Jjgod Jiang
2007-12-25  7:43             ` Taco Hoekwater
2007-12-25 10:13           ` Yannis Haralambous
2007-12-26  9:13             ` luigi scarso
2007-12-26 11:54             ` Otared Kavian
2007-12-21 17:49     ` luigi scarso
2007-12-24 12:12   ` Hans van der Meer
2007-12-24 20:45     ` Taco Hoekwater

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).