Stefan.Becker@nmp.nokia.com wrote: > > Package: ktalkd > Version: 1.1.2pre > > HP-UX doesn't have flock(), thus there will be a compilation error for > mail.local. > > The following patch replaces flock() with lockf(), which should have the > same semantics (as far as I have understood the man page). How about this ? --- mail.local.c 1999/03/30 00:25:10 1.6.2.2 +++ mail.local.c 1999/07/28 09:22:50 @@ -143,7 +143,7 @@ * If you don't have flock, you could try using lockf instead. */ -#ifdef USE_LOCKF +#ifdef USE_LOCKF || !defined(HAVE_FLOCK) # define flock(a, b) lockf(a, b, 0) # undef LOCK_EX # define LOCK_EX F_LOCK > A configure > check for flock must be added. Isn't it already there ? Harri.