You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -32,17 +49,9 @@ if test "$PHP_IBM_DB2" != "no"; then
32
49
else
33
50
AC_MSG_RESULT()
34
51
fi
35
-
AC_MSG_CHECKING([ in $i/lib64])
36
-
if test -r $i/lib64/libdb2.so || test -r $i/lib64/libdb2.a || test -r $i/lib64/libdb400.a || test -r $i/lib64/libdb2.dylib ; then
37
-
LIB_DIR="$i/lib64/"
38
-
AC_MSG_RESULT(found)
39
-
break
40
-
else
41
-
AC_MSG_RESULT()
42
-
fi
43
-
AC_MSG_CHECKING([ in $i/lib32])
44
-
if test -r $i/lib32/libdb2.so || test -r $i/lib32/libdb2.a || test -r $i/lib32/libdb400.a || test -r $i/lib32/libdb2.dylib ; then
45
-
LIB_DIR="$i/lib32/"
52
+
AC_MSG_CHECKING([ in $i/$libDir])
53
+
if test -r $i/$libDir/libdb2.so || test -r $i/$libDir/libdb2.a || test -r $i/$libDir/libdb400.a || test -r $i/$libDir/libdb2.dylib ; then
54
+
LIB_DIR="$i/$libDir/"
46
55
AC_MSG_RESULT(found)
47
56
break
48
57
else
@@ -60,7 +69,11 @@ if test "$PHP_IBM_DB2" != "no"; then
60
69
61
70
if test -z "$LIB_DIR"; then
62
71
AC_MSG_RESULT([not found])
63
-
AC_MSG_ERROR([Please reinstall the DB2 CLI distribution])
72
+
if test $IBM_DB_HOME ; then
73
+
AC_MSG_ERROR([Cannot find DB2 CLI libraries. Check if you have set the IBM_DB_HOME environment variable's value correctly])
74
+
else
75
+
AC_MSG_ERROR([Environment variable IBM_DB_HOME is not set. Set it to your DB2/IBM_Data_Server_Driver installation directory and retry ibm_db2 module install])
76
+
fi
64
77
fi
65
78
66
79
AC_MSG_CHECKING([for DB2 CLI include files in default path])
Copy file name to clipboardExpand all lines: package.xml
+10-14Lines changed: 10 additions & 14 deletions
Original file line number
Diff line number
Diff line change
@@ -16,34 +16,29 @@ Cloudscape, and Apache Derby databases.
16
16
<email>rahul.priyadarshi@in.ibm.com</email>
17
17
<active>yes</active>
18
18
</lead>
19
-
<lead>
20
-
<name>Ambrish Bhargava</name>
21
-
<user>ambrish</user>
22
-
<email>abhargav@in.ibm.com</email>
23
-
<active>yes</active>
24
-
</lead>
25
19
<lead>
26
20
<name>IBM OpenDev</name>
27
21
<user>kfbombar</user>
28
22
<email>opendev@us.ibm.com</email>
29
23
<active>yes</active>
30
24
</lead>
31
-
<date>2012-03-12</date>
32
-
<time>12:10:00</time>
25
+
<date>2012-08-10</date>
26
+
<time>12:50:00</time>
33
27
<version>
34
-
<release>1.9.3</release>
35
-
<api>1.9.3</api>
28
+
<release>1.9.4</release>
29
+
<api>1.9.4</api>
36
30
</version>
37
31
<stability>
38
32
<release>stable</release>
39
33
<api>stable</api>
40
34
</stability>
41
35
<license>Apache License 2.0</license>
42
36
<notes>
43
-
Fixed: Garbage value for VARCHAR type OUT variable of stored-procedure
44
-
Fixed: Compilation error with php-5.4.x
45
-
i5/OS: Remove compile errors during IBM i compiles due to chaining support
46
-
i5/OS: Allow use of V6+ (SQL_ATTR_INFO_ACCTSTR, SQL_ATTR_INFO_APPLNAME, SQL_ATTR_INFO_PROGRAMID, SQL_ATTR_INFO_USERID, SQL_ATTR_INFO_WRKSTNNAME connection attributes)
37
+
Fixed: DB2 PHP driver does not work as expected with values in BIGINT column
38
+
Added: test case test_bigint.phpt for BIGINT datatype
39
+
Fixed: Persistent connections takes up to 1 hour to reconnect on db2 TSA HA failover
40
+
FIxed: Fixed: Allow trial license to connect ZOS/i5
41
+
Added a environment variable IBM_DB_HOME to make the installation process easy and config script will automatically detect the architecure for which PHP is built and accordingly use the libraries under lib32/lib64.
47
42
</notes>
48
43
<contents>
49
44
<dirname="/">
@@ -279,6 +274,7 @@ Cloudscape, and Apache Derby databases.
0 commit comments