diff --git a/src/libCom/test/Makefile b/src/libCom/test/Makefile index 315a629e0..df54103f9 100644 --- a/src/libCom/test/Makefile +++ b/src/libCom/test/Makefile @@ -4,6 +4,8 @@ include $(TOP)/configure/CONFIG PROD_LIBS += Com +USR_LIBS_hpux += cma + timerTestHost_SRCS += timerTestMain.c timerTest.c PROD += timerTestHost OBJS_IOC += timerTest diff --git a/src/libCom/test/osiTimeTestMain.c b/src/libCom/test/osiTimeTestMain.c index 3fdf3eb90..9c3194f3d 100644 --- a/src/libCom/test/osiTimeTestMain.c +++ b/src/libCom/test/osiTimeTestMain.c @@ -4,5 +4,8 @@ int osiTimeTest (void); int main (int argc, char **argv) { +#ifdef HP_UX + _main(); +#endif return osiTimeTest (); }