From: Neil M. <nm...@us...> - 2001-03-25 22:21:38
|
Update of /cvsroot/firebird/interbase/gpre In directory usw-pr-cvs1:/tmp/cvs-serv4100/gpre Modified Files: cob.c Log Message: Changes based on port to Solaris x86 by Konstantin Kuznetsov. Index: cob.c =================================================================== RCS file: /cvsroot/firebird/interbase/gpre/cob.c,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -r1.5 -r1.6 *** cob.c 2001/01/06 15:36:35 1.5 --- cob.c 2001/03/25 22:21:33 1.6 *************** *** 20,25 **** --- 20,28 ---- * All Rights Reserved. * Contributor(s): ______________________________________. + * Solaris x86 changes - Konstantin Kuznetsov, Neil McCalden */ + /* $Id$ */ + #include "../jrd/ib_stdio.h" #include "../jrd/common.h" *************** *** 124,128 **** #define MICROFOCUS #endif ! #ifdef sparc #define MICROFOCUS #endif --- 127,131 ---- #define MICROFOCUS #endif ! #if (defined sparc || defined SOLX86 ) #define MICROFOCUS #endif *************** *** 279,283 **** #endif ! #ifdef sparc #define USAGE_COMP " USAGE IS COMP" #endif --- 282,286 ---- #endif ! #if (defined sparc || defined SOLX86 ) #define USAGE_COMP " USAGE IS COMP" #endif |