Commit e1dfa316 e1dfa31617308c3ad41912dd5857c419bd388cc5 by Sergey Poznyakoff

Updated

1 parent 025f2ed6
1 2005-01-05 Sergey Poznyakoff
2
3 * configure.ac (AUTHLIBS_DEPENDENCY,SQLLIB_DEPENDENCY): New
4 variables. I still hope to find a better solution, though
5 (see comment to imap4d_DEPENDENCIES in imap4d/Makefile.am).
6 New SQL driver: ODBC (--with-sql=odbc or --with-odbc)
7 Raised version number to 0.6.1
8 * NEWS: Updated
9 * README: Updated
10 * auth/Makefile.am: Use explicit PROG_DEPENDENCIES
11 * imap4d/Makefile.am: Likewise.
12 * pop3d/Makefile.am: Likewise.
13
14 * include/mailutils/sql.h (mu_sql_dispatch.errstr): Changed
15 return type to const char*
16 * sql/mysql.c: Likewise
17 * sql/postgres.c: Likewise
18 * sql/sql.c: Likewise
19
20 * sql/odbc.c: New file. ODBC SQL driver.
21 * sql/Makefile.am: Add odbc.c
22
23 * mail/testsuite/mail/read.exp: Updated to match recent changes
24 in diagnostic messages.
25
1 2005-01-04 Sergey Poznyakoff 26 2005-01-04 Sergey Poznyakoff
2 27
3 * libsieve/extensions/vacation.c: New action. Based on 28 * libsieve/extensions/vacation.c: New action. Based on
......
...@@ -4,6 +4,13 @@ See the end of file for copying conditions. ...@@ -4,6 +4,13 @@ See the end of file for copying conditions.
4 4
5 Please send mailutils bug reports to <bug-mailutils@gnu.org>. 5 Please send mailutils bug reports to <bug-mailutils@gnu.org>.
6 6
7 Version 0.6.1:
8
9 * libsieve: New action 'vacation'
10
11 * New SQL driver: odbc
12
13
7 Version 0.6: 14 Version 0.6:
8 15
9 * New features: 16 * New features:
......
...@@ -60,14 +60,14 @@ specific configuration options: ...@@ -60,14 +60,14 @@ specific configuration options:
60 60
61 Enable support for authentication using given SQL modules. MODLIST 61 Enable support for authentication using given SQL modules. MODLIST
62 is a colon-separated list of SQL modules to use. Available modules 62 is a colon-separated list of SQL modules to use. Available modules
63 are 'mysql' and 'postgres'. E.g.: 63 are 'mysql', 'postgres' and 'odbc'. E.g., to enable all modules:
64 64
65 --with-sql=mysql:postgres 65 --with-sql=mysql:postgres:odbc
66 66
67 67
68 Note that depending 68 Note that depending on how your SQL systems are installed,
69 on how your SQL systems are installed, this may require adding 69 this may require adding appropriate directories to the library
70 appropriate directories to the library and include paths, e.g. 70 and include paths, e.g.
71 71
72 72
73 ./configure LIBS='-L/usr/local/mysql/lib -L/usr/local/pgsql/lib' \ 73 ./configure LIBS='-L/usr/local/mysql/lib -L/usr/local/pgsql/lib' \
...@@ -93,6 +93,16 @@ specific configuration options: ...@@ -93,6 +93,16 @@ specific configuration options:
93 93
94 You may have to explicitly specify LIBS and CPPFLAGS (see above). 94 You may have to explicitly specify LIBS and CPPFLAGS (see above).
95 95
96 --with-odbc[={odbc|iodbc}]
97
98 Without arguments or with 'odbc' as its argument it is equivalent
99 to --with-sql=odbc.
100
101 --with-odbc=iodbc enables ODBC support via libiodbc.
102
103 You may have to explicitly specify LIBS and CPPFLAGS (see above).
104
105
96 --enable-mh-utils 106 --enable-mh-utils
97 107
98 Build a suite of MH utilities. The GNU implementation of MH is 108 Build a suite of MH utilities. The GNU implementation of MH is
......