[comp.mail.elm] BSD filter/<time.h> problem + fix

ejp@ausmelb.oz (Esmond Pitt) (01/06/89)

In filter/{filter,rules}.c, 

    #include <time.h>
    
needs to be replaced by the following used elsewhere in elm:

    #ifdef BSD
    #  ifndef BSD4_1
    #    include <sys/time.h>
    #  else
    #    include <time.h>
    #    include <sys/types.h>
    #    include <sys/timeb.h>
    #  endif
    #else
    #  include <time.h>
    #endif
	    
-- 
Esmond Pitt, Austec (Asia/Pacific) Ltd
...!uunet.UU.NET!munnari!ausmelb!ejp,ejp@ausmelb.oz