Sam Varshavchik wrote:
>
> This is a development build. sqwebmail-2.0.0.20010425.tar.gz can be
> downloaded from ftp://courier.sourceforge.net/pub/courier/sqwebmail/
>
> Changes since release 2.0.0 are minor updates to the authldap and authmysql
> modules, improving error recovery and configuration flexibility. See the
> changelog for more information.
Hi
I use sqwebmail on FreeBSD box with Mysql-3.23.37. And if `mysql_config
--cflags` return:
-I'/usr/local/include/mysql'
then authlib/authmysql.h must include:
#include <mysql.h>
#include <errmsg.h>
instead
#include <mysql/mysql.h>
#include <mysql/errmsg.h>
and in authlib/authmysqllib.c
#include <mysql.h>
instead
#include <mysql/mysql.h>
Sorry for my english.
michalw