=================================================================== RCS file: /home/cvs/OpenXM_contrib2/asir2000/include/ox.h,v retrieving revision 1.7 retrieving revision 1.11 diff -u -p -r1.7 -r1.11 --- OpenXM_contrib2/asir2000/include/ox.h 2000/08/21 08:31:36 1.7 +++ OpenXM_contrib2/asir2000/include/ox.h 2001/06/15 07:56:05 1.11 @@ -23,7 +23,7 @@ * shall be made on your publication or presentation in any form of the * results obtained by use of the SOFTWARE. * (4) In the event that you modify the SOFTWARE, you shall notify FLL by - * e-mail at risa-admin@flab.fujitsu.co.jp of the detailed specification + * e-mail at risa-admin@sec.flab.fujitsu.co.jp of the detailed specification * for such modification or the source code of the modified part of the * SOFTWARE. * @@ -45,7 +45,7 @@ * DEVELOPER SHALL HAVE NO LIABILITY IN CONNECTION WITH THE USE, * PERFORMANCE OR NON-PERFORMANCE OF THE SOFTWARE. * - * $OpenXM: OpenXM_contrib2/asir2000/include/ox.h,v 1.6 2000/03/28 06:32:22 noro Exp $ + * $OpenXM: OpenXM_contrib2/asir2000/include/ox.h,v 1.10 2001/06/04 02:49:46 noro Exp $ */ #include "com.h" @@ -134,6 +134,7 @@ #define SM_executeStringByLocalParserInBatchMode 274 #define SM_getsp 275 #define SM_dupErrors 276 +#define SM_pushCMOtag 277 #define SM_nop 300 @@ -146,9 +147,9 @@ typedef FILE *ox_stream; /* a macro to check whether data are available in the read buffer */ #if defined(linux) #define FP_DATA_IS_AVAILABLE(fp) ((fp)->_IO_read_ptr < (fp)->_IO_read_end) -#elif defined(__FreeBSD__) +#elif defined(__FreeBSD__) || (defined(__MACH__) && defined(__ppc__)) #define FP_DATA_IS_AVAILABLE(fp) ((fp)->_r) -#elif defined(sparc) || defined(__alpha) || defined(__SVR4) || defined(mips) +#elif defined(sparc) || defined(__alpha) || defined(__SVR4) || defined(mips) || defined(_IBMR2) #define FP_DATA_IS_AVAILABLE(fp) ((fp)->_cnt) #elif defined(VISUAL) #define FP_DATA_IS_AVAILABLE(fp) ((fp)->p < (fp)->buf_size)