Aaron Jones
Aaron Jones
As the instructions for building on OpenBSD say, you need to use gmake there, not make.
Did you forget to pass `--disable-linker-defs` ?
This is the regular `MKDIR_P` bug we've known about for ages. I'll probably end up fixing that this weekend. It's nice to see that compilation works now though. Note for...
This is probably due to an ABI break. Your current atheme sources are configured to build against an older library. To fix this, you will need to clean your source...
As far as I know, we don't have an official answer one way or the other, as long as the version is recent. That means if you get a 6.x...
This would be far too open to abuse where someone can just hide behind ChanServ.
You forgot to edit `modules/protocol/Makefile`
`opt_last` is uninitialised if the function returns no error, but the caller does not use its value in that case anyway, so that's okay.
Passwords can have spaces; it's just that, due to the argument order for `REGISTER` (password first), `REGISTER` itself cannot accept passwords that contain spaces. However, `SET PASSWORD` and `IDENTIFY` (and...
The only way this could be properly fixed would be to swap the argument order for `REGISTER`, putting the e-mail address first. I'm not sure whether it's worth breaking compatibility...