.TITLE CHECK .IDENT /2/ ;+ ; VERIFY CORRECT SYSTEM VERSION NUMBER AND EXEC OPTIONS ;- .ENABL LC .IF NE V$$RSN-40 .ERROR ; You must be running a V4.0 system else nothing will work. .ENDC .IFNDF P$$OFF .ERROR ; Parent/Offspring support is assumed, you don't have it. .ENDC .IFNDF S$$TOP .ERROR ; Stop bit support is assumed, you don't have it. .ENDC .IFNDF M$$MUP .ERROR ; Multiuser protection is required, you don't have it. .ENDC .IFNDF A$$TRP .ERROR ; AST recognition is required, you don't have it. .ENDC .IFNDF R$$SND .ERROR ; SEND/RECEIVE directives are required for some tasks. .ENDC .IFNDF G$$TTK .ERROR ; GET TASK directive is probably required. .ENDC ; ; VERIFY THAT [200,200]RSXMC.MAC IS COMPLETE ; CALLR FOO ; If one of these macros is missing you are trying CALLR FOO ; to build with an incomplete version of RSXMC.MAC. CALLR F00 ; An incomplete version get created on [200,200] by CALLR FOO ; doing a prepgen (RSXMC0.MAC is never appended). CALLR FOO ; Transfer the version you last used on [11,10] to CALLR FOO ; [200,200]. .END