|
From: David T. L. <le...@us...> - 2004-04-12 13:07:58
|
Update of /cvsroot/squeak/squeak/platforms/unix/plugins/UnixOSProcessPlugin In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13697 Modified Files: Makefile.inc Log Message: Added "XDEFS= -REENTRANT" This is required for OSPP when running with a VM that uses pthreads, as is the case on OS X, and may potentially be the case on other configurations. Lack of this compiler flag will lead to a VM crash when OSPP handles an OS signal in a VM with pthreads enabled in the VM. Index: Makefile.inc =================================================================== RCS file: /cvsroot/squeak/squeak/platforms/unix/plugins/UnixOSProcessPlugin/Makefile.inc,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** Makefile.inc 15 Aug 2003 15:16:04 -0000 1.6 --- Makefile.inc 12 Apr 2004 12:54:09 -0000 1.7 *************** *** 1 **** --- 1,2 ---- XCPPFLAGS= -I$(topdir)/platforms/Cross/plugins/FilePlugin -I$(topdir)/platforms/Cross/plugins/SocketPlugin + XDEFS= -D_REENTRANT |