[packages/php/PHP_5_3] more missing includes and type fixes

atler atler at pld-linux.org
Thu Jan 30 14:31:11 CET 2025


commit fb23efc6aa24cd1d7978a482dc977abd91b2ccf0
Author: Jan Palus <atler at pld-linux.org>
Date:   Thu Jan 30 11:40:21 2025 +0100

    more missing includes and type fixes

 includes.patch | 11 +++++++++++
 types.patch    | 37 +++++++++++++++++++++++++++++++++++++
 2 files changed, 48 insertions(+)
---
diff --git a/includes.patch b/includes.patch
index b26b8c5..244b309 100644
--- a/includes.patch
+++ b/includes.patch
@@ -9,3 +9,14 @@
  
  #include "lsapilib.h"
  
+--- php-5.4.45/ext/gd/gd.c.orig	2015-09-01 22:09:37.000000000 +0200
++++ php-5.4.45/ext/gd/gd.c	2025-01-30 11:13:10.169237812 +0100
+@@ -74,6 +74,8 @@
+ #include <gdfontl.h>  /* 4 Large font */
+ #include <gdfontg.h>  /* 5 Giant font */
+ 
++#include "gdhelpers.h"
++
+ #ifdef HAVE_GD_WBMP
+ #include "libgd/wbmp.h"
+ #endif
diff --git a/types.patch b/types.patch
index 0c3fe3b..f258d04 100644
--- a/types.patch
+++ b/types.patch
@@ -370,3 +370,40 @@
  
  #define CRC32(c, b) (crc[((c) ^ (b)) & 0xff] ^ ((c) >> 8))
  
+--- php-5.4.45/ext/pdo_odbc/odbc_stmt.c.orig	2015-09-01 22:09:37.000000000 +0200
++++ php-5.4.45/ext/pdo_odbc/odbc_stmt.c	2025-01-30 11:36:24.490415177 +0100
+@@ -279,7 +279,7 @@
+ 	pdo_odbc_stmt *S = (pdo_odbc_stmt*)stmt->driver_data;
+ 	RETCODE rc;
+ 	SWORD sqltype = 0, ctype = 0, scale = 0, nullable = 0;
+-	UDWORD precision = 0;
++	SQLULEN precision = 0;
+ 	pdo_odbc_param *P;
+ 	
+ 	/* we're only interested in parameters for prepared SQL right now */
+@@ -370,13 +370,14 @@
+ 					return 0;
+ 				}
+ 
++				SQLLEN len = P->len;
+ 				rc = SQLBindParameter(S->stmt, (SQLUSMALLINT) param->paramno+1,
+ 						P->paramtype, ctype, sqltype, precision, scale,
+ 						P->paramtype == SQL_PARAM_INPUT ? 
+ 							(SQLPOINTER)param :
+ 							P->outbuf,
+-						P->len,
+-						&P->len
++						len,
++						&len
+ 						);
+ 	
+ 				if (rc == SQL_SUCCESS || rc == SQL_SUCCESS_WITH_INFO) {
+@@ -551,7 +552,7 @@
+ 	struct pdo_column_data *col = &stmt->columns[colno];
+ 	RETCODE rc;
+ 	SWORD	colnamelen;
+-	SDWORD	colsize;
++	SQLULEN	colsize;
+ 	SQLLEN displaysize;
+ 
+ 	rc = SQLDescribeCol(S->stmt, colno+1, S->cols[colno].colname,
================================================================

---- gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/php.git/commitdiff/fa45464d430906614c2c00fb7f0736ecec41f51f



More information about the pld-cvs-commit mailing list