Changes to EPICS R3.12.2 "base" to build on Silicon Graphics and Dec Alpha Unix Mark Rivers December 7, 1995 1) base/src/dbtools/BSlib.c There was an error compiling on DEC Unix, sys/sockio.h does not exist, and the needed #defines are actually in sys/ioctl.h. This should probably be looked into, since it appears that Solaris is a special case as well. cars5> diff BSlib.c.old BSlib.c 24d23 < #include 34a34,39 > #ifdef _OSF_SOURCE > #include > #else > #include > #endif SGI and DEC Unix (_OSF_SOURCE) needed to be added an #if: 111c116 < #if defined linux || defined SOLARIS --- > #if defined linux || defined SOLARIS || defined SGI || defined _OSF_SOURCE 2) /base/src/libCom/blderrSymTbl SGI needed to be added to a conditional: geozeo> diff blderrSymTbl blderrSymTbl.old 56c56 < alpha | hp700 | sgi | Linux) --- > alpha | hp700 | Linux)