Re: building on 32 extend 64 arch nix*

2008-03-18 Thread mm w
hi there, is there IRC room regarding wget dev (somewhere)? :) Hrvoje, is it a Croatian name?

Re: building on 32 extend 64 arch nix*

2008-03-18 Thread Micah Cowan
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 mm w wrote: hi there, is there IRC room regarding wget dev (somewhere)? :) We have #wget on freenode.net, where dev discussion is welcome; however, it is very low-participation atm (essentially, just myself, with a few lurkers); Hrvoje hasn't been

Re: building on 32 extend 64 arch nix*

2008-03-18 Thread mm w
On Tue, Mar 18, 2008 at 7:32 PM, Micah Cowan [EMAIL PROTECTED] wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 mm w wrote: hi there, is there IRC room regarding wget dev (somewhere)? :) We have #wget on freenode.net, where dev discussion is welcome; however, it is very

building on 32 extend 64 arch nix*

2008-03-17 Thread mm w
Hello there, I ve two gcc warning regarding data size operations src/hash.c unsigned long hash_pointer (const void *ptr) { . #if SIZEOF_VOID_P 4 key += (key 44); key ^= (key 54); key += (key 36); key ^= (key 41); key += (key 42); key ^= (key 34); key += (key 39); key

Re: building on 32 extend 64 arch nix*

2008-03-17 Thread Hrvoje Niksic
mm w [EMAIL PROTECTED] writes: #if SIZEOF_VOID_P 4 key += (key 44); key ^= (key 54); key += (key 36); key ^= (key 41); key += (key 42); key ^= (key 34); key += (key 39); key ^= (key 44); #endif this one is minor, the shift count is superior or equal to

Re: building on 32 extend 64 arch nix*

2008-03-17 Thread mm w
On Mon, Mar 17, 2008 at 1:57 PM, Hrvoje Niksic [EMAIL PROTECTED] wrote: mm w [EMAIL PROTECTED] writes: #if SIZEOF_VOID_P 4 key += (key 44); key ^= (key 54); key += (key 36); key ^= (key 41); key += (key 42); key ^= (key 34); key += (key 39); key