今天在使用unixODBC 2.3.2
时,无意中又发现了一个bug
。就是在调用configure
程序生成config.h
文件时,关于软件包版本字符串是:
/* Define to the full name and version of this package. */
#define PACKAGE_STRING "unixODBC 2.3.2-pre"
/* Define to the version of this package. */
#define PACKAGE_VERSION "2.3.2-pre"
而实际这个已经是正式的release
版本了,所以软件包版本字符串应该是:
/* Define to the full name and version of this package. */
#define PACKAGE_STRING "unixODBC 2.3.2"
/* Define to the version of this package. */
#define PACKAGE_VERSION "2.3.2"
给Nick
发了个邮件,他也承认是个bug
(A question about config.h )。屈指一算,这已经是我提给unixODBC
的第四个bug
了。记录一下,做个纪念:-):
Add missing unicode setting when returning a connection to the pool;
Wrap lt_dlinit and dlerror in the lib mutex;
Change mutex protection around release_env。