From: <fal...@us...> - 2003-10-05 00:00:30
|
Update of /cvsroot/pyaros/PyAROS/Modules In directory sc8-pr-cvs1:/tmp/cvs-serv29806/Modules Modified Files: pcre-int.h Log Message: AROS Posix includes don't contain BOOL, FALSE and TRUE definitions anymore, so define them Index: pcre-int.h =================================================================== RCS file: /cvsroot/pyaros/PyAROS/Modules/pcre-int.h,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** pcre-int.h 30 Dec 2002 12:27:03 -0000 1.3 --- pcre-int.h 5 Oct 2003 00:00:26 -0000 1.4 *************** *** 100,109 **** /* Miscellaneous definitions */ ! #ifndef __AROS__ ! typedef int BOOL; ! # define FALSE 0 ! # define TRUE 1 ! #endif /* __AROS__ */ /* These are escaped items that aren't just an encoding of a particular data --- 100,107 ---- /* Miscellaneous definitions */ ! typedef int BOOL; ! #define FALSE 0 ! #define TRUE 1 /* These are escaped items that aren't just an encoding of a particular data |