From: Ty S. <ts...@us...> - 2000-10-12 02:52:26
|
Update of /cvsroot/firebird/interbase/utilities In directory slayer.i.sourceforge.net:/tmp/cvs-serv18269/utilities Modified Files: dba.e drop.c Log Message: NetBSD support. Thanks to Geoffrey C. Speicher for the FreeBSD port, which made this much easier. Index: dba.e =================================================================== RCS file: /cvsroot/firebird/interbase/utilities/dba.e,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** dba.e 2000/08/16 23:30:39 1.3 --- dba.e 2000/10/12 02:52:18 1.4 *************** *** 84,88 **** #include <stdlib.h> #else ! #if !(defined linux || defined FREEBSD) extern SCHAR *sys_errlist[]; #endif --- 84,88 ---- #include <stdlib.h> #else ! #if !(defined linux || defined FREEBSD || defined NETBSD) extern SCHAR *sys_errlist[]; #endif Index: drop.c =================================================================== RCS file: /cvsroot/firebird/interbase/utilities/drop.c,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** drop.c 2000/09/29 14:51:26 1.3 --- drop.c 2000/10/12 02:52:18 1.4 *************** *** 157,161 **** #endif ! #if !(defined WIN_NT || defined OS2_ONLY || defined NETWARE_386 || defined linux || defined FREEBSD || defined AIX_PPC ) if (!sw_nobridge) { --- 157,161 ---- #endif ! #if !(defined WIN_NT || defined OS2_ONLY || defined NETWARE_386 || defined linux || defined FREEBSD || defined NETBSD || defined AIX_PPC ) if (!sw_nobridge) { *************** *** 359,363 **** int semid; ! #if !(defined SUNOS4 || defined linux || defined FREEBSD) return semget (key, (int) count, IPC_EXCL); #else --- 359,363 ---- int semid; ! #if !(defined SUNOS4 || defined linux || defined FREEBSD || defined NETBSD) return semget (key, (int) count, IPC_EXCL); #else |