[Informixdb-cvs] informixdb setup.py,1.16,1.17
Brought to you by:
chaese,
f-apolloner
From: Carsten H. <ch...@us...> - 2007-02-16 03:45:20
|
Update of /cvsroot/informixdb/informixdb In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv30769 Modified Files: setup.py Log Message: make esql version check compatible with IBM Informix CSDK 3.00 Index: setup.py =================================================================== RCS file: /cvsroot/informixdb/informixdb/setup.py,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -d -r1.16 -r1.17 *** setup.py 23 Dec 2006 05:34:48 -0000 1.16 --- setup.py 16 Feb 2007 03:45:18 -0000 1.17 *************** *** 71,77 **** esqlversion = int(matchgroups[1] + matchgroups[2]) if matchgroups[0]=="IBM": ! # IBM Informix CSDK 2.90 reports the ESQL version as 2.90 ! # even though it's ESQL 9.xx ! if esqlversion == 290: esqlversion = 960 if esqlversion==None: esqlversion = 850 --- 71,76 ---- esqlversion = int(matchgroups[1] + matchgroups[2]) if matchgroups[0]=="IBM": ! # Assume ESQL 9.xx for any IBM branded CSDK. ! esqlversion = 960 if esqlversion==None: esqlversion = 850 |