2015-02-10  iODBC Maintainer  <iodbc@openlinksw.com>

	Merge branch 'hotfix/3.52.10.1'

	Added missing file to distribution

	Merge branch 'release/3.52.10'

	Updated NEWS

	Updated version number to 3.52.10 for final release

	Added missing files from distribution

2015-02-06  Sergey Malinin  <smalinin@openlinksw.com>

	Fix Unicode conversion issues

	- SQLGetDiagField(,,,SQL_DIAG_MESSAGE_TEXT,,,) - possible memory overwrite
	- SQLGetDiagField() - output string truncation when SQLGetDiagFieldW is call with ANSI ODBC driver
	- SQLGetConnectAttr() - output string truncation when SQLGetConnectAttrW is call with ANSI ODBC driver
	- SQLGetDescField() - output string truncation when SQLGetDescFieldW is call with ANSI ODBC driver
	- SQLColAttribute() - output string truncation when SQLColAttributeW is call with ANSI ODBC driver

2015-02-05  iODBC Maintainer  <iodbc@openlinksw.com>

	Updated version to 3.52.10-rc1 for upcoming release

	Updated NEWS

	Updated version strings to 3.52.10 for upcoming release

2015-02-05  Sergey Malinin  <smalinin@openlinksw.com>

	Fixed UI elements

	* Use SingleLine attribute for all textFields
	* Fixed messages below the various tabs

2015-01-31  iODBC Maintainer  <iodbc@openlinksw.com>

	Install iODBC Administrator in /Applications/iODBC/

2015-01-31  Patrick van Kleef  <pkleef@openlinksw.com>

	Ignore error if directory already exists

	Renamedd OpenLink ODBC Administrator to iODBC Administrator

	Fixed About dialog and other text to make a more generic Administrator

2015-01-31  Sergey Malinin  <smalinin@openlinksw.com>

	Fixed FileDSN default path

	From /Library/ODBC/ODBCDataSources => $HOME/Documents

2015-01-31  Sergey Malinin  <smalinin@openlinksw.com>

	Fixed FileDSN save dialog and Set Trace file option

2015-01-29  iODBC Maintainer  <iodbc@openlinksw.com>

	Fixed app names/titles to iODBC Demo Unicode and iODBC Demo Ansi

	Fixed permissions

2015-01-29  Sergey Malinin  <smalinin@openlinksw.com>

	Updated iODBCdemo on Mac OS X to support blue links in gridView

2015-01-28  Sergey Malinin  <smalinin@openlinksw.com>

	Fixed issue with ~/Library/ODBC/odbc[inst].ini on Mac OS X

	iODBC creates ~/.odbc[inst].ini when ~/Library/ODBC/odbc[inst].ini does not exist
	* If $HOME/.odbc[inst].ini exists, import it and after this
	  replace it with link to $HOME/Library/ODBC/.odbc[inst].ini
	* open $HOME/Library/ODBC/odbc[inst].ini always and doesn't use $HOME/odbc[inst].ini

2015-01-21  Sergey Malinin  <smalinin@openlinksw.com>

	Fixed Mac OS X file chooser dialogs to return long file names

2015-01-07  iODBC Maintainer  <iodbc@openlinksw.com>

	Fixed About

	Fixed branding

	Fixed typo

	Added build support for Mac OS X 10.10

	Updated About dialogs

	Updated copyright to include 2015

2015-01-06  iODBC Maintainer  <iodbc@openlinksw.com>

	Updated iODBC version timestamp

2015-01-06  Sergey Malinin  <smalinin@openlinksw.com>

	Fix  - OSX iODBC Demo.app shows gridView with columns, that could not be resized, for "SPARQL DESCRIBE..." queries

2015-01-05  iODBC Maintainer  <iodbc@openlinksw.com>

	Updated copyright to include 2015

2014-04-15  iODBC Maintainer  <iodbc@openlinksw.com>

	Updated version to 3.52.10-dev to signal start of new development cycle

	Merge branch 'release/3.52.9' into develop

	Merge branch 'release/3.52.9'

	Updated Debian build files

	Updated iODBC package version to 3.52.9 for final release

2014-04-15  Patrick van Kleef  <pkleef@openlinksw.com>

	Updated NEWS

	Merge fixes

2014-04-15  iODBC Maintainer  <iodbc@openlinksw.com>

	Added support for Mac OS X 10.9

2014-04-15  Patrick van Kleef  <pkleef@openlinksw.com>

	Removed ChangeLog as it is generated

	Added unix build directories to ignore list

2014-04-15  Patrick van Kleef  <pkleef@openlinksw.com>

	Partially reverted recent change for version autoconf/libtool

	Recent changes did not work properly with the minimum required versions
	of autoconf and libtool

2014-04-15  Patrick van Kleef  <pkleef@openlinksw.com>

	Updated files to reflect minimum versions of autoconf/automake/libtool

2014-04-01  iODBC Maintainer  <iodbc@openlinksw.com>

	Updated version to 3.32.9-dev

2014-04-01  Sergey Malinin  <smalinin@openlinksw.com>

	Miscellaneous fixes from a developer from Teragram

	configure.in:

	* Rewrote the "underscore before symbols" code snippet to eliminate
	   warnings (e.g. improper main() prototype) and potential optimizing-out
	   of the fnord() function
	* Use ${CFLAGS} with ${CC}, as the former may contain important flags
	* Fail if pthread.h is not found, otherwise the configuration falls into
	   a state where threading is enabled, but the header is missing

	include/sqltypes.h:
	* Need to check whether _MSC_VER is defined before using it in a cpp
	   conditional, otherwise -Wundef gives a warning

	iodbc/dlproc.h:
	* Simplified the conditional affecting the definition of HDLL. (Is there
	   any non-Win32 system that provides this type?)

	http://sourceforge.net/p/iodbc/mailman/message/29560355/

2014-04-01  Sergey Malinin  <smalinin@openlinksw.com>

	Build system updates

	++ acinclude.m4
	* Properly quote macro name in AC_DEFUN
	* Use AC_LINK_IFELSE instead of the obsolete AC_TRY_LINK

	++ admin/gtk-2.0.m4, admin/gtk.m4
	* Properly quote macro name in AC_DEFUN

	++ bootstrap.sh
	* Call the various Autotools initialization programs with --warnings=all
	   where applicable, to help with QA (and autoconf also gets no-obsolete so
	   we don't hear about the obsolete usages still in the GTK m4 macros)

	++ configure.in
	* Use AC_CONFIG_HEADERS instead of the obsolete AM_CONFIG_HEADER
	* Use AS_HELP_STRING instead of the obsolete AC_HELP_STRING
	* Don't use A[CS]_HELP_STRING inside an echo "...", as this is not how the
	   macro is intended to be used, and it doesn't do much good anyway
	* Use AM_PROG_CC_C_O because AC_PROG_CC_C_O is not sufficient
	* Replaced the obsolete AC_LIBTOOL_DLOPEN and AM_PROG_LIBTOOL macros with
	   a call to LT_INIT
	* Fixed the doc string for --disable-gui
	* Use AC_RUN_IFELSE instead of the obsolete AC_TRY_RUN
	* Can't use a variable in the doc string for --with-iodbc-filedsnpath, so
	   replaced "$inidir" with "INIDIR"
	* Rewrote the config info summary at the end to use "cat <<EOF" instead of
	   a bunch of echo commands; this is more readable and makes getting the
	   tabs right a *lot* easier

	++ drvproxy/Makefile.am, drvproxy/gtk/Makefile.am, iodbc/Makefile.am,
	    iodbc/trace/Makefile.am, iodbcadm/Makefile.am,
	    iodbcadm/gtk/Makefile.am, iodbcinst/Makefile.am, samples/Makefile.am
	* Use AM_CPPFLAGS instead of the obsolete variable name INCLUDES

	http://sourceforge.net/p/iodbc/mailman/message/29590554/

2014-04-01  Sergey Malinin  <smalinin@openlinksw.com>

	Fixed infinite loop in connection pool

	http://sourceforge.net/p/iodbc/mailman/message/29986083/

2014-04-01  Sergey Malinin  <smalinin@openlinksw.com>

	Fix build warning messages and using "strlen" function with unicode data

	- fix build warning messages
	- fix using strlen with unicode data

2014-04-01  Sergey Malinin  <smalinin@openlinksw.com>

	Fix check, if Unicode driver is used

	http://sourceforge.net/p/iodbc/mailman/message/31801152/

2014-04-01  iODBC Maintainer  <iodbc@openlinksw.com>

	Merge branch 'feature/fix_pkg_config_and_odbc_config' into develop

	Fixed typo

2014-04-01  Sergey Malinin  <smalinin@openlinksw.com>

	Fixes for the pkg-config file and iodbc-config

	http://sourceforge.net/p/iodbc/mailman/message/29721400/

2014-04-01  Sergey Malinin  <smalinin@openlinksw.com>

	Fix issue, when SQLCancel is call from another thread

	From a developer at MySQL/Sun/Oracle, an issue with SQLCancel()
	http://sourceforge.net/p/iodbc/mailman/message/31944526/

2014-03-27  Sergey Malinin  <smalinin@openlinksw.com>

	SQLInstallDriverEx does not work when driver library is read-only

2014-02-17  iODBC Maintainer  <iodbc@openlinksw.com>

	Updated copyright year

2013-01-08  iODBC Maintainer  <iodbc@openlinksw.com>

	Fixed missing declaration

	Fixed issue with dladdr prototype on linux

	Fixed issue with build dependancy when using make -j6

	Fixed compiler warnings on newer Xcode compilers Mac OS X

	Added support for Mac OS X 10.8

	Added support for Mac OS X 10.8

	Fixed issue with SDKs path on Mac OS X 10.7

	Added support for Mac OS X 10.7

	Fixed deprecated macro

2013-01-04  Patrick van Kleef  <pkleef@openlinksw.com>

	Updated copyright to include 2013

2012-03-27  Patrick van Kleef  <patrick@taz.pvk.private>

	Added missing file

2012-03-27  Patrick van Kleef  <pkleef@openlinksw.com>

	Merge branch 'release/v3.52.8' into develop

	Merge branch 'release/v3.52.8'

	Updated documentation

	Added info to NEWS

	Updated changelog

	Updated version number to 3.52.8

	Added support for Mac OS X 10.7

2012-03-26  Patrick van Kleef  <pkleef@openlinksw.com>

	Fixed list of files to be distributed

	Updated version to 3.52.8-rc1

	Removed old .cvsignore files

	Merge branch 'feature/mac_ui' into develop

	Updated version of iODBC Demo to 1.1

	Converted build rules to compile the UI from new .xib files

	Fixed problem installing CFMSupport

	Converted old .nib format to .xib format

	Added Mac OS X build files to ignore list

	Added more files to ignore

	Added initial .gitignore

2012-03-12  Patrick van Kleef  <pkleef@openlinksw.com>

	* Updated copyright to 2012

2011-08-10  Patrick van Kleef  <pkleef@openlinksw.com>

	* Fixed issue with using buffer after free

	* Updated copyright year

2010-09-04  Patrick van Kleef  <pkleef@openlinksw.com>

	* Fixed use ssize_t where appropriate

	* Fixed compiler warning

	* Fixed version info

	* Fixed warnings

	* Fixed issue with strlen if param can be NULL

	* Fixed use ssize_t for length of string * Fixed tracing SQLGetData using multiple chunks * Fixed problem tracing on big-endian machines

	* Removed unused variables

	* Fixed wrong type label

2009-09-10  Patrick van Kleef  <pkleef@openlinksw.com>

	* Fixed version

	*** empty log message ***

	*** empty log message ***

	* Updated version of package to 3.52.7 for final release * Updated library versions

	* Fixed loading libdrvproxy.so.2 and libiodbcadm.so.2 using major version   number. * Removed libdrvproxy.{a|so} and libiodbcadm.{a|so} from packaging   since they are not development libraries that user applications   should try to link with.

	* Fixed instructions

	*** empty log message ***

	* Fixed distribution packaging

2009-09-09  Patrick van Kleef  <pkleef@openlinksw.com>

	* Removed deprecated file

	* Removed space from file name

	* Moved iodbcunix.h from sql.h to sqltypes.h

	* Fixed description

	* Updated debian files

	* Fixed compiler warnings

	* Updated version info

	* Fixed compile flags

	* Fixed check for wchar.h on Mac framework build

	* Moved symbol files

	* Added install rules for iODBC CFM bridge

	* Added iODBC CFM Bridge code

	* Added support for overruling CFLAGS, CC and other environment vars

	* Updated Mac OS X build instructions

	* Fixed building/installing iODBC Demo Unicode version * Removed sudo from rules, user should perform 'sudo make install"

2009-09-08  Patrick van Kleef  <pkleef@openlinksw.com>

	* Fixed portability between various versions of Mac OS X

	* Updated version info

	* Added support for building solaris 2.10 on AMD64 and Sparc

	* Added support for Mac OS X 10.6

	*** empty log message ***

	* Added defines for Virtuoso ODBC SPASQL extensions

	* Fixed case label for x86_64 linux systems

	* Fixed compiler warning

	* FIxed namespace for internal dlopen functions

	* Added support for Mac OS X 10.6

	* Added support for Mac OS X 10.5

2009-09-07  Patrick van Kleef  <pkleef@openlinksw.com>

	* Fixed allow installation in temp directory structure

	* Fixed typo

	* More files to ignore

	* Fixed install rules

	* Fixed copyright year

	* Fixed support to quit application from decoration

	* Added iODBCdemo sample program for Mac OS X

2009-09-02  Patrick van Kleef  <pkleef@openlinksw.com>

	* Fixed prototype

	* Fixed find relevant section instead of reading all entries in the file

2009-09-01  Patrick van Kleef  <pkleef@openlinksw.com>

	*** empty log message ***

	* Ignore files from libtool 2.x

	* Set minimum requirement for auto* tools to match RedHat Enterprise 4

	* Use newer RPM macros for building to fix building on x86_64 * Fixed configure to completely disable building UI extensions when   using rpmbuild --define 'noadmin 1' .....

	* Fixed prototype

	*** empty log message ***

	*** empty log message ***

	* Fixed group box size

2009-08-31  Patrick van Kleef  <pkleef@openlinksw.com>

	* Fixed wrong text on tab

2009-08-30  Patrick van Kleef  <pkleef@openlinksw.com>

	*** empty log message ***

	* Fixed unload bug  deref wrong pointer

	* Added support for $S (sequence number) in TraceFile

	* When tracefile length has reached its limit, try to open a new tracefile

	* Fixed default window sizes

	* Fixed typos

	* Fixed typos

	* Updated copyright year to 2009

	* Fixed licensing information

	* Fixed GTK based administrative code to use resizable windows

2009-06-24  Patrick van Kleef  <pkleef@openlinksw.com>

	* Updated release number

2009-02-23  Patrick van Kleef  <pkleef@openlinksw.com>

	* Moved Mac OS X gui components

	* Moved Mac OS X gui components

2009-02-16  Patrick van Kleef  <pkleef@openlinksw.com>

	* Added support for Mac OS X 10.5

	* Fixed missing function

	* Removed old endif

2009-01-30  Sergey Malinin  <smalinin@openlinksw.com>

	* Added additional translations between unicode and ansi components (sm)

	* Added additional translations between unicode and ansi components (sm)

2008-10-30  Patrick van Kleef  <pkleef@openlinksw.com>

	* Updated spec file to latest standards

2008-04-25  Patrick van Kleef  <pkleef@openlinksw.com>

	* Fixed Connection Pooling UI

2008-03-14  Patrick van Kleef  <pkleef@openlinksw.com>

	* Fixed bug checking for odbc_ver on connect handle

2007-10-08  Patrick van Kleef  <pkleef@openlinksw.com>

	* Updated version to 3.52.6 for final release (pvk)

	*** empty log message ***

	* Updated version to 3.52.6 for final release (pvk)

	*** empty log message ***

	* Fixed problem returning memory allocation error when max length of buffer   was set to 0.

2007-10-07  Patrick van Kleef  <pkleef@openlinksw.com>

	*** empty log message ***

	* Updated instructions to get CVS tree from sourceforge archive

	* Fixed checking for driver version when not connected

	* Fixed typo

	* Fixed for openbsd

	* Fixed towlower on older Mac OS X systems * Use dummy towlower on systems that have no native support

	* Fixed wchar check for FreeBSD 4.8 (pvk)

	* Fixed checking pthread library on OSF 3.x and OSF 4.x (pvk)

	* Fixed problem with C variable scope (pvk)

2007-10-02  Patrick van Kleef  <pkleef@openlinksw.com>

	* Removed AutoReqProv:no setting

2007-10-01  Patrick van Kleef  <pkleef@openlinksw.com>

	* Disabled building/installing old libodbc.a as this can interfere with   other driver managers * Fixed License keyword * Updated version of rpm

2007-09-10  Patrick van Kleef  <pkleef@openlinksw.com>

	* Don't keep odbc mutex unnecessary long

	* Split locking section into smaller segements

2007-09-04  Patrick van Kleef  <pkleef@openlinksw.com>

	* Fixed typos

	* Fixed return code when driver could not be found

	* Fixed error messages

	* Use SQLFetchScroll on ODBC 3.x

	* Added missing SQLStmtOptionA to export list

	* Fixed checking for driver version when not connected

2007-02-02  Sergey Malinin  <smalinin@openlinksw.com>

	* Added initial support for gtk+ 2.x (sm)

	* Fixed Unicode bug in SQLBrowseConnect * Added SQLBrowseConnectW to export-symbol list   (sm)

2007-01-08  Patrick van Kleef  <pkleef@openlinksw.com>

	* Minor text changes (pvk)

2007-01-05  Patrick van Kleef  <pkleef@openlinksw.com>

	*** empty log message ***

	* Updated version to 3.53.5 (pvk)

	* Added support for RedHat FC6 64bit (pvk)

	*** empty log message ***

	* Reverted incomplete patch (pvk)

2007-01-03  Sergey Malinin  <smalinin@openlinksw.com>

	* Fixed buffer size calculation (sm)

	* Fixed problem connecting with FileDSN (sm)

	* Fixed missing newline when showing parameters (sm)

2006-12-21  Patrick van Kleef  <pkleef@openlinksw.com>

	* Increased limit of tracedump char and hex data to 1000 lines max (pvk)

	* Limit the size of the tracefile to about 1Gb (pvk)

2006-12-21  Sergey Malinin  <smalinin@openlinksw.com>

	* Fixed problems with FileDSN in GTK build (sm)

2006-12-15  Patrick van Kleef  <pkleef@openlinksw.com>

	* Updated version to 3.52.5-rc2

	* Added configure option to set default FileDSN directory (pvk)

2006-12-15  Sergey Malinin  <smalinin@openlinksw.com>

	* Allow user to bypass connection check when adding a FileDSN (sm)

2006-12-12  Patrick van Kleef  <pkleef@openlinksw.com>

	* Removed bogus free (pvk)

	* Removed duplicate error message box (pvk)

2006-12-11  Patrick van Kleef  <pkleef@openlinksw.com>

	* Incorporated diff from debian web site (pvk)

	* Updated version to 3.52.5-rc1

	* Fixed problem when driver has not yet been connected (pvk)

	* Use SQL_SUCCEEDED macro to increase readability (pvk)

	* Fixed problem always returning SQL_ERROR due to logic bug (pvk)

	* Call ODBC 2.x functions in driver if application uses ODBC 2.x only   (pvk)

2006-09-25  Sergey Malinin  <smalinin@openlinksw.com>

	* Call ODBC 2.x functions in driver if application uses ODBC 2.x only   (sm)

2006-08-03  Patrick van Kleef  <pkleef@openlinksw.com>

	* Added missing header to distribution

2006-07-17  Patrick van Kleef  <pkleef@openlinksw.com>

	* Removed procid reference from code and simplified call mechanism (pvk)

2006-07-11  Patrick van Kleef  <pkleef@openlinksw.com>

	* Simplified CALL_DRIVER and CALL_UDRIVER macros

2006-07-10  Patrick van Kleef  <pkleef@openlinksw.com>

	* Merged FileDSN and ConnectionPooling support from iODBC-3_52_4-DEVEL

	* Merged FileDSN and ConnectionPooling support from iODBC-3_52_4-DEVEL

	* Merged FileDSN support from iODBC-3_52_4-DEVEL into HEAD

	* Use highlighting in overview screen (pvk)

	* Rewrote bootstrap script to be more verbose about programs/versions   needed (pvk)

2006-04-27  Sergey Malinin  <smalinin@openlinksw.com>

	* Skip {..}  when parsing connect string (sm)

2006-03-21  Patrick van Kleef  <pkleef@openlinksw.com>

	* Use localtime_r (pvk)

2006-03-06  Patrick van Kleef  <pkleef@openlinksw.com>

	* Fixed typo in function prototype (pvk)

2006-03-03  Patrick van Kleef  <pkleef@openlinksw.com>

	* Updated Info strings (pvk)

2006-02-24  Sergey Malinin  <smalinin@openlinksw.com>

	* Let the driver manager call the setup dialogs for now and then   call the driver with SQL_DRIVER_NOPROMPT (sm)

2006-02-13  Patrick van Kleef  <pkleef@openlinksw.com>

	* Version information is inserted by installer scripts (pvk)

	* Added sccid to all sections to get string with load type into binary (pvk)

2006-02-08  Patrick van Kleef  <pkleef@openlinksw.com>

	* Remove ppc64 from universal builds (pvk)

2006-02-03  Patrick van Kleef  <pkleef@openlinksw.com>

	* Fixed include file problem on Mac OS X 10.3 (pvk)

	* Added realclean rule (pvk)

2006-01-26  Patrick van Kleef  <pkleef@openlinksw.com>

	*** empty log message ***

	* Finalized iODBC-3.52.4 release (pvk)

	* Updated version number to 3.52.4 (pvk)

	* Add -Wl,+s to HP/UX builds to enable SHLIB_PATH handling (pvk)

	* Moved darwin specific -DNO_FRAMEWORKS from PORT.OpenLink to configure.in * Updated build instructions for Mac OS X   (pvk)

	* Updated version number and build number in preparation for release (pvk)

	* Fixed copyright notice (pvk)

	* Added missing include directory (pvk)

2006-01-25  Patrick van Kleef  <pkleef@openlinksw.com>

	* Added project files for Mac OS X 10.4 Universal builds (pvk)

	* Make it easier to change buildstyles (pvk)

	* Fixed order in which targets need to be installed (pvk)

	* Converted Xcode project files for Mac OS X 10.4 Universal builds (pvk)

	* Fixed bug in determining which version of Mac OS X we build on (pvk)

	* Cleanup Mac OS X project files (pvk)

	* Cleanup Mac OS X project files (pvk)

	* Cleanup Mac OS X project files (pvk)

	* Updated version number (pvk)

2006-01-24  Patrick van Kleef  <pkleef@openlinksw.com>

	* Simplified building process (pvk)

	* Fixed include paths (pvk)

	* Fixed wchar_t issue on Mac OS X (pvk)

	* Added new version macros for Mac OS X build (pvk)

	* Fixed building and installing iodbctest and iodbctestw (pvk)

	* Files to ignore (pvk)

	* Added guard against including sqlext.h twice (pvk)

	* Fixed include paths building on Mac OS X (pvk)

	* Added proper header file for prototypes * Fixed typo in function name   (pvk)

	* Fixed compiler warnings (pvk)

	* Fixed some compiler warnings (pvk)

2006-01-20  Patrick van Kleef  <pkleef@openlinksw.com>

	* Clarify which version of the LGPL license this project adheres to   (pvk)

	* Fixed temporary framework search paths * Fixed framework version for non-standard build   (pvk)

	* Moved dlf.[ch] and unicode.[ch] to iodbcinst (pvk)

	* Use iodbcinst_common and gtk/libdrvproxy-gtk.la convenience libraries   instead of referring to individual object files   (pvk)

	* Use iodbcinst_common and gtk/libiodbcadm-gtk.la convenience libraries   instead of referring to individual object files   (pvk)

	* Added more functions to export (pvk)

	* Use new iodbcinst_common library so iodbc does not need to be linked   against libiodbcinst. This created problems on various platforms like HP/UX   with static link paths being inserted into the libiodbc.so library   (pvk)

	* Created convenience library with common objects that are used in more   than one place (pvk)

	* Moved dlf.[ch] and unicode.[ch] to iodbcinst (pvk)

	* Moved confirm.c and question.xpm from drvproxy/gtk to iodbcadm/gtk (pvk)

2006-01-18  Patrick van Kleef  <pkleef@openlinksw.com>

	* If towlower does not exist and we cannot use Frameworks, then just return   the original character  (pvk)

	* Added support for Mac OS X 10.2 (pvk)

	* On AIX we prefer the cc_r7 compiler instead of the cc compiler (pvk)

	* Temporarily disabled --disable-odbc3 untill all parts of iODBC DM have   been fixed to compile with ODBCVER=0x0250 (pvk)

	* Unicode and ANSI functions did not exist in ODBC 2.50 (pvk)

2006-01-17  Patrick van Kleef  <pkleef@openlinksw.com>

	* Fixed errors when compiling iODBC for ODBC 2.50 specs (pvk)

	* Fixed ODBCVER (pvk)

2006-01-13  Patrick van Kleef  <pkleef@openlinksw.com>

	* Added support for SUSE Linux on AMD opteron (pvk)

	* Added missing header files for function prototypes (pvk)

2006-01-12  Patrick van Kleef  <pkleef@openlinksw.com>

	* Added support for building on Apple Mac OS X 10.4 ppc, ppc64 and i386   all in one   (pvk)

2006-01-11  Patrick van Kleef  <pkleef@openlinksw.com>

	* Allow # as extra comment character on reading the odbc.ini file. (pvk)

	* If subsequent SQLExecute returns SQL_ERROR, set handle state back to   en_stmt_prepared and leave the prep_state as is.  (pvk)

	* Fixed typo in local variable decl (pvk)

2005-11-07  Patrick van Kleef  <pkleef@openlinksw.com>

	* Added missing file (pvk)

	*** empty log message ***

	* Finalized iODBC-3.52.3 release (pvk)

	* Fixed build issue with previously installed libraries (pvk)

2005-11-04  Patrick van Kleef  <pkleef@openlinksw.com>

	* Fixed problem building on Mac OS X 64bit (pvk)

	* Apple does not provide certain frameworks in 64bit mode yet (pvk)

	* Added Unicode symbols (pvk)

	* Added option to build in current directory (pvk)

	* Updated DM build number and library version number (pvk)

	* Updated version number to 3.52.3 (pvk)

	* Added check for more wchar functions (pvk)

	* Added support for AIX 5.x (pvk)

	* Removed check for xml2 which is not needed for iODBC (pvk)

	* Added support for HP/UX Itanium (pvk)

	* Fixed support for building on Mac OS X 10.3 and 10.4 in Darwin mode (pvk)

	* Added detection for glibtoolize for Mac OS X build (pvk)

	* Apple does not provide certain frameworks in 64bit mode yet (pvk)

2005-10-08  Patrick van Kleef  <pkleef@openlinksw.com>

	* Include config.h if present (pvk)

	* Fixed calculating end of buffer without lvalue cast as some   compilers did not like this construction   (pvk)

	* Ignore files from copied from autoconf/automake/libtool (pvk)

	* Resurrected mkinstalldirs (pvk)

	* Added timestamp to ENTER/EXIT trace lines to get better idea of   where application time was spend; inside or outside of ODBC calls.   (pvk)

	* Removed files that are distributed by autoconf/automake/libtoolize (pvk)

	* Updated build version and library version (pvk)

	* Fixed problem with truncated messages in ODBC_Error function (pvk)

	* C++ normally has wchar_t (pvk)

	* Fixed problem with symbol hiding unicode translation functions (pvk)

2005-09-12  Sergey Malinin  <smalinin@openlinksw.com>

	* Avoid calling _iodbcdm_drvconn_dialbox twice (sm)

2005-09-12  Patrick van Kleef  <pkleef@openlinksw.com>

	* Removed semicolon from end of statement block * Small code cleanup   (pvk)

2005-09-12  Sergey Malinin  <smalinin@openlinksw.com>

	* Set config mode before looking for driver name (sm)

	* Fixed problem with ODBC_BOTH_DSN (sm)

2005-08-30  Patrick van Kleef  <pkleef@openlinksw.com>

	* Reordered InfoTypes based on ODBC version * Fixed problem with some types like SQL_POS_OPERATION and   SQL_POSITIONED_STATEMENTS which where flagged ODBC 2.x only by mistake   (pvk)

2005-08-22  Max Khon  <mkhon@openlinksw.com>

	* Fixed NUL termination problem * DSN input was not disabled correctly   (mk)

	* Fixed NUL termination problem (mk)

2005-08-16  Patrick van Kleef  <pkleef@openlinksw.com>

	* Fixed minor build problems on Mac OS X * Allow both Xcode 1.5 and 2.1 style build directories   (pvk)

	* Disable Carbon framework in Mac OS X 64bit port (pvk)

	* Fixed problem mixing framework type header files, which are prefixed   with framework name, and internal header files   (pvk)

	* Add iodbcinst.h to install target (pvk)

	* Do not distribute iodbc.h header anymore (pvk)

2005-08-15  Patrick van Kleef  <pkleef@openlinksw.com>

	* Install iodbctest and iodbctestw in   /Library/Application Support/iODBC/bin   (pvk)

	* Fixed include files for Mac OS X framework build (pvk)

2005-08-03  Patrick van Kleef  <pkleef@openlinksw.com>

	* Added 'reconnect' command to iodbctest (pvk)

2005-07-29  Sergey Malinin  <smalinin@openlinksw.com>

	* Added defines for Mac OS X 10.3 and newer (sergei)

	* Fixed typo (sergei)

2005-07-27  Sergey Malinin  <smalinin@openlinksw.com>

	* Improve the quality of error messages for dynamic linker problems   (sergei)

2005-07-27  Patrick van Kleef  <pkleef@openlinksw.com>

	* Added Max (pvk)

2005-07-27  Max Khon  <mkhon@openlinksw.com>

	* Recalculate cbConnStrIn as szConnStrIn might have been changed by   iodbcdm_drvconn_dialbox   (mk)

2005-07-19  Patrick van Kleef  <pkleef@openlinksw.com>

	* Changed SQL_DRIVER_PROMPT to SQL_DRIVER_COMPLETE which still allows   drivers that have graphical setup screens to use them, but fixes a   problem with the MyODBC driver which returns a very cryptic   "No DSN entered".   (pvk)

2005-07-16  Patrick van Kleef  <pkleef@openlinksw.com>

	* Added initial support for pkg-config spec file (pvk)

	* Fixed problem with SQLDriverConnect when graphical library could not   be found, the driver manager automatically returned an error when   performing SQLDriverConnect (....., SQL_DRIVER_PROMPT).   Instead we now silently continue to call the driver and hope it either   asks for the missing connection parameters, or return an error.   (pvk)

	* Added support for DSN-less connections (pvk)

2005-05-13  Patrick van Kleef  <pkleef@openlinksw.com>

	* Renamed iodbcinst.h to odbcinst.h (pvk)

	* Replaced enum bool with int (pvk)

	* Use getprogname on Mac OS X 10.3 and above (pvk)

	* Fixed frameworkname for iODBCinst (pvk)

	* Added support for sqlucode.h (pvk)

2005-05-12  Patrick van Kleef  <pkleef@openlinksw.com>

	* Renamed iodbcinst.h to odbcinst.h (pvk)

	* Renamed iodbcinst.h to odbcinst.h (pvk)
[--snip--]
