From 4f4d35a1d85229c00e8552cb49f69be1275cbf59 Mon Sep 17 00:00:00 2001 From: Ralph Lange Date: Wed, 28 Jun 2000 15:55:36 +0000 Subject: [PATCH] Changes for HP-UX --- src/libCom/test/Makefile | 2 ++ src/libCom/test/osiTimeTestMain.c | 3 +++ 2 files changed, 5 insertions(+) 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 (); }