Commit e1dfa316 e1dfa31617308c3ad41912dd5857c419bd388cc5 by Sergey Poznyakoff

Updated

1 parent 025f2ed6
2005-01-05 Sergey Poznyakoff
* configure.ac (AUTHLIBS_DEPENDENCY,SQLLIB_DEPENDENCY): New
variables. I still hope to find a better solution, though
(see comment to imap4d_DEPENDENCIES in imap4d/Makefile.am).
New SQL driver: ODBC (--with-sql=odbc or --with-odbc)
Raised version number to 0.6.1
* NEWS: Updated
* README: Updated
* auth/Makefile.am: Use explicit PROG_DEPENDENCIES
* imap4d/Makefile.am: Likewise.
* pop3d/Makefile.am: Likewise.
* include/mailutils/sql.h (mu_sql_dispatch.errstr): Changed
return type to const char*
* sql/mysql.c: Likewise
* sql/postgres.c: Likewise
* sql/sql.c: Likewise
* sql/odbc.c: New file. ODBC SQL driver.
* sql/Makefile.am: Add odbc.c
* mail/testsuite/mail/read.exp: Updated to match recent changes
in diagnostic messages.
2005-01-04 Sergey Poznyakoff
* libsieve/extensions/vacation.c: New action. Based on
......
......@@ -4,6 +4,13 @@ See the end of file for copying conditions.
Please send mailutils bug reports to <bug-mailutils@gnu.org>.
Version 0.6.1:
* libsieve: New action 'vacation'
* New SQL driver: odbc
Version 0.6:
* New features:
......
......@@ -60,14 +60,14 @@ specific configuration options:
Enable support for authentication using given SQL modules. MODLIST
is a colon-separated list of SQL modules to use. Available modules
are 'mysql' and 'postgres'. E.g.:
are 'mysql', 'postgres' and 'odbc'. E.g., to enable all modules:
--with-sql=mysql:postgres
--with-sql=mysql:postgres:odbc
Note that depending
on how your SQL systems are installed, this may require adding
appropriate directories to the library and include paths, e.g.
Note that depending on how your SQL systems are installed,
this may require adding appropriate directories to the library
and include paths, e.g.
./configure LIBS='-L/usr/local/mysql/lib -L/usr/local/pgsql/lib' \
......@@ -93,6 +93,16 @@ specific configuration options:
You may have to explicitly specify LIBS and CPPFLAGS (see above).
--with-odbc[={odbc|iodbc}]
Without arguments or with 'odbc' as its argument it is equivalent
to --with-sql=odbc.
--with-odbc=iodbc enables ODBC support via libiodbc.
You may have to explicitly specify LIBS and CPPFLAGS (see above).
--enable-mh-utils
Build a suite of MH utilities. The GNU implementation of MH is
......