
#define PvmHostSuspend 6 /* condor suspension */ #define PvmHostResume 7 /* condor resumption */to the list of "pvm_notify kinds".
In src/lpvmgen.c, in pvm_notify(), change
} else {
switch (what) {
case PvmHostDelete:
....
to
} else {
switch (what) {
case PvmHostSuspend: /* for condor */
case PvmHostResume: /* for condor */
case PvmHostDelete:
....
And that's it. Re-compile, and you're done.