Re: luasocket namespace clash with lighttpd mod_magnet

2009-08-29 Thread Robert Nagy
Noone cares? On (2009-08-22 22:26), Robert Nagy wrote: > > Hey, > > Basically - luasocket defines buffer_init(); which is common enough to be > defined > elsewhere and it is defined in mod_magnet, so you end up with a SIGSEGV. > The attatched patch solves the issue by

Re: luasocket namespace clash with lighttpd mod_magnet

2009-08-25 Thread Robert Nagy
? On (2009-08-22 22:26), Robert Nagy wrote: > > Hey, > > Basically - luasocket defines buffer_init(); which is common enough to be > defined > elsewhere and it is defined in mod_magnet, so you end up with a SIGSEGV. > The attatched patch solves the issue by renaming

luasocket namespace clash with lighttpd mod_magnet

2009-08-22 Thread Robert Nagy
Hey, Basically - luasocket defines buffer_init(); which is common enough to be defined elsewhere and it is defined in mod_magnet, so you end up with a SIGSEGV. The attatched patch solves the issue by renaming the buffer_* funcs to ls_buffer_*. Its a totally safe diff that does not affect anythi