Hi,
A few days ago I asked :
 - o -
 
 Is there anybody who has compiled succesfully Listproc6.0c out there ? 
 
 tried but after a while it gives the following error at compilation.
 Unfortunately the packages is to big for hacking.
 
 You may wish to compile with -DSYSLOG=facility to use syslog(3) for reports.
 Do you wish to use unproto for compilation [n]? 
 /bin/cc -c -g3 -I/usr/server -I/usr/server/src -I/usr/server/src 
 -I/usr/server/src -std1 -DSETPGRP_NEEDS_ARGS -DHAVE_ULIMIT_H 
 -DHAVE_SETJMP_H -DHAVE_TZFILE_H -DERROR_MAIL_ANALYSIS=9 
 -DUCB_MAIL=\"/bin/mailx\" -DUSE_CARRIAGE_RETURN_LINEFEED -DBUFFSIZ=102400  listproc.c
 /usr/lib/cmplrs/cc/cfe: Error: listproc.c, line 681: Number of rguments 
 doesn't agree with number in declaration (3.3.2.2(5))
         setpgrp (0, 0) 
         --------^
 - o -
Johannes Grosen <grosen_at_dilbert.cc.ndsu.nodak.edu> advised ;
Simply replace this call to setpgrp with setpgrp(); e.g.
#ifdef __osf__
setpgrp();
#else
setpgrp(0,0);
#endif
Apparently, you are trying to compile this under the System V Habitat?
 - o -
And I did something similar, and passed this error. After that some 
similar errors occured but anyway I succeded compiling it and it works 
fine now !
If you like, I can send you the binaries of Listproc.
Sincerely.
murat.
Murat Balci
UNIX sys. Admin	 s-mail : Ege Universitesi B.A.U.M - Bornova, IZMIR, TURKIYE.
e-mail : balci_at_bornova.ege.edu.tr   Phone :+(90)(232)3881080-253
Received on Tue Dec 12 1995 - 10:40:11 NZDT