On Tue, Oct 31, 2006 at 12:00:33PM -0500, Steve Greenfield alleged: > I saw reference to this but it was dated Wed Oct 19 14:21:02 MDT 2005. > > http://www.supercluster.org/pipermail/mauiusers/2005-October/001792.html > > I am trying to build maui-3.2.6p13 with PBSPro_7.1.3. Any help would be > appreciated! > > > ---------------------------- > > > # gmake > gmake -C src/moab all > gmake[1]: Entering directory > `/home/sysadm/PBSpro_Maui/maui-3.2.6p13/src/moab' > gcc -I../../include/ -I/usr/local/maui/include -I/usr/pbs/include - > DLINUX -D__MPBS -g -g -c MPBSI.c > MPBSI.c: In function `__MPBSGetNodeState': > MPBSI.c:1715: error: `ND_reserve' undeclared (first use in this > function) > MPBSI.c:1715: error: (Each undeclared identifier is reported only once > MPBSI.c:1715: error: for each function it appears in.) > MPBSI.c: In function `MPBSNodeLoad': > MPBSI.c:2548: error: `ND_cluster' undeclared (first use in this > function) > MPBSI.c: In function `MPBSNodeUpdate': > MPBSI.c:3257: error: `ND_cluster' undeclared (first use in this > function) > gmake[1]: *** [MPBSI.o] Error 1 > gmake[1]: Leaving directory > `/home/sysadm/PBSpro_Maui/maui-3.2.6p13/src/moab' > gmake: *** [all] Error 2
It should be fine in p16, http://www.clusterresources.com/downloads/maui/maui-3.2.6p16.tar.gz Basicly we added this to src/moab/MPBSI.c (just after including pbs_ifl.h) #ifndef ND_cluster #define ND_cluster "cluster" #endif /* !ND_cluster */ #ifndef ND_reserve #define ND_reserve "reserve" #endif /* !ND_reserve */ _______________________________________________ mauiusers mailing list [email protected] http://www.supercluster.org/mailman/listinfo/mauiusers
