[Raw Msg Headers][Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: 2.99.35 -- test results release :)



> From zmailer-owner@nic.funet.fi  Fri Aug  9 02:04:08 1996
>
> plus recent Linuxes (ELF), and all (?) BSD systems.  Oh yes, anybody
> with HP-UX ?  Any reports to share ?

I managed to compile the zmailer-2.99.35 at HPUX 9.01 with gcc-2.7.0 
after making the following changes:
(1) comment out line 76 or add #if !defined(_INCLUDE_HPUX_SOURCE) to
	#include <sys/select.h>
    in libresolv/res_send.c
(2) line 59 of smtpserver/fdstatfs.c, append one more condition:
 	|| defined(_INCLUDE_HPUX_SOURCE)
(3) line 36 of scheduler/qprint.c, we don't need to re-define struct
    utimbuf and so, I use another #if to deal with it.
    The same is applied to line 86 of transport/mailbox/mailbox.c
(4) make sure that the following line is commented out:
	#define HAVE_UTIMES

---------------------------------------------------------------------
In addition, we got some warning message for select() in identuser.c:
identuser.c:231: warning: passing arg 2 of `select' from incompatible 
pointer type
identuser.c:231: warning: passing arg 3 of `select' from incompatible 
pointer type
---------------------------------------------------------------------
another warning message from dbm.c:
dbm.c: In function `open_dbm':
dbm.c:40: warning: return makes integer from pointer without a cast
---------------------------------------------------------------------
transport.c: In function `mux' `queryipccheck'and :
transport.c:620: warning: passing arg 2 of `select' from incompatible 
pointer type ...
---------------------------------------------------------------------
smtp.c: In function `select_sleep':
smtp.c:2212: warning: passing arg 2 of `select' from incompatible 
pointer type
---------------------------------------------------------------------

That's all I have got. Thanks for your attention.


-- W.W. Fung