From: Stephen D. <sd...@gm...> - 2005-06-13 06:19:24
|
On 6/11/05, Zoran Vasiljevic <zv...@ar...> wrote: > Hi >=20 > I have tested the compilation on following platforms/os'es >=20 > Solaris(sparc) 2.6/2.8 > Linux(intel) SuSE8.2/9.1 > Mac OSX(powerpc) Darwin 6.8/7.9/8.0 (aka Mac OSX 10.2/10.3/10.4) >=20 > Next week we will finish the Windows port and there will be > some things changed as well.... >=20 > I have fixed some trivial cases in the CVS. > Those things are still being complained about: >=20 > -------- > signal.c: In function `ns_sigmask': > signal.c:61: warning: implicit declaration of function `pthread_sigmask' > (Solaris 2.6/2.8) >=20 > -------- > pathname.c: In function `MakePath': > pathname.c:738: warning: subscript has type `char' > pathname.c: In function `ServerRoot': > pathname.c:813: warning: subscript has type `char' > (All platforms) >=20 > -------- > return.c: In function `Ns_ConnConstructHeaders': > return.c:262: warning: suggest parentheses around && within || > (All platforms) >=20 > -------- > tclsock.c:841: warning: `SockSetBlocking' defined but not used > (All platforms) >=20 > -------- > nscgi.c: In function `CgiExec': > nscgi.c:776: warning: `Ns_DecodeUrlCharset' is deprecated (declared > at ../include/ns.h:1289) > nscgi.c:784: warning: `Ns_DecodeUrlCharset' is deprecated (declared > at ../include/ns.h:1289) > nscgi.c:806: warning: `Ns_ConnLocation' is deprecated (declared at ../ > include/ns.h:638) > nscgi.c:838: warning: `Ns_ConnLocation' is deprecated (declared at ../ > include/ns.h:638) > nscgi.c:934: warning: `Ns_DecodeUrlCharset' is deprecated (declared > at ../include/ns.h:1289) > nscgi.c: In function `CgiCopy': > nscgi.c:1109: warning: `Ns_ConnLocation' is deprecated (declared > at ../include/ns.h:638) > (All platforms) >=20 > --------- > dsprintf.c: In function `Ns_DStringVPrintf': > dsprintf.c:294: warning: use of `long double' type; its size may > change in a future release > dsprintf.c:294: warning: (Long double usage is reported only once for > each file. > dsprintf.c:294: warning: To disable this warning, use -Wno-long-double.) > (Darwin 6.8/7.9/8.0) >=20 > --------- > tclmisc.c:666: warning: redefinition of `u_int32_t' > /usr/include/sys/types.h:198: warning: `u_int32_t' previously > declared here > tclmisc.c:667: warning: redefinition of `u_int8_t' > /usr/include/sys/types.h:196: warning: `u_int8_t' previously declared > here > (Linux) >=20 > Cheers > Zoran Now compiles clean for me with gcc 4 using flags: -02 -Wall -Wno-implicit-int. (Linux FC3). Yippee! |