|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
[2008-09-03 17:19 UTC] franck dot tab at gmail dot com
Description: ------------ Can not compile the package under debian 4.0 Reproduce code: --------------- 1. download http://funcall.googlecode.com/files/funcall-0.2.1.tgz 2. untar 3. phpize && ./configure && make Expected result: ---------------- no errors Actual result: -------------- /bin/sh /root/funcall-0.2.1/libtool --mode=compile gcc -I. -I/root/funcall-0.2.1 -DPHP_ATOM_INC -I/root/funcall-0.2.1/include -I/root/funcall-0.2.1/main -I/root/funcall-0.2.1 -I/usr/include/php5 -I/usr/include/php5/main -I/usr/include/php5/TSRM -I/usr/include/php5/Zend -I/usr/include/php5/ext -I/usr/include/php5/ext/date/lib -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -g -O2 -c /root/funcall-0.2.1/funcall.c -o funcall.lo mkdir .libs gcc -I. -I/root/funcall-0.2.1 -DPHP_ATOM_INC -I/root/funcall-0.2.1/include -I/root/funcall-0.2.1/main -I/root/funcall-0.2.1 -I/usr/include/php5 -I/usr/include/php5/main -I/usr/include/php5/TSRM -I/usr/include/php5/Zend -I/usr/include/php5/ext -I/usr/include/php5/ext/date/lib -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -g -O2 -c /root/funcall-0.2.1/funcall.c -fPIC -DPIC -o .libs/funcall.o /root/funcall-0.2.1/funcall.c: In function 'get_current_function_args': /root/funcall-0.2.1/funcall.c:306: error: 'zend_uintptr_t' undeclared (first use in this function) /root/funcall-0.2.1/funcall.c:306: error: (Each undeclared identifier is reported only once /root/funcall-0.2.1/funcall.c:306: error: for each function it appears in.) PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Oct 27 20:00:01 2025 UTC |
I've got zend_types.h here: /usr/include/php5/Zend/zend_types.h And below lines containing "typedef" string: typedef unsigned char zend_bool; typedef unsigned char zend_uchar; typedef unsigned int zend_uint; typedef unsigned long zend_ulong; typedef unsigned short zend_ushort; typedef unsigned int zend_object_handle; typedef struct _zend_object_handlers zend_object_handlers; typedef struct _zend_object_value { zend_object_handle handle; zend_object_handlers *handlers; } zend_object_value; Franck