Path: utzoo!telly!ziebmef!becker!censor!geac!jtsv16!uunet!cs.utexas.edu!tut.cis.ohio-state.edu!SAUNA.HUT.FI!jkp From: jkp@SAUNA.HUT.FI (Jyrki Kuoppala) Newsgroups: gnu.emacs.bug Subject: An USG bug in movemail.c in emacs 18.54 Message-ID: <8906120043.AA00626@cs.hut.fi> Date: 12 Jun 89 00:43:33 GMT Distribution: gnu Organization: Helsinki University of Technology, Finland. Lines: 23 F_OK, R_OK are not defined on some USG systems (at least Altos 3068 running USG2.2. So, you need to define them manually. Here's a context diff to etc/movemail.c. //Jyrki *** /u2/tmp/movemail.c Mon Jun 12 03:36:20 1989 --- /u2/gnu/dist-18.54/etc/movemail.c Mon Jun 12 01:47:21 1989 *************** *** 46,51 **** --- 46,57 ---- #ifdef USG #include #include + #ifndef F_OK + #define F_OK 0 + #define X_OK 1 + #define W_OK 2 + #define R_OK 4 + #endif #endif /* USG */ #ifdef XENIX