Build fixes for Solaris

This commit is contained in:
Andrew Johnson
2015-09-10 13:26:37 -05:00
parent 405f50533e
commit 4081377c4b
2 changed files with 4 additions and 1 deletions

View File

@@ -64,6 +64,7 @@ TESTFILES += ../dbLockTest.db
TESTPROD_HOST += dbStressTest
dbStressTest_SRCS += dbStressLock.c
dbStressTest_SRCS += dbTestIoc_registerRecordDeviceDriver.cpp
dbStressTest_SYS_LIBS_solaris += rt
TESTS += dbStressTest
TESTPROD_HOST += testdbConvert

View File

@@ -18,7 +18,9 @@
#include "epicsExit.h"
static struct osdContext {} present;
static struct osdContext {
char dummy; /* Required for older compilers */
} present;
static enum {rlNone, rlIdle, rlBusy} rlState = rlNone;