Created
December 8, 2016 16:13
-
-
Save jacobsantos/238d863a175d6f1871a3bed78b6c9c1e to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sending build context to Docker daemon 87.04 kB | |
Step 1 : FROM php:7.0-fpm | |
---> a4ecb424acb5 | |
Step 2 : RUN set -ex && apt-get update && apt-get install -y curl g++ openssl libfreetype6-dev libjpeg62-turbo-dev libmcrypt-dev libpng12-dev libicu-dev libxml2-dev libcurl4-openssl-dev libsodium-dev && docker-php-ext-install -j$(nproc) iconv mcrypt json intl xml gettext mbstring soap zip curl mysqli pdo pdo_mysql && docker-php-ext-configure gd --with-freetype-dir=/usr/include/ --with-jpeg-dir=/usr/include/ && docker-php-ext-install -j$(nproc) gd && docker-php-ext-configure bcmath && docker-php-ext-install bcmath && pecl install apc && pecl install libsodium && docker-php-ext-enable libsodium | |
---> Using cache | |
---> 726852f013fd | |
Step 3 : RUN set -ex && apt-get update && apt-get install -y wget unzip libxml2-dev && curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer && curl -fsSL 'http://www.libxl.com/download/libxl-lin-3.6.5.tar.gz' -o /tmp/libxl.tar.gz && tar zxvf /tmp/libxl.tar.gz --directory /tmp/ && mkdir -p /opt/libxl && ls -la /tmp/libxl-* && cp -r /tmp/libxl-3.6.5.0/* /opt/libxl && ls -la /opt/libxl && curl -fsSL 'https://github.com/iliaal/php_excel/archive/master.zip' -o /tmp/php_excel.zip && unzip -o /tmp/php_excel.zip -d /tmp && docker-php-source extract && ls -la /usr/local/include/php && ls -la /usr/local/include/php/include && ls -la /usr/local/include/php/TSRM && ls -la /usr/local/include/php/main && cd /tmp/php_excel-master && phpize && ./configure --with-php-config=$(which php-config) --with-libxl-incdir=/opt/libxl/include_c/ --with-libxl-libdir=/opt/libxl/lib64/ --with-excel=/opt/libxl --with-libxml-dir=/usr/include/libxml2 && make -j$(nproc) && make install && cp /tmp/php_excel-master/modules/excel.so /usr/local/lib/php/extensions/no-debug-non-zts-20151012/excel.so && docker-php-source delete && rm -r /tmp/* | |
---> Running in 2b4dfea78762 | |
[91m+ apt-get update | |
[0mHit http://security.debian.org jessie/updates InRelease | |
Ign http://deb.debian.org jessie InRelease | |
Get:1 http://deb.debian.org jessie-updates InRelease [145 kB] | |
Hit http://deb.debian.org jessie Release.gpg | |
Get:2 http://security.debian.org jessie/updates/main amd64 Packages [421 kB] | |
Hit http://deb.debian.org jessie Release | |
Get:3 http://deb.debian.org jessie-updates/main amd64 Packages [17.6 kB] | |
Get:4 http://deb.debian.org jessie/main amd64 Packages [9064 kB] | |
Fetched 9647 kB in 29s (330 kB/s) | |
Reading package lists... | |
[91m+ [0m[91mapt-get[0m[91m install[0m[91m -y[0m[91m wget[0m[91m unzip[0m[91m libxml2-dev[0m[91m | |
[0mReading package lists... | |
Building dependency tree... | |
Reading state information... | |
libxml2-dev is already the newest version. | |
Suggested packages: | |
zip | |
The following NEW packages will be installed: | |
libpsl0 unzip wget | |
0 upgraded, 3 newly installed, 0 to remove and 1 not upgraded. | |
Need to get 700 kB of archives. | |
After this operation, 2636 kB of additional disk space will be used. | |
Get:1 http://deb.debian.org/debian/ jessie/main libpsl0 amd64 0.5.1-1 [41.6 kB] | |
Get:2 http://deb.debian.org/debian/ jessie/main wget amd64 1.16-1+deb8u1 [496 kB] | |
Get:3 http://deb.debian.org/debian/ jessie/main unzip amd64 6.0-16+deb8u2 [162 kB] | |
[91mdebconf: delaying package configuration, since apt-utils is not installed | |
[0mFetched 700 kB in 1s (456 kB/s) | |
Selecting previously unselected package libpsl0:amd64. | |
(Reading database ... | |
(Reading database ... 5% | |
(Reading database ... 10% | |
(Reading database ... 15% | |
(Reading database ... 20% | |
(Reading database ... 25% | |
(Reading database ... 30% | |
(Reading database ... 35% | |
(Reading database ... 40% | |
(Reading database ... 45% | |
(Reading database ... 50% | |
(Reading database ... 55% | |
(Reading database ... 60% | |
(Reading database ... 65% | |
(Reading database ... 70% | |
(Reading database ... 75% | |
(Reading database ... 80% | |
(Reading database ... 85% | |
(Reading database ... 90% | |
(Reading database ... 95% | |
(Reading database ... 100% | |
(Reading database ... 13254 files and directories currently installed.) | |
Preparing to unpack .../libpsl0_0.5.1-1_amd64.deb ... | |
Unpacking libpsl0:amd64 (0.5.1-1) ... | |
Selecting previously unselected package wget. | |
Preparing to unpack .../wget_1.16-1+deb8u1_amd64.deb ... | |
Unpacking wget (1.16-1+deb8u1) ... | |
Selecting previously unselected package unzip. | |
Preparing to unpack .../unzip_6.0-16+deb8u2_amd64.deb ... | |
Unpacking unzip (6.0-16+deb8u2) ... | |
Setting up libpsl0:amd64 (0.5.1-1) ... | |
Setting up wget (1.16-1+deb8u1) ... | |
Setting up unzip (6.0-16+deb8u2) ... | |
Processing triggers for libc-bin (2.19-18+deb8u6) ... | |
[91m+ [0m[91mcurl+ [0m[91mphp -sS -- --install-dir=/usr/local/bin --filename=composer | |
[0m[91m https://getcomposer.org/installer | |
[0mAll settings correct for using Composer | |
Downloading 1.2.4... | |
Composer successfully installed to: /usr/local/bin/composer | |
Use it: php /usr/local/bin/composer | |
[91m+ curl -fsSL http://www.libxl.com/download/libxl-lin-3.6.5.tar.gz -o /tmp/libxl.tar.gz | |
[0m[91m+ tar zxvf /tmp/libxl.tar.gz --directory /tmp/ | |
[0mlibxl-3.6.5.0/ | |
libxl-3.6.5.0/lib/ | |
libxl-3.6.5.0/lib/libxl.so | |
libxl-3.6.5.0/lib64/ | |
libxl-3.6.5.0/lib64/libxl.so | |
libxl-3.6.5.0/examples/ | |
libxl-3.6.5.0/examples/python/ | |
libxl-3.6.5.0/examples/python/setup.py | |
libxl-3.6.5.0/examples/python/font.h | |
libxl-3.6.5.0/examples/python/font.c | |
libxl-3.6.5.0/examples/python/sheet.h | |
libxl-3.6.5.0/examples/python/book.c | |
libxl-3.6.5.0/examples/python/book.h | |
libxl-3.6.5.0/examples/python/tests/ | |
libxl-3.6.5.0/examples/python/tests/test.format.py | |
libxl-3.6.5.0/examples/python/tests/book.xls | |
libxl-3.6.5.0/examples/python/tests/logo.png | |
libxl-3.6.5.0/examples/python/tests/__init__.py | |
libxl-3.6.5.0/examples/python/tests/test.sheet.py | |
libxl-3.6.5.0/examples/python/tests/test.book.py | |
libxl-3.6.5.0/examples/python/sheet.c | |
libxl-3.6.5.0/examples/python/README.md | |
libxl-3.6.5.0/examples/python/libxlpy.c | |
libxl-3.6.5.0/examples/python/format.c | |
libxl-3.6.5.0/examples/python/format.h | |
libxl-3.6.5.0/examples/code.blocks/ | |
libxl-3.6.5.0/examples/code.blocks/main.cpp | |
libxl-3.6.5.0/examples/code.blocks/cb-libxl.cbp | |
libxl-3.6.5.0/examples/qt/ | |
libxl-3.6.5.0/examples/qt/qt-libxl.pro | |
libxl-3.6.5.0/examples/qt/mainwindow.ui | |
libxl-3.6.5.0/examples/qt/mainwindow.h | |
libxl-3.6.5.0/examples/qt/mainwindow.cpp | |
libxl-3.6.5.0/examples/qt/main.cpp | |
libxl-3.6.5.0/examples/c/ | |
libxl-3.6.5.0/examples/c/custom.c | |
libxl-3.6.5.0/examples/c/invoice.c | |
libxl-3.6.5.0/examples/c/performance.c | |
libxl-3.6.5.0/examples/c/generate.c | |
libxl-3.6.5.0/examples/c/extract.c | |
libxl-3.6.5.0/examples/c/format.c | |
libxl-3.6.5.0/examples/c/makefile | |
libxl-3.6.5.0/examples/c/edit.c | |
libxl-3.6.5.0/examples/c++/ | |
libxl-3.6.5.0/examples/c++/read.cpp | |
libxl-3.6.5.0/examples/c++/custom.cpp | |
libxl-3.6.5.0/examples/c++/write.cpp | |
libxl-3.6.5.0/examples/c++/format.cpp | |
libxl-3.6.5.0/examples/c++/performance.cpp | |
libxl-3.6.5.0/examples/c++/edit.cpp | |
libxl-3.6.5.0/examples/c++/makefile | |
libxl-3.6.5.0/examples/c++/invoice.cpp | |
libxl-3.6.5.0/license.txt | |
libxl-3.6.5.0/include_c/ | |
libxl-3.6.5.0/include_c/handle.h | |
libxl-3.6.5.0/include_c/setup.h | |
libxl-3.6.5.0/include_c/SheetA.h | |
libxl-3.6.5.0/include_c/BookA.h | |
libxl-3.6.5.0/include_c/BookW.h | |
libxl-3.6.5.0/include_c/FormatW.h | |
libxl-3.6.5.0/include_c/libxl.h | |
libxl-3.6.5.0/include_c/SheetW.h | |
libxl-3.6.5.0/include_c/FontA.h | |
libxl-3.6.5.0/include_c/FontW.h | |
libxl-3.6.5.0/include_c/enum.h | |
libxl-3.6.5.0/include_c/FormatA.h | |
libxl-3.6.5.0/include_cpp/ | |
libxl-3.6.5.0/include_cpp/IFontT.h | |
libxl-3.6.5.0/include_cpp/setup.h | |
libxl-3.6.5.0/include_cpp/IFormatT.h | |
libxl-3.6.5.0/include_cpp/ISheetT.h | |
libxl-3.6.5.0/include_cpp/libxl.h | |
libxl-3.6.5.0/include_cpp/enum.h | |
libxl-3.6.5.0/include_cpp/IBookT.h | |
libxl-3.6.5.0/doc/ | |
libxl-3.6.5.0/doc/colors.html | |
libxl-3.6.5.0/doc/workbook.html | |
libxl-3.6.5.0/doc/style.css | |
libxl-3.6.5.0/doc/font.html | |
libxl-3.6.5.0/doc/custom-format.html | |
libxl-3.6.5.0/doc/spreadsheet.html | |
libxl-3.6.5.0/doc/images/ | |
libxl-3.6.5.0/doc/images/alignv_center.png | |
libxl-3.6.5.0/doc/images/underline_none.png | |
libxl-3.6.5.0/doc/images/pattern_gray6p25.png | |
libxl-3.6.5.0/doc/images/pattern_verstripe.png | |
libxl-3.6.5.0/doc/images/pattern_thinrevdiagstripe.png | |
libxl-3.6.5.0/doc/images/pattern_gray75.png | |
libxl-3.6.5.0/doc/images/alignh_left.png | |
libxl-3.6.5.0/doc/images/favicon.ico | |
libxl-3.6.5.0/doc/images/pattern_diagcrosshatch.png | |
libxl-3.6.5.0/doc/images/borderdiagonal_down.png | |
libxl-3.6.5.0/doc/images/pattern_thinverstripe.png | |
libxl-3.6.5.0/doc/images/alignh_fill.png | |
libxl-3.6.5.0/doc/images/alignv_bottom.png | |
libxl-3.6.5.0/doc/images/pattern_solid.png | |
libxl-3.6.5.0/doc/images/alignh_right.png | |
libxl-3.6.5.0/doc/images/underline_singleacc.png | |
libxl-3.6.5.0/doc/images/borderdiagonal_none.png | |
libxl-3.6.5.0/doc/images/borderstyle_double.png | |
libxl-3.6.5.0/doc/images/underline_double.png | |
libxl-3.6.5.0/doc/images/alignv_justify.png | |
libxl-3.6.5.0/doc/images/borderstyle_mediumdashed.png | |
libxl-3.6.5.0/doc/images/alignv_top.png | |
libxl-3.6.5.0/doc/images/pattern_thinhorcrosshatch.png | |
libxl-3.6.5.0/doc/images/borderstyle_mediumdashdotdot.png | |
libxl-3.6.5.0/doc/images/borderdiagonal_up.png | |
libxl-3.6.5.0/doc/images/borderstyle_medium.png | |
libxl-3.6.5.0/doc/images/pattern_thinhorstripe.png | |
libxl-3.6.5.0/doc/images/alignh_merge.png | |
libxl-3.6.5.0/doc/images/alignh_center.png | |
libxl-3.6.5.0/doc/images/borderdiagonal_both.png | |
libxl-3.6.5.0/doc/images/underline_doubleacc.png | |
libxl-3.6.5.0/doc/images/alignv_distributed.png | |
libxl-3.6.5.0/doc/images/borderstyle_thick.png | |
libxl-3.6.5.0/doc/images/logo.png | |
libxl-3.6.5.0/doc/images/borderstyle_hair.png | |
libxl-3.6.5.0/doc/images/pattern_thindiagstripe.png | |
libxl-3.6.5.0/doc/images/pattern_gray12p5.png | |
libxl-3.6.5.0/doc/images/alignh_justify.png | |
libxl-3.6.5.0/doc/images/underline_single.png | |
libxl-3.6.5.0/doc/images/pattern_diagstripe.png | |
libxl-3.6.5.0/doc/images/alignh_general.png | |
libxl-3.6.5.0/doc/images/pattern_thickdiagcrosshatch.png | |
libxl-3.6.5.0/doc/images/borderstyle_slantdashdot.png | |
libxl-3.6.5.0/doc/images/borderstyle_dashdot.png | |
libxl-3.6.5.0/doc/images/borderstyle_thin.png | |
libxl-3.6.5.0/doc/images/borderstyle_dashed.png | |
libxl-3.6.5.0/doc/images/pattern_horstripe.png | |
libxl-3.6.5.0/doc/images/pattern_gray50.png | |
libxl-3.6.5.0/doc/images/pattern_revdiagstripe.png | |
libxl-3.6.5.0/doc/images/borderstyle_dashdotdot.png | |
libxl-3.6.5.0/doc/images/alignh_distributed.png | |
libxl-3.6.5.0/doc/images/borderstyle_mediumdashdot.png | |
libxl-3.6.5.0/doc/images/borderstyle_none.png | |
libxl-3.6.5.0/doc/images/pattern_gray25.png | |
libxl-3.6.5.0/doc/images/pattern_thindiagcrosshatch.png | |
libxl-3.6.5.0/doc/images/borderstyle_dotted.png | |
libxl-3.6.5.0/doc/index.html | |
libxl-3.6.5.0/doc/format.html | |
libxl-3.6.5.0/readme.txt | |
libxl-3.6.5.0/changelog.txt | |
[91m+ mkdir -p /opt/libxl | |
[0m[91m+ ls -la /tmp/libxl-3.6.5.0 | |
[0mtotal 80 | |
drwxr-xr-x 8 1000 1000 4096 Nov 18 2015 . | |
drwxrwxrwt 5 root root 4096 Dec 8 16:11 .. | |
-rw-r--r-- 1 1000 1000 29863 Nov 18 2015 changelog.txt | |
drwxr-xr-x 3 1000 1000 4096 Nov 18 2015 doc | |
drwxr-xr-x 7 1000 1000 4096 Nov 18 2015 examples | |
drwxr-xr-x 2 1000 1000 4096 Nov 18 2015 include_c | |
drwxr-xr-x 2 1000 1000 4096 Nov 18 2015 include_cpp | |
drwxr-xr-x 2 1000 1000 4096 Nov 18 2015 lib | |
drwxr-xr-x 2 1000 1000 4096 Nov 18 2015 lib64 | |
-rw-r--r-- 1 1000 1000 8376 Nov 18 2015 license.txt | |
-rw-r--r-- 1 1000 1000 748 Nov 18 2015 readme.txt | |
[91m+ cp -r /tmp/libxl-3.6.5.0/changelog.txt /tmp/libxl-3.6.5.0/doc /tmp/libxl-3.6.5.0/examples /tmp/libxl-3.6.5.0/include_c /tmp/libxl-3.6.5.0/include_cpp /tmp/libxl-3.6.5.0/lib /tmp/libxl-3.6.5.0/lib64 /tmp/libxl-3.6.5.0/license.txt /tmp/libxl-3.6.5.0/readme.txt /opt/libxl | |
[0m[91m+ ls -la /opt/libxl | |
[0mtotal 80 | |
drwxr-xr-x 8 root root 4096 Dec 8 16:11 . | |
drwxr-xr-x 3 root root 4096 Dec 8 16:11 .. | |
-rw-r--r-- 1 root root 29863 Dec 8 16:11 changelog.txt | |
drwxr-xr-x 3 root root 4096 Dec 8 16:11 doc | |
drwxr-xr-x 7 root root 4096 Dec 8 16:11 examples | |
drwxr-xr-x 2 root root 4096 Dec 8 16:11 include_c | |
drwxr-xr-x 2 root root 4096 Dec 8 16:11 include_cpp | |
drwxr-xr-x 2 root root 4096 Dec 8 16:11 lib | |
drwxr-xr-x 2 root root 4096 Dec 8 16:11 lib64 | |
-rw-r--r-- 1 root root 8376 Dec 8 16:11 license.txt | |
-rw-r--r-- 1 root root 748 Dec 8 16:11 readme.txt | |
[91m+ curl -fsSL https://github.com/iliaal/php_excel/archive/master.zip -o /tmp/php_excel.zip | |
[0m[91m+ unzip -o /tmp/php_excel.zip -d /tmp | |
[0mArchive: /tmp/php_excel.zip | |
14b3b05fa9328ab7e7e15adb679cdf30def073cf | |
creating: /tmp/php_excel-master/ | |
inflating: /tmp/php_excel-master/.gitignore | |
extracting: /tmp/php_excel-master/CREDITS | |
inflating: /tmp/php_excel-master/ChangeLog | |
inflating: /tmp/php_excel-master/README.markdown | |
inflating: /tmp/php_excel-master/config.m4 | |
inflating: /tmp/php_excel-master/config.w32 | |
creating: /tmp/php_excel-master/docs/ | |
inflating: /tmp/php_excel-master/docs/ExcelBook.php | |
inflating: /tmp/php_excel-master/docs/ExcelFont.php | |
inflating: /tmp/php_excel-master/docs/ExcelFormat.php | |
inflating: /tmp/php_excel-master/docs/ExcelSheet.php | |
inflating: /tmp/php_excel-master/excel.c | |
inflating: /tmp/php_excel-master/package.xml | |
inflating: /tmp/php_excel-master/php_excel.h | |
creating: /tmp/php_excel-master/tests/ | |
inflating: /tmp/php_excel-master/tests/000.phpt | |
inflating: /tmp/php_excel-master/tests/001.phpt | |
inflating: /tmp/php_excel-master/tests/002.phpt | |
inflating: /tmp/php_excel-master/tests/003.phpt | |
inflating: /tmp/php_excel-master/tests/004.phpt | |
inflating: /tmp/php_excel-master/tests/005.phpt | |
inflating: /tmp/php_excel-master/tests/006.phpt | |
inflating: /tmp/php_excel-master/tests/007.phpt | |
inflating: /tmp/php_excel-master/tests/008.phpt | |
inflating: /tmp/php_excel-master/tests/009.phpt | |
inflating: /tmp/php_excel-master/tests/010.phpt | |
inflating: /tmp/php_excel-master/tests/011.phpt | |
inflating: /tmp/php_excel-master/tests/012.phpt | |
inflating: /tmp/php_excel-master/tests/013.phpt | |
inflating: /tmp/php_excel-master/tests/014.phpt | |
inflating: /tmp/php_excel-master/tests/015.phpt | |
inflating: /tmp/php_excel-master/tests/016.phpt | |
inflating: /tmp/php_excel-master/tests/017.phpt | |
inflating: /tmp/php_excel-master/tests/018.phpt | |
inflating: /tmp/php_excel-master/tests/019.phpt | |
inflating: /tmp/php_excel-master/tests/020.phpt | |
inflating: /tmp/php_excel-master/tests/021.phpt | |
inflating: /tmp/php_excel-master/tests/022.phpt | |
inflating: /tmp/php_excel-master/tests/023.phpt | |
inflating: /tmp/php_excel-master/tests/024.phpt | |
inflating: /tmp/php_excel-master/tests/025.phpt | |
inflating: /tmp/php_excel-master/tests/026.phpt | |
inflating: /tmp/php_excel-master/tests/027.phpt | |
inflating: /tmp/php_excel-master/tests/028.phpt | |
inflating: /tmp/php_excel-master/tests/029.phpt | |
inflating: /tmp/php_excel-master/tests/030.phpt | |
inflating: /tmp/php_excel-master/tests/031.phpt | |
inflating: /tmp/php_excel-master/tests/032.phpt | |
inflating: /tmp/php_excel-master/tests/033.phpt | |
inflating: /tmp/php_excel-master/tests/034.phpt | |
inflating: /tmp/php_excel-master/tests/035.phpt | |
inflating: /tmp/php_excel-master/tests/036.phpt | |
inflating: /tmp/php_excel-master/tests/037.phpt | |
inflating: /tmp/php_excel-master/tests/038.phpt | |
inflating: /tmp/php_excel-master/tests/039.phpt | |
inflating: /tmp/php_excel-master/tests/040.phpt | |
inflating: /tmp/php_excel-master/tests/041.phpt | |
inflating: /tmp/php_excel-master/tests/042.phpt | |
inflating: /tmp/php_excel-master/tests/043.phpt | |
inflating: /tmp/php_excel-master/tests/044.phpt | |
inflating: /tmp/php_excel-master/tests/045.phpt | |
inflating: /tmp/php_excel-master/tests/046.phpt | |
inflating: /tmp/php_excel-master/tests/047.phpt | |
inflating: /tmp/php_excel-master/tests/048.phpt | |
inflating: /tmp/php_excel-master/tests/049.phpt | |
inflating: /tmp/php_excel-master/tests/050.phpt | |
inflating: /tmp/php_excel-master/tests/051.phpt | |
inflating: /tmp/php_excel-master/tests/052.phpt | |
inflating: /tmp/php_excel-master/tests/053.phpt | |
inflating: /tmp/php_excel-master/tests/054.phpt | |
inflating: /tmp/php_excel-master/tests/055.phpt | |
inflating: /tmp/php_excel-master/tests/056.phpt | |
inflating: /tmp/php_excel-master/tests/057.phpt | |
inflating: /tmp/php_excel-master/tests/058.phpt | |
inflating: /tmp/php_excel-master/tests/059.phpt | |
inflating: /tmp/php_excel-master/tests/060.phpt | |
inflating: /tmp/php_excel-master/tests/061.phpt | |
inflating: /tmp/php_excel-master/tests/062.phpt | |
inflating: /tmp/php_excel-master/tests/063.phpt | |
inflating: /tmp/php_excel-master/tests/064.phpt | |
inflating: /tmp/php_excel-master/tests/065.phpt | |
inflating: /tmp/php_excel-master/tests/066.phpt | |
inflating: /tmp/php_excel-master/tests/067.phpt | |
inflating: /tmp/php_excel-master/tests/068.phpt | |
inflating: /tmp/php_excel-master/tests/069.phpt | |
inflating: /tmp/php_excel-master/tests/070.phpt | |
inflating: /tmp/php_excel-master/tests/071.phpt | |
inflating: /tmp/php_excel-master/tests/072.phpt | |
inflating: /tmp/php_excel-master/tests/073.phpt | |
inflating: /tmp/php_excel-master/tests/074.phpt | |
inflating: /tmp/php_excel-master/tests/075.phpt | |
inflating: /tmp/php_excel-master/tests/076.phpt | |
inflating: /tmp/php_excel-master/tests/077.phpt | |
inflating: /tmp/php_excel-master/tests/078.phpt | |
inflating: /tmp/php_excel-master/tests/079.phpt | |
inflating: /tmp/php_excel-master/tests/080.phpt | |
inflating: /tmp/php_excel-master/tests/081.phpt | |
inflating: /tmp/php_excel-master/tests/082.phpt | |
inflating: /tmp/php_excel-master/tests/083.phpt | |
inflating: /tmp/php_excel-master/tests/084.phpt | |
inflating: /tmp/php_excel-master/tests/086.phpt | |
inflating: /tmp/php_excel-master/tests/087.phpt | |
inflating: /tmp/php_excel-master/tests/088.phpt | |
inflating: /tmp/php_excel-master/tests/dateunpack_overflow_bug.phpt | |
inflating: /tmp/php_excel-master/tests/number_format_bug.phpt | |
inflating: /tmp/php_excel-master/tests/phplogo.jpg | |
inflating: /tmp/php_excel-master/tests/write_read_row_bug.phpt | |
[91m+ docker-php-source extract | |
[0m[91m+ ls -la /usr/local/include/php | |
[0mtotal 32 | |
drwxr-sr-x 9 root staff 4096 Dec 8 15:06 . | |
drwxrwsr-x 4 root staff 4096 Dec 8 15:06 .. | |
drwxr-sr-x 2 root staff 4096 Dec 6 21:58 TSRM | |
drwxr-sr-x 2 root staff 4096 Dec 6 21:58 Zend | |
drwxr-sr-x 27 root staff 4096 Dec 8 15:08 ext | |
drwxr-sr-x 2 root staff 4096 Dec 6 21:58 include | |
drwxr-sr-x 3 root staff 4096 Dec 6 21:58 main | |
drwxr-sr-x 3 root staff 4096 Dec 6 21:58 sapi | |
[91m+ ls -la /usr/local/include/php/include | |
[0mtotal 8 | |
drwxr-sr-x 2 root staff 4096 Dec 6 21:58 . | |
drwxr-sr-x 9 root staff 4096 Dec 8 15:06 .. | |
[91m+ ls -la /usr/local/include/php/TSRM | |
[0mtotal 44 | |
drwxr-sr-x 2 root staff 4096 Dec 6 21:58 . | |
drwxr-sr-x 9 root staff 4096 Dec 8 15:06 .. | |
-rw-r--r-- 1 root staff 6209 Dec 6 21:58 TSRM.h | |
-rw-r--r-- 1 root staff 1102 Dec 6 21:58 readdir.h | |
-rw-r--r-- 1 root staff 32 Dec 6 21:58 tsrm_config.h | |
-rw-r--r-- 1 root staff 256 Dec 6 21:58 tsrm_config.w32.h | |
-rw-r--r-- 1 root staff 1460 Dec 6 21:58 tsrm_config_common.h | |
-rw-r--r-- 1 root staff 1384 Dec 6 21:58 tsrm_nw.h | |
-rw-r--r-- 1 root staff 143 Dec 6 21:58 tsrm_strtok_r.h | |
-rw-r--r-- 1 root staff 3262 Dec 6 21:58 tsrm_win32.h | |
[91m+ ls -la /usr/local/include/php/main | |
[0mtotal 276 | |
drwxr-sr-x 3 root staff 4096 Dec 6 21:58 . | |
drwxr-sr-x 9 root staff 4096 Dec 8 15:06 .. | |
-rw-r--r-- 1 root staff 9654 Dec 6 21:58 SAPI.h | |
-rw-r--r-- 1 root staff 4072 Dec 6 21:58 build-defs.h | |
-rw-r--r-- 1 root staff 5018 Dec 6 21:58 fastcgi.h | |
-rw-r--r-- 1 root staff 2710 Dec 6 21:58 fopen_wrappers.h | |
-rw-r--r-- 1 root staff 3058 Dec 6 21:58 http_status_codes.h | |
-rw-r--r-- 1 root staff 11582 Dec 6 21:58 php.h | |
-rw-r--r-- 1 root staff 18029 Dec 6 21:58 php_compat.h | |
-rw-r--r-- 1 root staff 58177 Dec 6 21:58 php_config.h | |
-rw-r--r-- 1 root staff 1500 Dec 6 21:58 php_content_types.h | |
-rw-r--r-- 1 root staff 2071 Dec 6 21:58 php_getopt.h | |
-rw-r--r-- 1 root staff 4209 Dec 6 21:58 php_globals.h | |
-rw-r--r-- 1 root staff 3771 Dec 6 21:58 php_ini.h | |
-rw-r--r-- 1 root staff 2584 Dec 6 21:58 php_main.h | |
-rw-r--r-- 1 root staff 3464 Dec 6 21:58 php_memory_streams.h | |
-rw-r--r-- 1 root staff 10180 Dec 6 21:58 php_network.h | |
-rw-r--r-- 1 root staff 1682 Dec 6 21:58 php_open_temporary_file.h | |
-rw-r--r-- 1 root staff 9787 Dec 6 21:58 php_output.h | |
-rw-r--r-- 1 root staff 3690 Dec 6 21:58 php_reentrancy.h | |
-rw-r--r-- 1 root staff 1930 Dec 6 21:58 php_scandir.h | |
-rw-r--r-- 1 root staff 5331 Dec 6 21:58 php_stdint.h | |
-rw-r--r-- 1 root staff 29315 Dec 6 21:58 php_streams.h | |
-rw-r--r-- 1 root staff 1573 Dec 6 21:58 php_syslog.h | |
-rw-r--r-- 1 root staff 1588 Dec 6 21:58 php_ticks.h | |
-rw-r--r-- 1 root staff 2067 Dec 6 21:58 php_variables.h | |
-rw-r--r-- 1 root staff 266 Dec 6 21:58 php_version.h | |
-rw-r--r-- 1 root staff 3375 Dec 6 21:58 rfc1867.h | |
-rw-r--r-- 1 root staff 7045 Dec 6 21:58 snprintf.h | |
-rw-r--r-- 1 root staff 2302 Dec 6 21:58 spprintf.h | |
drwxr-sr-x 2 root staff 4096 Dec 6 21:58 streams | |
-rw-r--r-- 1 root staff 2645 Dec 6 21:58 win95nt.h | |
[91m+ cd /tmp/php_excel-master | |
+ phpize | |
[0mConfiguring for: | |
PHP Api Version: 20151012 | |
Zend Module Api No: 20151012 | |
Zend Extension Api No: 320151012 | |
[91m+ which[0m[91m php-config[0m[91m | |
[0m[91m+ ./configure --with-php-config=/usr/local/bin/php-config --with-libxl-incdir=/opt/libxl/include_c/ --with-libxl-libdir=/opt/libxl/lib64/ --with-excel=/opt/libxl --with-libxml-dir=/usr/include/libxml2 | |
[0mchecking for grep that handles long lines and -e... /bin/grep | |
checking for egrep... /bin/grep -E | |
checking for a sed that does not truncate output... /bin/sed | |
checking for cc... cc | |
checking whether the C compiler works... yes | |
checking for C compiler default output file name... a.out | |
checking for suffix of executables... | |
checking whether we are cross compiling... no | |
checking for suffix of object files... o | |
checking whether we are using the GNU C compiler... yes | |
checking whether cc accepts -g... yes | |
checking for cc option to accept ISO C89... none needed | |
checking how to run the C preprocessor... cc -E | |
checking for icc... no | |
checking for suncc... no | |
checking whether cc understands -c and -o together... yes | |
checking for system library directory... lib | |
checking if compiler supports -R... no | |
checking if compiler supports -Wl,-rpath,... yes | |
checking build system type... x86_64-unknown-linux-gnu | |
checking host system type... x86_64-unknown-linux-gnu | |
checking target system type... x86_64-unknown-linux-gnu | |
checking for PHP prefix... /usr/local | |
checking for PHP includes... -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib | |
checking for PHP extension directory... /usr/local/lib/php/extensions/no-debug-non-zts-20151012 | |
checking for PHP installed headers prefix... /usr/local/include/php | |
checking if debug is enabled... no | |
checking if zts is enabled... no | |
checking for re2c... re2c | |
checking for re2c version... 0.13.5 (ok) | |
checking for gawk... no | |
checking for nawk... nawk | |
checking if nawk is broken... no | |
checking whether to enable excel support... yes, shared | |
checking C include dir for libxl... yes, shared | |
checking lib dir for libxl... yes, shared | |
checking libxml2 install dir... yes, shared | |
checking for excel includes... found in /opt/libxl/include_c/ | |
checking for excel libraries... found in /opt/libxl/lib64/ | |
checking for libxml2... found in /usr/include/libxml2 | |
checking for xlCreateBookCA in -lxl... yes | |
checking for xlBookSetKeyA in -lxl... yes | |
checking for ld used by cc... /usr/bin/ld | |
checking if the linker (/usr/bin/ld) is GNU ld... yes | |
checking for /usr/bin/ld option to reload object files... -r | |
checking for BSD-compatible nm... /usr/bin/nm -B | |
checking whether ln -s works... yes | |
checking how to recognize dependent libraries... pass_all | |
checking for ANSI C header files... yes | |
checking for sys/types.h... yes | |
checking for sys/stat.h... yes | |
checking for stdlib.h... yes | |
checking for string.h... yes | |
checking for memory.h... yes | |
checking for strings.h... yes | |
checking for inttypes.h... yes | |
checking for stdint.h... yes | |
checking for unistd.h... yes | |
checking dlfcn.h usability... yes | |
checking dlfcn.h presence... yes | |
checking for dlfcn.h... yes | |
checking the maximum length of command line arguments... 1572864 | |
checking command to parse /usr/bin/nm -B output from cc object... ok | |
checking for objdir... .libs | |
checking for ar... ar | |
checking for ranlib... ranlib | |
checking for strip... strip | |
checking if cc supports -fno-rtti -fno-exceptions... no | |
checking for cc option to produce PIC... -fPIC | |
checking if cc PIC flag -fPIC works... yes | |
checking if cc static flag -static works... yes | |
checking if cc supports -c -o file.o... yes | |
checking whether the cc linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes | |
checking whether -lc should be explicitly linked in... no | |
checking dynamic linker characteristics... GNU/Linux ld.so | |
checking how to hardcode library paths into programs... immediate | |
checking whether stripping libraries is possible... yes | |
checking if libtool supports shared libraries... yes | |
checking whether to build shared libraries... yes | |
checking whether to build static libraries... no | |
creating libtool | |
appending configuration tag "CXX" to libtool | |
configure: creating ./config.status | |
config.status: creating config.h | |
[91m+ nproc | |
[0m[91m+ make -j4 | |
[0m/bin/bash /tmp/php_excel-master/libtool --mode=compile cc -I. -I/tmp/php_excel-master -DPHP_ATOM_INC -I/tmp/php_excel-master/include -I/tmp/php_excel-master/main -I/tmp/php_excel-master -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/opt/libxl/include_c/ -I/usr/include/libxml2 -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /tmp/php_excel-master/excel.c -o excel.lo | |
mkdir .libs | |
cc -I. -I/tmp/php_excel-master -DPHP_ATOM_INC -I/tmp/php_excel-master/include -I/tmp/php_excel-master/main -I/tmp/php_excel-master -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/opt/libxl/include_c/ -I/usr/include/libxml2 -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /tmp/php_excel-master/excel.c -fPIC -DPIC -o .libs/excel.o | |
[91m/tmp/php_excel-master/excel.c:195:8: error: unknown type name 'zend_object_value' | |
static zend_object_value excel_object_new_book(zend_class_entry *class_type TSRMLS_DC) | |
^ | |
/tmp/php_excel-master/excel.c: In function 'excel_object_new_book': | |
/tmp/php_excel-master/excel.c:198:2: error: unknown type name 'zend_object_value' | |
zend_object_value retval; | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c:214:11: error: request for member 'handle' in something not a structure or union | |
(&retval)->handle = zend_objects_store_put(intern, (zend_objects_store_dtor_t)zend_objects_destroy_object, (zend_objects_free_object_storage_t) excel_book_object_free_storage, NULL TSRMLS_CC); | |
^ | |
/tmp/php_excel-master/excel.c:214:54: error: 'zend_objects_store_dtor_t' undeclared (first use in this function) | |
(&retval)->handle = zend_objects_store_put(intern, (zend_objects_store_dtor_t)zend_objects_destroy_object, (zend_objects_free_object_storage_t) excel_book_object_free_storage, NULL TSRMLS_CC); | |
^ | |
/tmp/php_excel-master/excel.c:214:54: note: each undeclared identifier is reported only once for each function it appears in | |
/tmp/php_excel-master/excel.c:214:80: error: expected ')' before 'zend_objects_destroy_object' | |
(&retval)->handle = zend_objects_store_put(intern, (zend_objects_store_dtor_t)zend_objects_destroy_object, (zend_objects_free_object_storage_t) excel_book_object_free_storage, NULL TSRMLS_CC); | |
^ | |
/tmp/php_excel-master/excel.c:214:45: warning: passing argument 1 of 'zend_objects_store_put' from incompatible pointer type | |
(&retval)->handle = zend_objects_store_put(intern, (zend_objects_store_dtor_t)zend_objects_destroy_object, (zend_objects_free_object_storage_t) excel_book_object_free_storage, NULL TSRMLS_CC); | |
^ | |
[0m[91mIn file included from /usr/local/include/php/Zend/zend_globals.h:35:0, | |
from /usr/local/include/php/Zend/zend_compile.h:657, | |
from /usr/local/include/php/Zend/zend_modules.h:26, | |
from /usr/local/include/php/Zend/zend_API.h:27, | |
from /usr/local/include/php/main/php.h:39, | |
from /tmp/php_excel-master/excel.c:26: | |
/usr/local/include/php/Zend/zend_objects_API.h:58:15: note: expected 'struct zend_object *' but argument is of type 'struct excel_book_object *' | |
ZEND_API void zend_objects_store_put(zend_object *object); | |
^ | |
/tmp/php_excel-master/excel.c:214:22: error: too many arguments to function 'zend_objects_store_put' | |
(&retval)->handle = zend_objects_store_put(intern, (zend_objects_store_dtor_t)zend_objects_destroy_object, (zend_objects_free_object_storage_t) excel_book_object_free_storage, NULL TSRMLS_CC); | |
^ | |
[0m[91mIn file included from /usr/local/include/php/Zend/zend_globals.h:35:0, | |
from /usr/local/include/php/Zend/zend_compile.h:657, | |
from /usr/local/include/php/Zend/zend_modules.h:26, | |
from /usr/local/include/php/Zend/zend_API.h:27, | |
from /usr/local/include/php/main/php.h:39, | |
from /tmp/php_excel-master/excel.c:26: | |
/usr/local/include/php/Zend/zend_objects_API.h:58:15: note: declared here | |
ZEND_API void zend_objects_store_put(zend_object *object); | |
^ | |
/tmp/php_excel-master/excel.c:215:11: error: request for member 'handlers' in something not a structure or union | |
(&retval)->handlers = &excel_object_handlers_book; | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: At top level: | |
/tmp/php_excel-master/excel.c:229:8: error: unknown type name 'zend_object_value' | |
static zend_object_value excel_object_new_sheet(zend_class_entry *class_type TSRMLS_DC) | |
^ | |
/tmp/php_excel-master/excel.c: In function 'excel_object_new_sheet': | |
/tmp/php_excel-master/excel.c:232:2: error: unknown type name 'zend_object_value' | |
zend_object_value retval; | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c:245:11: error: request for member 'handle' in something not a structure or union | |
(&retval)->handle = zend_objects_store_put(intern, (zend_objects_store_dtor_t)zend_objects_destroy_object, (zend_objects_free_object_storage_t) excel_sheet_object_free_storage, NULL TSRMLS_CC); | |
^ | |
/tmp/php_excel-master/excel.c:245:54: error: 'zend_objects_store_dtor_t' undeclared (first use in this function) | |
(&retval)->handle = zend_objects_store_put(intern, (zend_objects_store_dtor_t)zend_objects_destroy_object, (zend_objects_free_object_storage_t) excel_sheet_object_free_storage, NULL TSRMLS_CC); | |
^ | |
/tmp/php_excel-master/excel.c:245:80: error: expected ')' before 'zend_objects_destroy_object' | |
(&retval)->handle = zend_objects_store_put(intern, (zend_objects_store_dtor_t)zend_objects_destroy_object, (zend_objects_free_object_storage_t) excel_sheet_object_free_storage, NULL TSRMLS_CC); | |
^ | |
/tmp/php_excel-master/excel.c:245:45: warning: passing argument 1 of 'zend_objects_store_put' from incompatible pointer type | |
(&retval)->handle = zend_objects_store_put(intern, (zend_objects_store_dtor_t)zend_objects_destroy_object, (zend_objects_free_object_storage_t) excel_sheet_object_free_storage, NULL TSRMLS_CC); | |
^ | |
In file included from /usr/local/include/php/Zend/zend_globals.h:35:0, | |
from /usr/local/include/php/Zend/zend_compile.h:657, | |
from /usr/local/include/php/Zend/zend_modules.h:26, | |
from /usr/local/include/php/Zend/zend_API.h:27, | |
from /usr/local/include/php/main/php.h:39, | |
from /tmp/php_excel-master/excel.c:26: | |
/usr/local/include/php/Zend/zend_objects_API.h:58:15: note: expected 'struct zend_object *' but argument is of type 'struct excel_sheet_object *' | |
ZEND_API void zend_objects_store_put(zend_object *object); | |
^ | |
/tmp/php_excel-master/excel.c:245:22: error: too many arguments to function 'zend_objects_store_put' | |
(&retval)->handle = zend_objects_store_put(intern, (zend_objects_store_dtor_t)zend_objects_destroy_object, (zend_objects_free_object_storage_t) excel_sheet_object_free_storage, NULL TSRMLS_CC); | |
^ | |
In file included from /usr/local/include/php/Zend/zend_globals.h:35:0, | |
from /usr/local/include/php/Zend/zend_compile.h:657, | |
from /usr/local/include/php/Zend/zend_modules.h:26, | |
from /usr/local/include/php/Zend/zend_API.h:27, | |
from /usr/local/include/php/main/php.h:39, | |
from /tmp/php_excel-master/excel.c:26: | |
/usr/local/include/php/Zend/zend_objects_API.h:58:15: note: declared here | |
ZEND_API void zend_objects_store_put(zend_object *object); | |
^ | |
/tmp/php_excel-master/excel.c:246:11: error: request for member 'handlers' in something not a structure or union | |
(&retval)->handlers = &excel_object_handlers_sheet; | |
^ | |
/tmp/php_excel-master/excel.c: At top level: | |
/tmp/php_excel-master/excel.c:263:8: error: unknown type name 'zend_object_value' | |
static zend_object_value excel_object_new_font_ex(zend_class_entry *class_type, excel_font_object **ptr TSRMLS_DC) | |
^ | |
/tmp/php_excel-master/excel.c: In function 'excel_object_new_font_ex': | |
/tmp/php_excel-master/excel.c:266:2: error: unknown type name 'zend_object_value' | |
zend_object_value retval; | |
^ | |
/tmp/php_excel-master/excel.c:283:11: error: request for member 'handle' in something not a structure or union | |
(&retval)->handle = zend_objects_store_put(intern, (zend_objects_store_dtor_t)zend_objects_destroy_object, (zend_objects_free_object_storage_t) excel_font_object_free_storage, NULL TSRMLS_CC); | |
^ | |
/tmp/php_excel-master/excel.c:283:54: error: 'zend_objects_store_dtor_t' undeclared (first use in this function) | |
(&retval)->handle = zend_objects_store_put(intern, (zend_objects_store_dtor_t)zend_objects_destroy_object, (zend_objects_free_object_storage_t) excel_font_object_free_storage, NULL TSRMLS_CC); | |
^ | |
/tmp/php_excel-master/excel.c:283:80: error: expected ')' before 'zend_objects_destroy_object' | |
(&retval)->handle = zend_objects_store_put(intern, (zend_objects_store_dtor_t)zend_objects_destroy_object, (zend_objects_free_object_storage_t) excel_font_object_free_storage, NULL TSRMLS_CC); | |
^ | |
/tmp/php_excel-master/excel.c:283:45: warning: passing argument 1 of 'zend_objects_store_put' from incompatible pointer type | |
(&retval)->handle = zend_objects_store_put(intern, (zend_objects_store_dtor_t)zend_objects_destroy_object, (zend_objects_free_object_storage_t) excel_font_object_free_storage, NULL TSRMLS_CC); | |
^ | |
In file included from /usr/local/include/php/Zend/zend_globals.h:35:0, | |
from /usr/local/include/php/Zend/zend_compile.h:657, | |
from /usr/local/include/php/Zend/zend_modules.h:26, | |
from /usr/local/include/php/Zend/zend_API.h:27, | |
from /usr/local/include/php/main/php.h:39, | |
from /tmp/php_excel-master/excel.c:26: | |
/usr/local/include/php/Zend/zend_objects_API.h:58:15: note: expected 'struct zend_object *' but argument is of type 'struct excel_font_object *' | |
ZEND_API void zend_objects_store_put(zend_object *object); | |
^ | |
/tmp/php_excel-master/excel.c:283:22: error: too many arguments to function 'zend_objects_store_put' | |
(&retval)->handle = zend_objects_store_put(intern, (zend_objects_store_dtor_t)zend_objects_destroy_object, (zend_objects_free_object_storage_t) excel_font_object_free_storage, NULL TSRMLS_CC); | |
^ | |
In file included from /usr/local/include/php/Zend/zend_globals.h:35:0, | |
from /usr/local/include/php/Zend/zend_compile.h:657, | |
from /usr/local/include/php/Zend/zend_modules.h:26, | |
from /usr/local/include/php/Zend/zend_API.h:27, | |
from /usr/local/include/php/main/php.h:39, | |
from /tmp/php_excel-master/excel.c:26: | |
/usr/local/include/php/Zend/zend_objects_API.h:58:15: note: declared here | |
ZEND_API void zend_objects_store_put(zend_object *object); | |
^ | |
/tmp/php_excel-master/excel.c:284:11: error: request for member 'handlers' in something not a structure or union | |
(&retval)->handlers = &excel_object_handlers_font; | |
^ | |
/tmp/php_excel-master/excel.c: At top level: | |
/tmp/php_excel-master/excel.c:289:8: error: unknown type name 'zend_object_value' | |
static zend_object_value excel_object_new_font(zend_class_entry *class_type TSRMLS_DC) | |
^ | |
/tmp/php_excel-master/excel.c:294:8: error: unknown type name 'zend_object_value' | |
static zend_object_value excel_font_object_clone(zval *this_ptr TSRMLS_DC) | |
^ | |
/tmp/php_excel-master/excel.c: In function 'excel_font_object_clone': | |
/tmp/php_excel-master/excel.c:297:31: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_font_object *old_obj = (excel_font_object *) zend_object_store_get_object(this_ptr TSRMLS_CC); | |
^ | |
/tmp/php_excel-master/excel.c:298:2: error: unknown type name 'zend_object_value' | |
zend_object_value new_ov = excel_object_new_font_ex(old_obj->std.ce, &new_obj TSRMLS_CC); | |
^ | |
/tmp/php_excel-master/excel.c:309:44: warning: passing argument 2 of 'zend_objects_clone_members' makes pointer from integer without a cast | |
zend_objects_clone_members(&new_obj->std, new_ov, &old_obj->std, Z_OBJ_HANDLE_P(this_ptr) TSRMLS_CC); | |
^ | |
In file included from /usr/local/include/php/Zend/zend_globals.h:34:0, | |
from /usr/local/include/php/Zend/zend_compile.h:657, | |
from /usr/local/include/php/Zend/zend_modules.h:26, | |
from /usr/local/include/php/Zend/zend_API.h:27, | |
from /usr/local/include/php/main/php.h:39, | |
from /tmp/php_excel-master/excel.c:26: | |
/usr/local/include/php/Zend/zend_objects.h:32:15: note: expected 'struct zend_object *' but argument is of type 'int' | |
ZEND_API void zend_objects_clone_members(zend_object *new_object, zend_object *old_object); | |
^ | |
/tmp/php_excel-master/excel.c:309:2: error: too many arguments to function 'zend_objects_clone_members' | |
zend_objects_clone_members(&new_obj->std, new_ov, &old_obj->std, Z_OBJ_HANDLE_P(this_ptr) TSRMLS_CC); | |
^ | |
In file included from /usr/local/include/php/Zend/zend_globals.h:34:0, | |
from /usr/local/include/php/Zend/zend_compile.h:657, | |
from /usr/local/include/php/Zend/zend_modules.h:26, | |
from /usr/local/include/php/Zend/zend_API.h:27, | |
from /usr/local/include/php/main/php.h:39, | |
from /tmp/php_excel-master/excel.c:26: | |
/usr/local/include/php/Zend/zend_objects.h:32:15: note: declared here | |
ZEND_API void zend_objects_clone_members(zend_object *new_object, zend_object *old_object); | |
^ | |
/tmp/php_excel-master/excel.c: At top level: | |
/tmp/php_excel-master/excel.c:323:8: error: unknown type name 'zend_object_value' | |
static zend_object_value excel_object_new_format_ex(zend_class_entry *class_type, excel_format_object **ptr TSRMLS_DC) | |
^ | |
/tmp/php_excel-master/excel.c: In function 'excel_object_new_format_ex': | |
/tmp/php_excel-master/excel.c:326:2: error: unknown type name 'zend_object_value' | |
zend_object_value retval; | |
^ | |
/tmp/php_excel-master/excel.c:343:11: error: request for member 'handle' in something not a structure or union | |
(&retval)->handle = zend_objects_store_put(intern, (zend_objects_store_dtor_t)zend_objects_destroy_object, (zend_objects_free_object_storage_t) excel_format_object_free_storage, NULL TSRMLS_CC); | |
^ | |
/tmp/php_excel-master/excel.c:343:54: error: 'zend_objects_store_dtor_t' undeclared (first use in this function) | |
(&retval)->handle = zend_objects_store_put(intern, (zend_objects_store_dtor_t)zend_objects_destroy_object, (zend_objects_free_object_storage_t) excel_format_object_free_storage, NULL TSRMLS_CC); | |
^ | |
/tmp/php_excel-master/excel.c:343:80: error: expected ')' before 'zend_objects_destroy_object' | |
(&retval)->handle = zend_objects_store_put(intern, (zend_objects_store_dtor_t)zend_objects_destroy_object, (zend_objects_free_object_storage_t) excel_format_object_free_storage, NULL TSRMLS_CC); | |
^ | |
/tmp/php_excel-master/excel.c:343:45: warning: passing argument 1 of 'zend_objects_store_put' from incompatible pointer type | |
(&retval)->handle = zend_objects_store_put(intern, (zend_objects_store_dtor_t)zend_objects_destroy_object, (zend_objects_free_object_storage_t) excel_format_object_free_storage, NULL TSRMLS_CC); | |
^ | |
In file included from /usr/local/include/php/Zend/zend_globals.h:35:0, | |
from /usr/local/include/php/Zend/zend_compile.h:657, | |
from /usr/local/include/php/Zend/zend_modules.h:26, | |
from /usr/local/include/php/Zend/zend_API.h:27, | |
from /usr/local/include/php/main/php.h:39, | |
from /tmp/php_excel-master/excel.c:26: | |
/usr/local/include/php/Zend/zend_objects_API.h:58:15: note: expected 'struct zend_object *' but argument is of type 'struct excel_format_object *' | |
ZEND_API void zend_objects_store_put(zend_object *object); | |
^ | |
/tmp/php_excel-master/excel.c:343:22: error: too many arguments to function 'zend_objects_store_put' | |
(&retval)->handle = zend_objects_store_put(intern, (zend_objects_store_dtor_t)zend_objects_destroy_object, (zend_objects_free_object_storage_t) excel_format_object_free_storage, NULL TSRMLS_CC); | |
^ | |
In file included from /usr/local/include/php/Zend/zend_globals.h:35:0, | |
from /usr/local/include/php/Zend/zend_compile.h:657, | |
from /usr/local/include/php/Zend/zend_modules.h:26, | |
from /usr/local/include/php/Zend/zend_API.h:27, | |
from /usr/local/include/php/main/php.h:39, | |
from /tmp/php_excel-master/excel.c:26: | |
/usr/local/include/php/Zend/zend_objects_API.h:58:15: note: declared here | |
ZEND_API void zend_objects_store_put(zend_object *object); | |
^ | |
/tmp/php_excel-master/excel.c:344:11: error: request for member 'handlers' in something not a structure or union | |
(&retval)->handlers = &excel_object_handlers_format; | |
^ | |
/tmp/php_excel-master/excel.c: At top level: | |
/tmp/php_excel-master/excel.c:349:8: error: unknown type name 'zend_object_value' | |
static zend_object_value excel_object_new_format(zend_class_entry *class_type TSRMLS_DC) | |
^ | |
/tmp/php_excel-master/excel.c:354:8: error: unknown type name 'zend_object_value' | |
static zend_object_value excel_format_object_clone(zval *this_ptr TSRMLS_DC) | |
^ | |
/tmp/php_excel-master/excel.c: In function 'excel_format_object_clone': | |
/tmp/php_excel-master/excel.c:357:33: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_format_object *old_obj = (excel_format_object *) zend_object_store_get_object(this_ptr TSRMLS_CC); | |
^ | |
/tmp/php_excel-master/excel.c:358:2: error: unknown type name 'zend_object_value' | |
zend_object_value new_ov = excel_object_new_format_ex(old_obj->std.ce, &new_obj TSRMLS_CC); | |
^ | |
/tmp/php_excel-master/excel.c:369:44: warning: passing argument 2 of 'zend_objects_clone_members' makes pointer from integer without a cast | |
zend_objects_clone_members(&new_obj->std, new_ov, &old_obj->std, Z_OBJ_HANDLE_P(this_ptr) TSRMLS_CC); | |
^ | |
In file included from /usr/local/include/php/Zend/zend_globals.h:34:0, | |
from /usr/local/include/php/Zend/zend_compile.h:657, | |
from /usr/local/include/php/Zend/zend_modules.h:26, | |
from /usr/local/include/php/Zend/zend_API.h:27, | |
from /usr/local/include/php/main/php.h:39, | |
from /tmp/php_excel-master/excel.c:26: | |
/usr/local/include/php/Zend/zend_objects.h:32:15: note: expected 'struct zend_object *' but argument is of type 'int' | |
ZEND_API void zend_objects_clone_members(zend_object *new_object, zend_object *old_object); | |
^ | |
/tmp/php_excel-master/excel.c:369:2: error: too many arguments to function 'zend_objects_clone_members' | |
zend_objects_clone_members(&new_obj->std, new_ov, &old_obj->std, Z_OBJ_HANDLE_P(this_ptr) TSRMLS_CC); | |
^ | |
In file included from /usr/local/include/php/Zend/zend_globals.h:34:0, | |
from /usr/local/include/php/Zend/zend_compile.h:657, | |
from /usr/local/include/php/Zend/zend_modules.h:26, | |
from /usr/local/include/php/Zend/zend_API.h:27, | |
from /usr/local/include/php/main/php.h:39, | |
from /tmp/php_excel-master/excel.c:26: | |
/usr/local/include/php/Zend/zend_objects.h:32:15: note: declared here | |
ZEND_API void zend_objects_clone_members(zend_object *new_object, zend_object *old_object); | |
^ | |
/tmp/php_excel-master/excel.c: In function 'zim_ExcelBook_load': | |
/tmp/php_excel-master/excel.c:114:28: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_book_object *obj = (excel_book_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:422:2: note: in expansion of macro 'BOOK_FROM_OBJECT' | |
BOOK_FROM_OBJECT(book, object); | |
^ | |
/tmp/php_excel-master/excel.c: In function 'zim_ExcelBook_loadFile': | |
/tmp/php_excel-master/excel.c:114:28: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_book_object *obj = (excel_book_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:448:2: note: in expansion of macro 'BOOK_FROM_OBJECT' | |
BOOK_FROM_OBJECT(book, object); | |
^ | |
In file included from /usr/local/include/php/main/php.h:388:0, | |
from /tmp/php_excel-master/excel.c:26: | |
/tmp/php_excel-master/excel.c:450:51: error: 'ENFORCE_SAFE_MODE' undeclared (first use in this function) | |
stream = php_stream_open_wrapper(filename, "rb", ENFORCE_SAFE_MODE | REPORT_ERRORS, NULL); | |
^ | |
/usr/local/include/php/main/php_streams.h:568:107: note: in definition of macro 'php_stream_open_wrapper' | |
#define php_stream_open_wrapper(path, mode, options, opened) _php_stream_open_wrapper_ex((path), (mode), (options), (opened), NULL STREAMS_CC) | |
^ | |
/tmp/php_excel-master/excel.c:455:72: error: macro "php_stream_copy_to_mem" passed 4 arguments, but takes just 3 | |
len = php_stream_copy_to_mem(stream, &contents, PHP_STREAM_COPY_ALL, 0); | |
^ | |
/tmp/php_excel-master/excel.c:455:8: error: 'php_stream_copy_to_mem' undeclared (first use in this function) | |
len = php_stream_copy_to_mem(stream, &contents, PHP_STREAM_COPY_ALL, 0); | |
^ | |
/tmp/php_excel-master/excel.c: In function 'zim_ExcelBook_save': | |
/tmp/php_excel-master/excel.c:114:28: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_book_object *obj = (excel_book_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:482:2: note: in expansion of macro 'BOOK_FROM_OBJECT' | |
BOOK_FROM_OBJECT(book, object); | |
^ | |
In file included from /usr/local/include/php/main/php.h:388:0, | |
from /tmp/php_excel-master/excel.c:26: | |
/tmp/php_excel-master/excel.c:490:64: error: 'ENFORCE_SAFE_MODE' undeclared (first use in this function) | |
php_stream *stream = php_stream_open_wrapper(filename, "wb", ENFORCE_SAFE_MODE | REPORT_ERRORS, NULL); | |
^ | |
/usr/local/include/php/main/php_streams.h:568:107: note: in definition of macro 'php_stream_open_wrapper' | |
#define php_stream_open_wrapper(path, mode, options, opened) _php_stream_open_wrapper_ex((path), (mode), (options), (opened), NULL STREAMS_CC) | |
^ | |
/tmp/php_excel-master/excel.c:505:34: error: macro "RETURN_STRINGL" passed 3 arguments, but takes just 2 | |
RETURN_STRINGL(contents, len, 1); | |
^ | |
/tmp/php_excel-master/excel.c:505:3: error: 'RETURN_STRINGL' undeclared (first use in this function) | |
RETURN_STRINGL(contents, len, 1); | |
^ | |
/tmp/php_excel-master/excel.c: In function 'zim_ExcelBook_getSheet': | |
/tmp/php_excel-master/excel.c:114:28: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_book_object *obj = (excel_book_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:529:2: note: in expansion of macro 'BOOK_FROM_OBJECT' | |
BOOK_FROM_OBJECT(book, object); | |
^ | |
/tmp/php_excel-master/excel.c:535:25: error: lvalue required as left operand of assignment | |
Z_TYPE_P(return_value) = IS_OBJECT; | |
^ | |
In file included from /tmp/php_excel-master/excel.c:35:0: | |
/tmp/php_excel-master/php_excel.h:59:35: error: 'zval' has no member named 'is_ref' | |
# define Z_SET_ISREF_P(pz) (pz)->is_ref = 1 | |
^ | |
/tmp/php_excel-master/excel.c:538:2: note: in expansion of macro 'Z_SET_ISREF_P' | |
Z_SET_ISREF_P(return_value); | |
^ | |
/tmp/php_excel-master/excel.c:539:7: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
fo = (excel_sheet_object *) zend_object_store_get_object(return_value TSRMLS_CC); | |
^ | |
/tmp/php_excel-master/excel.c: In function 'zim_ExcelBook_getSheetByName': | |
/tmp/php_excel-master/excel.c:114:28: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_book_object *obj = (excel_book_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:567:2: note: in expansion of macro 'BOOK_FROM_OBJECT' | |
BOOK_FROM_OBJECT(book, object); | |
^ | |
/tmp/php_excel-master/excel.c:576:29: error: lvalue required as left operand of assignment | |
Z_TYPE_P(return_value) = IS_OBJECT; | |
^ | |
In file included from /tmp/php_excel-master/excel.c:35:0: | |
/tmp/php_excel-master/php_excel.h:59:35: error: 'zval' has no member named 'is_ref' | |
# define Z_SET_ISREF_P(pz) (pz)->is_ref = 1 | |
^ | |
/tmp/php_excel-master/excel.c:579:6: note: in expansion of macro 'Z_SET_ISREF_P' | |
Z_SET_ISREF_P(return_value); | |
^ | |
/tmp/php_excel-master/excel.c:580:11: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
fo = (excel_sheet_object *) zend_object_store_get_object(return_value TSRMLS_CC); | |
^ | |
/tmp/php_excel-master/excel.c: In function 'zim_ExcelBook_deleteSheet': | |
/tmp/php_excel-master/excel.c:114:28: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_book_object *obj = (excel_book_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:610:2: note: in expansion of macro 'BOOK_FROM_OBJECT' | |
BOOK_FROM_OBJECT(book, object); | |
^ | |
/tmp/php_excel-master/excel.c: In function 'zim_ExcelBook_activeSheet': | |
/tmp/php_excel-master/excel.c:114:28: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_book_object *obj = (excel_book_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:629:2: note: in expansion of macro 'BOOK_FROM_OBJECT' | |
BOOK_FROM_OBJECT(book, object); | |
^ | |
/tmp/php_excel-master/excel.c: In function 'zim_ExcelBook_addSheet': | |
/tmp/php_excel-master/excel.c:114:28: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_book_object *obj = (excel_book_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:659:2: note: in expansion of macro 'BOOK_FROM_OBJECT' | |
BOOK_FROM_OBJECT(book, object); | |
^ | |
/tmp/php_excel-master/excel.c:671:25: error: lvalue required as left operand of assignment | |
Z_TYPE_P(return_value) = IS_OBJECT; | |
^ | |
In file included from /tmp/php_excel-master/excel.c:35:0: | |
/tmp/php_excel-master/php_excel.h:59:35: error: 'zval' has no member named 'is_ref' | |
# define Z_SET_ISREF_P(pz) (pz)->is_ref = 1 | |
^ | |
/tmp/php_excel-master/excel.c:674:2: note: in expansion of macro 'Z_SET_ISREF_P' | |
Z_SET_ISREF_P(return_value); | |
^ | |
/tmp/php_excel-master/excel.c:675:7: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
fo = (excel_sheet_object *) zend_object_store_get_object(return_value TSRMLS_CC); | |
^ | |
/tmp/php_excel-master/excel.c: In function 'zim_ExcelBook_copySheet': | |
/tmp/php_excel-master/excel.c:114:28: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_book_object *obj = (excel_book_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:704:2: note: in expansion of macro 'BOOK_FROM_OBJECT' | |
BOOK_FROM_OBJECT(book, object); | |
^ | |
/tmp/php_excel-master/excel.c:719:25: error: lvalue required as left operand of assignment | |
Z_TYPE_P(return_value) = IS_OBJECT; | |
^ | |
In file included from /tmp/php_excel-master/excel.c:35:0: | |
/tmp/php_excel-master/php_excel.h:59:35: error: 'zval' has no member named 'is_ref' | |
# define Z_SET_ISREF_P(pz) (pz)->is_ref = 1 | |
^ | |
/tmp/php_excel-master/excel.c:722:2: note: in expansion of macro 'Z_SET_ISREF_P' | |
Z_SET_ISREF_P(return_value); | |
^ | |
/tmp/php_excel-master/excel.c:723:7: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
fo = (excel_sheet_object *) zend_object_store_get_object(return_value TSRMLS_CC); | |
^ | |
/tmp/php_excel-master/excel.c: In function 'zim_ExcelBook_sheetCount': | |
/tmp/php_excel-master/excel.c:114:28: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_book_object *obj = (excel_book_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:740:2: note: in expansion of macro 'BOOK_FROM_OBJECT' | |
BOOK_FROM_OBJECT(book, object); | |
^ | |
/tmp/php_excel-master/excel.c: In function 'zim_ExcelBook_getError': | |
/tmp/php_excel-master/excel.c:114:28: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_book_object *obj = (excel_book_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:758:2: note: in expansion of macro 'BOOK_FROM_OBJECT' | |
BOOK_FROM_OBJECT(book, object); | |
^ | |
/tmp/php_excel-master/excel.c:765:24: error: macro "RETURN_STRING" passed 2 arguments, but takes just 1 | |
RETURN_STRING(err, 1); | |
^ | |
/tmp/php_excel-master/excel.c:765:4: error: 'RETURN_STRING' undeclared (first use in this function) | |
RETURN_STRING(err, 1); | |
^ | |
/tmp/php_excel-master/excel.c:768:35: error: macro "RETURN_STRING" passed 2 arguments, but takes just 1 | |
RETURN_STRING("Unknown Error", 1); | |
^ | |
/tmp/php_excel-master/excel.c: In function 'zim_ExcelBook_addFont': | |
/tmp/php_excel-master/excel.c:114:28: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_book_object *obj = (excel_book_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:788:2: note: in expansion of macro 'BOOK_FROM_OBJECT' | |
BOOK_FROM_OBJECT(book, object); | |
^ | |
/tmp/php_excel-master/excel.c:151:28: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_font_object *obj = (excel_font_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:790:3: note: in expansion of macro 'FONT_FROM_OBJECT' | |
FONT_FROM_OBJECT(font, fob); | |
^ | |
/tmp/php_excel-master/excel.c:798:25: error: lvalue required as left operand of assignment | |
Z_TYPE_P(return_value) = IS_OBJECT; | |
^ | |
In file included from /tmp/php_excel-master/excel.c:35:0: | |
/tmp/php_excel-master/php_excel.h:59:35: error: 'zval' has no member named 'is_ref' | |
# define Z_SET_ISREF_P(pz) (pz)->is_ref = 1 | |
^ | |
/tmp/php_excel-master/excel.c:801:2: note: in expansion of macro 'Z_SET_ISREF_P' | |
Z_SET_ISREF_P(return_value); | |
^ | |
/tmp/php_excel-master/excel.c:802:7: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
fo = (excel_font_object *) zend_object_store_get_object(return_value TSRMLS_CC); | |
^ | |
/tmp/php_excel-master/excel.c: In function 'zim_ExcelBook_addFormat': | |
/tmp/php_excel-master/excel.c:114:28: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_book_object *obj = (excel_book_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:823:2: note: in expansion of macro 'BOOK_FROM_OBJECT' | |
BOOK_FROM_OBJECT(book, object); | |
^ | |
/tmp/php_excel-master/excel.c:167:30: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_format_object *obj = (excel_format_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:825:3: note: in expansion of macro 'FORMAT_FROM_OBJECT' | |
FORMAT_FROM_OBJECT(format, fob); | |
^ | |
/tmp/php_excel-master/excel.c:833:25: error: lvalue required as left operand of assignment | |
Z_TYPE_P(return_value) = IS_OBJECT; | |
^ | |
In file included from /tmp/php_excel-master/excel.c:35:0: | |
/tmp/php_excel-master/php_excel.h:59:35: error: 'zval' has no member named 'is_ref' | |
# define Z_SET_ISREF_P(pz) (pz)->is_ref = 1 | |
^ | |
/tmp/php_excel-master/excel.c:836:2: note: in expansion of macro 'Z_SET_ISREF_P' | |
Z_SET_ISREF_P(return_value); | |
^ | |
/tmp/php_excel-master/excel.c:837:7: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
fo = (excel_format_object *) zend_object_store_get_object(return_value TSRMLS_CC); | |
^ | |
/tmp/php_excel-master/excel.c: In function 'zim_ExcelBook_getAllFormats': | |
/tmp/php_excel-master/excel.c:114:28: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_book_object *obj = (excel_book_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:857:2: note: in expansion of macro 'BOOK_FROM_OBJECT' | |
BOOK_FROM_OBJECT(book, object); | |
^ | |
/tmp/php_excel-master/excel.c:874:20: error: lvalue required as left operand of assignment | |
Z_TYPE_P(value) = IS_OBJECT; | |
^ | |
In file included from /tmp/php_excel-master/excel.c:35:0: | |
/tmp/php_excel-master/php_excel.h:59:35: error: 'zval' has no member named 'is_ref' | |
# define Z_SET_ISREF_P(pz) (pz)->is_ref = 1 | |
^ | |
/tmp/php_excel-master/excel.c:877:4: note: in expansion of macro 'Z_SET_ISREF_P' | |
Z_SET_ISREF_P(value); | |
^ | |
/tmp/php_excel-master/excel.c:878:9: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
fo = (excel_format_object *) zend_object_store_get_object(value TSRMLS_CC); | |
^ | |
/tmp/php_excel-master/excel.c: In function 'zim_ExcelBook_addCustomFormat': | |
/tmp/php_excel-master/excel.c:114:28: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_book_object *obj = (excel_book_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:907:2: note: in expansion of macro 'BOOK_FROM_OBJECT' | |
BOOK_FROM_OBJECT(book, object); | |
^ | |
/tmp/php_excel-master/excel.c: In function 'zim_ExcelBook_getCustomFormat': | |
/tmp/php_excel-master/excel.c:114:28: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_book_object *obj = (excel_book_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:933:2: note: in expansion of macro 'BOOK_FROM_OBJECT' | |
BOOK_FROM_OBJECT(book, object); | |
^ | |
/tmp/php_excel-master/excel.c:938:23: error: macro "RETURN_STRING" passed 2 arguments, but takes just 1 | |
RETURN_STRING(data, 1); | |
^ | |
/tmp/php_excel-master/excel.c:938:2: error: 'RETURN_STRING' undeclared (first use in this function) | |
RETURN_STRING(data, 1); | |
^ | |
/tmp/php_excel-master/excel.c: In function 'zim_ExcelBook_packDate': | |
/tmp/php_excel-master/excel.c:114:28: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_book_object *obj = (excel_book_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:977:2: note: in expansion of macro 'BOOK_FROM_OBJECT' | |
BOOK_FROM_OBJECT(book, object); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelBook_packDateValues': | |
[0m[91m/tmp/php_excel-master/excel.c:114:28: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_book_object *obj = (excel_book_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:1040:2: note: in expansion of macro 'BOOK_FROM_OBJECT' | |
BOOK_FROM_OBJECT(book, object); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelBook_unpackDate': | |
/tmp/php_excel-master/excel.c:114:28: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_book_object *obj = (excel_book_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:1097:2: note: in expansion of macro 'BOOK_FROM_OBJECT' | |
BOOK_FROM_OBJECT(book, object); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelBook_isDate1904': | |
/tmp/php_excel-master/excel.c:114:28: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_book_object *obj = (excel_book_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:1118:2: note: in expansion of macro 'BOOK_FROM_OBJECT' | |
BOOK_FROM_OBJECT(book, object); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelBook_setDate1904': | |
/tmp/php_excel-master/excel.c:114:28: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_book_object *obj = (excel_book_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:1136:2: note: in expansion of macro 'BOOK_FROM_OBJECT' | |
BOOK_FROM_OBJECT(book, object); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelBook_getActiveSheet': | |
/tmp/php_excel-master/excel.c:114:28: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_book_object *obj = (excel_book_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:1156:2: note: in expansion of macro 'BOOK_FROM_OBJECT' | |
BOOK_FROM_OBJECT(book, object); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelBook_getDefaultFont': | |
/tmp/php_excel-master/excel.c:114:28: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_book_object *obj = (excel_book_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:1179:2: note: in expansion of macro 'BOOK_FROM_OBJECT' | |
BOOK_FROM_OBJECT(book, object); | |
^ | |
/tmp/php_excel-master/excel.c:1186:56: error: macro "add_assoc_string" passed 4 arguments, but takes just 3 | |
add_assoc_string(return_value, "font", (char *)font, 1); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c:1186:2: error: 'add_assoc_string' undeclared (first use in this function) | |
add_assoc_string(return_value, "font", (char *)font, 1); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelBook_setDefaultFont': | |
/tmp/php_excel-master/excel.c:114:28: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_book_object *obj = (excel_book_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:1205:2: note: in expansion of macro 'BOOK_FROM_OBJECT' | |
BOOK_FROM_OBJECT(book, object); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelBook_setLocale': | |
/tmp/php_excel-master/excel.c:114:28: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_book_object *obj = (excel_book_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:1224:2: note: in expansion of macro 'BOOK_FROM_OBJECT' | |
BOOK_FROM_OBJECT(book, object); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelBook___construct': | |
/tmp/php_excel-master/excel.c:114:28: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_book_object *obj = (excel_book_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:1273:2: note: in expansion of macro 'BOOK_FROM_OBJECT' | |
BOOK_FROM_OBJECT(book, object); | |
^ | |
/tmp/php_excel-master/excel.c:1276:28: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_book_object *obj = (excel_book_object*) zend_object_store_get_object(object TSRMLS_CC); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c:1309:61: warning: passing argument 3 of 'xml_utf8_decode' from incompatible pointer type | |
namep = xml_utf8_decode((const XML_Char *) name, name_len, &plen, (const XML_Char *)"ISO-8859-1"); | |
^ | |
[0m[91mIn file included from /tmp/php_excel-master/excel.c:32:0: | |
/usr/local/include/php/ext/xml/php_xml.h:140:26: note: expected 'const XML_Char *' but argument is of type 'int *' | |
PHP_XML_API zend_string *xml_utf8_decode(const XML_Char *, size_t, const XML_Char *); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c:1309:10: error: too many arguments to function 'xml_utf8_decode' | |
namep = xml_utf8_decode((const XML_Char *) name, name_len, &plen, (const XML_Char *)"ISO-8859-1"); | |
^ | |
In file included from /tmp/php_excel-master/excel.c:32:0: | |
/usr/local/include/php/ext/xml/php_xml.h:140:26: note: declared here | |
PHP_XML_API zend_string *xml_utf8_decode(const XML_Char *, size_t, const XML_Char *); | |
^ | |
/tmp/php_excel-master/excel.c:1309:8: warning: assignment from incompatible pointer type | |
namep = xml_utf8_decode((const XML_Char *) name, name_len, &plen, (const XML_Char *)"ISO-8859-1"); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c:1310:58: warning: passing argument 3 of 'xml_utf8_decode' from incompatible pointer type | |
keyp = xml_utf8_decode((const XML_Char *) key, key_len, &plen, (const XML_Char *)"ISO-8859-1"); | |
^ | |
In file included from /tmp/php_excel-master/excel.c:32:0: | |
/usr/local/include/php/ext/xml/php_xml.h:140:26: note: expected 'const XML_Char *' but argument is of type 'int *' | |
PHP_XML_API zend_string *xml_utf8_decode(const XML_Char *, size_t, const XML_Char *); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c:1310:9: error: too many arguments to function 'xml_utf8_decode' | |
keyp = xml_utf8_decode((const XML_Char *) key, key_len, &plen, (const XML_Char *)"ISO-8859-1"); | |
^ | |
In file included from /tmp/php_excel-master/excel.c:32:0: | |
/usr/local/include/php/ext/xml/php_xml.h:140:26: note: declared here | |
PHP_XML_API zend_string *xml_utf8_decode(const XML_Char *, size_t, const XML_Char *); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c:1310:7: warning: assignment from incompatible pointer type | |
keyp = xml_utf8_decode((const XML_Char *) key, key_len, &plen, (const XML_Char *)"ISO-8859-1"); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelBook_setActiveSheet': | |
/tmp/php_excel-master/excel.c:114:28: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_book_object *obj = (excel_book_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:1333:2: note: in expansion of macro 'BOOK_FROM_OBJECT' | |
BOOK_FROM_OBJECT(book, object); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'php_excel_add_picture': | |
[0m[91m/tmp/php_excel-master/excel.c:114:28: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_book_object *obj = (excel_book_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:1348:2: note: in expansion of macro 'BOOK_FROM_OBJECT' | |
BOOK_FROM_OBJECT(book, object); | |
^ | |
[0m[91mIn file included from /usr/local/include/php/main/php.h:388:0, | |
from /tmp/php_excel-master/excel.c:26: | |
/tmp/php_excel-master/excel.c:1357:60: error: 'ENFORCE_SAFE_MODE' undeclared (first use in this function) | |
php_stream *stream = php_stream_open_wrapper(data, "rb", ENFORCE_SAFE_MODE | REPORT_ERRORS, NULL); | |
^ | |
/usr/local/include/php/main/php_streams.h:568:107: note: in definition of macro 'php_stream_open_wrapper' | |
#define php_stream_open_wrapper(path, mode, options, opened) _php_stream_open_wrapper_ex((path), (mode), (options), (opened), NULL STREAMS_CC) | |
^ | |
/tmp/php_excel-master/excel.c:1365:73: error: macro "php_stream_copy_to_mem" passed 4 arguments, but takes just 3 | |
len = php_stream_copy_to_mem(stream, &contents, PHP_STREAM_COPY_ALL, 0); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c:1365:9: error: 'php_stream_copy_to_mem' undeclared (first use in this function) | |
len = php_stream_copy_to_mem(stream, &contents, PHP_STREAM_COPY_ALL, 0); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelBook_rgbMode': | |
/tmp/php_excel-master/excel.c:114:28: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_book_object *obj = (excel_book_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:1414:2: note: in expansion of macro 'BOOK_FROM_OBJECT' | |
BOOK_FROM_OBJECT(book, object); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelBook_setRGBMode': | |
[0m[91m/tmp/php_excel-master/excel.c:114:28: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_book_object *obj = (excel_book_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:1432:2: note: in expansion of macro 'BOOK_FROM_OBJECT' | |
BOOK_FROM_OBJECT(book, object); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelBook_colorPack': | |
/tmp/php_excel-master/excel.c:114:28: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_book_object *obj = (excel_book_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:1461:2: note: in expansion of macro 'BOOK_FROM_OBJECT' | |
BOOK_FROM_OBJECT(book, object); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelBook_colorUnpack': | |
/tmp/php_excel-master/excel.c:114:28: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_book_object *obj = (excel_book_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:1489:2: note: in expansion of macro 'BOOK_FROM_OBJECT' | |
BOOK_FROM_OBJECT(book, object); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelFont_size': | |
/tmp/php_excel-master/excel.c:151:28: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_font_object *obj = (excel_font_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:1513:2: note: in expansion of macro 'FONT_FROM_OBJECT' | |
FONT_FROM_OBJECT(font, object); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelFont_italics': | |
/tmp/php_excel-master/excel.c:151:28: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_font_object *obj = (excel_font_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:1535:2: note: in expansion of macro 'FONT_FROM_OBJECT' | |
FONT_FROM_OBJECT(font, object); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelFont_strike': | |
/tmp/php_excel-master/excel.c:151:28: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_font_object *obj = (excel_font_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:1557:2: note: in expansion of macro 'FONT_FROM_OBJECT' | |
FONT_FROM_OBJECT(font, object); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelFont_bold': | |
/tmp/php_excel-master/excel.c:151:28: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_font_object *obj = (excel_font_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:1579:2: note: in expansion of macro 'FONT_FROM_OBJECT' | |
FONT_FROM_OBJECT(font, object); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelFont_color': | |
/tmp/php_excel-master/excel.c:151:28: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_font_object *obj = (excel_font_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:1601:2: note: in expansion of macro 'FONT_FROM_OBJECT' | |
FONT_FROM_OBJECT(font, object); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelFont_mode': | |
/tmp/php_excel-master/excel.c:151:28: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_font_object *obj = (excel_font_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:1623:2: note: in expansion of macro 'FONT_FROM_OBJECT' | |
FONT_FROM_OBJECT(font, object); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelFont_underline': | |
/tmp/php_excel-master/excel.c:151:28: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_font_object *obj = (excel_font_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:1645:2: note: in expansion of macro 'FONT_FROM_OBJECT' | |
FONT_FROM_OBJECT(font, object); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelFont_name': | |
/tmp/php_excel-master/excel.c:151:28: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_font_object *obj = (excel_font_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:1668:2: note: in expansion of macro 'FONT_FROM_OBJECT' | |
FONT_FROM_OBJECT(font, object); | |
^ | |
/tmp/php_excel-master/excel.c:1674:43: error: macro "RETURN_STRING" passed 2 arguments, but takes just 1 | |
RETURN_STRING((char *)xlFontName(font), 1); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c:1674:2: error: 'RETURN_STRING' undeclared (first use in this function) | |
RETURN_STRING((char *)xlFontName(font), 1); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelFormat___construct': | |
/tmp/php_excel-master/excel.c:114:28: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_book_object *obj = (excel_book_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:1695:2: note: in expansion of macro 'BOOK_FROM_OBJECT' | |
BOOK_FROM_OBJECT(book, zbook); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c:1697:8: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
obj = (excel_format_object*) zend_object_store_get_object(object TSRMLS_CC); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelFont___construct': | |
/tmp/php_excel-master/excel.c:114:28: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_book_object *obj = (excel_book_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:1726:2: note: in expansion of macro 'BOOK_FROM_OBJECT' | |
BOOK_FROM_OBJECT(book, zbook); | |
^ | |
/tmp/php_excel-master/excel.c:1728:8: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
obj = (excel_font_object*) zend_object_store_get_object(object TSRMLS_CC); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelFormat_setFont': | |
[0m[91m/tmp/php_excel-master/excel.c:167:30: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_format_object *obj = (excel_format_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:1753:2: note: in expansion of macro 'FORMAT_FROM_OBJECT' | |
FORMAT_FROM_OBJECT(format, object); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c:151:28: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_font_object *obj = (excel_font_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:1754:2: note: in expansion of macro 'FONT_FROM_OBJECT' | |
FONT_FROM_OBJECT(font, zfont); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelFormat_getFont': | |
/tmp/php_excel-master/excel.c:1771:29: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_format_object *obj = (excel_format_object*) zend_object_store_get_object(object TSRMLS_CC); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c:167:30: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_format_object *obj = (excel_format_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:1783:2: note: in expansion of macro 'FORMAT_FROM_OBJECT' | |
FORMAT_FROM_OBJECT(format, object); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c:1790:25: error: lvalue required as left operand of assignment | |
Z_TYPE_P(return_value) = IS_OBJECT; | |
^ | |
[0m[91mIn file included from /tmp/php_excel-master/excel.c:35:0: | |
/tmp/php_excel-master/php_excel.h:59:35: error: 'zval' has no member named 'is_ref' | |
# define Z_SET_ISREF_P(pz) (pz)->is_ref = 1 | |
^ | |
/tmp/php_excel-master/excel.c:1793:2: note: in expansion of macro 'Z_SET_ISREF_P' | |
Z_SET_ISREF_P(return_value); | |
^ | |
/tmp/php_excel-master/excel.c:1794:7: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
fo = (excel_font_object *) zend_object_store_get_object(return_value TSRMLS_CC); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelFormat_numberFormat': | |
[0m[91m/tmp/php_excel-master/excel.c:167:30: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_format_object *obj = (excel_format_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:1808:3: note: in expansion of macro 'FORMAT_FROM_OBJECT' | |
FORMAT_FROM_OBJECT(format, object); \ | |
^ | |
/tmp/php_excel-master/excel.c:1838:2: note: in expansion of macro 'PHP_EXCEL_LONG_FORMAT_OPTION' | |
PHP_EXCEL_LONG_FORMAT_OPTION(NumFormat, 0); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelFormat_horizontalAlign': | |
[0m[91m/tmp/php_excel-master/excel.c:167:30: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_format_object *obj = (excel_format_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:1808:3: note: in expansion of macro 'FORMAT_FROM_OBJECT' | |
FORMAT_FROM_OBJECT(format, object); \ | |
^ | |
/tmp/php_excel-master/excel.c:1846:2: note: in expansion of macro 'PHP_EXCEL_LONG_FORMAT_OPTION' | |
PHP_EXCEL_LONG_FORMAT_OPTION(AlignH, 0); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelFormat_verticalAlign': | |
[0m[91m/tmp/php_excel-master/excel.c:167:30: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_format_object *obj = (excel_format_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:1808:3: note: in expansion of macro 'FORMAT_FROM_OBJECT' | |
FORMAT_FROM_OBJECT(format, object); \ | |
^ | |
/tmp/php_excel-master/excel.c:1854:2: note: in expansion of macro 'PHP_EXCEL_LONG_FORMAT_OPTION' | |
PHP_EXCEL_LONG_FORMAT_OPTION(AlignV, 0); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelFormat_wrap': | |
[0m[91m/tmp/php_excel-master/excel.c:167:30: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_format_object *obj = (excel_format_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:1827:3: note: in expansion of macro 'FORMAT_FROM_OBJECT' | |
FORMAT_FROM_OBJECT(format, object); \ | |
^ | |
/tmp/php_excel-master/excel.c:1862:2: note: in expansion of macro 'PHP_EXCEL_BOOL_FORMAT_OPTION' | |
PHP_EXCEL_BOOL_FORMAT_OPTION(Wrap); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelFormat_rotate': | |
[0m[91m/tmp/php_excel-master/excel.c:167:30: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_format_object *obj = (excel_format_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:1878:2: note: in expansion of macro 'FORMAT_FROM_OBJECT' | |
FORMAT_FROM_OBJECT(format, object); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelFormat_indent': | |
[0m[91m/tmp/php_excel-master/excel.c:167:30: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_format_object *obj = (excel_format_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:1904:2: note: in expansion of macro 'FORMAT_FROM_OBJECT' | |
FORMAT_FROM_OBJECT(format, object); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelFormat_shrinkToFit': | |
[0m[91m/tmp/php_excel-master/excel.c:167:30: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_format_object *obj = (excel_format_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:1827:3: note: in expansion of macro 'FORMAT_FROM_OBJECT' | |
FORMAT_FROM_OBJECT(format, object); \ | |
^ | |
/tmp/php_excel-master/excel.c:1922:2: note: in expansion of macro 'PHP_EXCEL_BOOL_FORMAT_OPTION' | |
PHP_EXCEL_BOOL_FORMAT_OPTION(ShrinkToFit); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelFormat_borderStyle': | |
[0m[91m/tmp/php_excel-master/excel.c:167:30: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_format_object *obj = (excel_format_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:1808:3: note: in expansion of macro 'FORMAT_FROM_OBJECT' | |
FORMAT_FROM_OBJECT(format, object); \ | |
^ | |
/tmp/php_excel-master/excel.c:1930:2: note: in expansion of macro 'PHP_EXCEL_LONG_FORMAT_OPTION' | |
PHP_EXCEL_LONG_FORMAT_OPTION(Border, 1); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelFormat_borderColor': | |
[0m[91m/tmp/php_excel-master/excel.c:167:30: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_format_object *obj = (excel_format_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:1808:3: note: in expansion of macro 'FORMAT_FROM_OBJECT' | |
FORMAT_FROM_OBJECT(format, object); \ | |
^ | |
/tmp/php_excel-master/excel.c:1938:2: note: in expansion of macro 'PHP_EXCEL_LONG_FORMAT_OPTION' | |
PHP_EXCEL_LONG_FORMAT_OPTION(BorderColor, 1); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelFormat_borderLeftStyle': | |
[0m[91m/tmp/php_excel-master/excel.c:167:30: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_format_object *obj = (excel_format_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:1808:3: note: in expansion of macro 'FORMAT_FROM_OBJECT' | |
FORMAT_FROM_OBJECT(format, object); \ | |
^ | |
/tmp/php_excel-master/excel.c:1946:2: note: in expansion of macro 'PHP_EXCEL_LONG_FORMAT_OPTION' | |
PHP_EXCEL_LONG_FORMAT_OPTION(BorderLeft, 0); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelFormat_borderLeftColor': | |
[0m[91m/tmp/php_excel-master/excel.c:167:30: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_format_object *obj = (excel_format_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:1808:3: note: in expansion of macro 'FORMAT_FROM_OBJECT' | |
FORMAT_FROM_OBJECT(format, object); \ | |
^ | |
/tmp/php_excel-master/excel.c:1954:2: note: in expansion of macro 'PHP_EXCEL_LONG_FORMAT_OPTION' | |
PHP_EXCEL_LONG_FORMAT_OPTION(BorderLeftColor, 0); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelFormat_borderRightStyle': | |
[0m[91m/tmp/php_excel-master/excel.c:167:30: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_format_object *obj = (excel_format_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:1808:3: note: in expansion of macro 'FORMAT_FROM_OBJECT' | |
FORMAT_FROM_OBJECT(format, object); \ | |
^ | |
/tmp/php_excel-master/excel.c:1962:2: note: in expansion of macro 'PHP_EXCEL_LONG_FORMAT_OPTION' | |
PHP_EXCEL_LONG_FORMAT_OPTION(BorderRight, 0); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelFormat_borderRightColor': | |
[0m[91m/tmp/php_excel-master/excel.c:167:30: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_format_object *obj = (excel_format_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:1808:3: note: in expansion of macro 'FORMAT_FROM_OBJECT' | |
FORMAT_FROM_OBJECT(format, object); \ | |
^ | |
/tmp/php_excel-master/excel.c:1970:2: note: in expansion of macro 'PHP_EXCEL_LONG_FORMAT_OPTION' | |
PHP_EXCEL_LONG_FORMAT_OPTION(BorderRightColor, 0); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelFormat_borderTopStyle': | |
[0m[91m/tmp/php_excel-master/excel.c:167:30: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_format_object *obj = (excel_format_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:1808:3: note: in expansion of macro 'FORMAT_FROM_OBJECT' | |
FORMAT_FROM_OBJECT(format, object); \ | |
^ | |
/tmp/php_excel-master/excel.c:1978:2: note: in expansion of macro 'PHP_EXCEL_LONG_FORMAT_OPTION' | |
PHP_EXCEL_LONG_FORMAT_OPTION(BorderTop, 0); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelFormat_borderTopColor': | |
[0m[91m/tmp/php_excel-master/excel.c:167:30: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_format_object *obj = (excel_format_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:1808:3: note: in expansion of macro 'FORMAT_FROM_OBJECT' | |
FORMAT_FROM_OBJECT(format, object); \ | |
^ | |
/tmp/php_excel-master/excel.c:1986:2: note: in expansion of macro 'PHP_EXCEL_LONG_FORMAT_OPTION' | |
PHP_EXCEL_LONG_FORMAT_OPTION(BorderTopColor, 0); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelFormat_borderBottomStyle': | |
[0m[91m/tmp/php_excel-master/excel.c:167:30: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_format_object *obj = (excel_format_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:1808:3: note: in expansion of macro 'FORMAT_FROM_OBJECT' | |
FORMAT_FROM_OBJECT(format, object); \ | |
^ | |
/tmp/php_excel-master/excel.c:1994:2: note: in expansion of macro 'PHP_EXCEL_LONG_FORMAT_OPTION' | |
PHP_EXCEL_LONG_FORMAT_OPTION(BorderBottom, 0); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelFormat_borderBottomColor': | |
[0m[91m/tmp/php_excel-master/excel.c:167:30: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_format_object *obj = (excel_format_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:1808:3: note: in expansion of macro 'FORMAT_FROM_OBJECT' | |
FORMAT_FROM_OBJECT(format, object); \ | |
^ | |
/tmp/php_excel-master/excel.c:2002:2: note: in expansion of macro 'PHP_EXCEL_LONG_FORMAT_OPTION' | |
PHP_EXCEL_LONG_FORMAT_OPTION(BorderBottomColor, 0); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelFormat_borderDiagonalStyle': | |
[0m[91m/tmp/php_excel-master/excel.c:167:30: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_format_object *obj = (excel_format_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:1808:3: note: in expansion of macro 'FORMAT_FROM_OBJECT' | |
FORMAT_FROM_OBJECT(format, object); \ | |
^ | |
/tmp/php_excel-master/excel.c:2010:2: note: in expansion of macro 'PHP_EXCEL_LONG_FORMAT_OPTION' | |
PHP_EXCEL_LONG_FORMAT_OPTION(BorderDiagonal, 0); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelFormat_borderDiagonalColor': | |
[0m[91m/tmp/php_excel-master/excel.c:167:30: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_format_object *obj = (excel_format_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:1808:3: note: in expansion of macro 'FORMAT_FROM_OBJECT' | |
FORMAT_FROM_OBJECT(format, object); \ | |
^ | |
/tmp/php_excel-master/excel.c:2018:2: note: in expansion of macro 'PHP_EXCEL_LONG_FORMAT_OPTION' | |
PHP_EXCEL_LONG_FORMAT_OPTION(BorderDiagonalColor, 0); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelFormat_fillPattern': | |
[0m[91m/tmp/php_excel-master/excel.c:167:30: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_format_object *obj = (excel_format_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:1808:3: note: in expansion of macro 'FORMAT_FROM_OBJECT' | |
FORMAT_FROM_OBJECT(format, object); \ | |
^ | |
/tmp/php_excel-master/excel.c:2026:2: note: in expansion of macro 'PHP_EXCEL_LONG_FORMAT_OPTION' | |
PHP_EXCEL_LONG_FORMAT_OPTION(FillPattern, 0); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelFormat_patternForegroundColor': | |
[0m[91m/tmp/php_excel-master/excel.c:167:30: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_format_object *obj = (excel_format_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:1808:3: note: in expansion of macro 'FORMAT_FROM_OBJECT' | |
FORMAT_FROM_OBJECT(format, object); \ | |
^ | |
/tmp/php_excel-master/excel.c:2034:2: note: in expansion of macro 'PHP_EXCEL_LONG_FORMAT_OPTION' | |
PHP_EXCEL_LONG_FORMAT_OPTION(PatternForegroundColor, 0); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelFormat_patternBackgroundColor': | |
[0m[91m/tmp/php_excel-master/excel.c:167:30: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_format_object *obj = (excel_format_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:1808:3: note: in expansion of macro 'FORMAT_FROM_OBJECT' | |
FORMAT_FROM_OBJECT(format, object); \ | |
^ | |
/tmp/php_excel-master/excel.c:2042:2: note: in expansion of macro 'PHP_EXCEL_LONG_FORMAT_OPTION' | |
PHP_EXCEL_LONG_FORMAT_OPTION(PatternBackgroundColor, 0); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelFormat_locked': | |
[0m[91m/tmp/php_excel-master/excel.c:167:30: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_format_object *obj = (excel_format_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:1827:3: note: in expansion of macro 'FORMAT_FROM_OBJECT' | |
FORMAT_FROM_OBJECT(format, object); \ | |
^ | |
/tmp/php_excel-master/excel.c:2050:2: note: in expansion of macro 'PHP_EXCEL_BOOL_FORMAT_OPTION' | |
PHP_EXCEL_BOOL_FORMAT_OPTION(Locked); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelFormat_hidden': | |
[0m[91m/tmp/php_excel-master/excel.c:167:30: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_format_object *obj = (excel_format_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:1827:3: note: in expansion of macro 'FORMAT_FROM_OBJECT' | |
FORMAT_FROM_OBJECT(format, object); \ | |
^ | |
/tmp/php_excel-master/excel.c:2058:2: note: in expansion of macro 'PHP_EXCEL_BOOL_FORMAT_OPTION' | |
PHP_EXCEL_BOOL_FORMAT_OPTION(Hidden); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelSheet___construct': | |
/tmp/php_excel-master/excel.c:114:28: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_book_object *obj = (excel_book_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:2081:2: note: in expansion of macro 'BOOK_FROM_OBJECT' | |
BOOK_FROM_OBJECT(book, zbook); | |
^ | |
/tmp/php_excel-master/excel.c:2083:8: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
obj = (excel_sheet_object*) zend_object_store_get_object(object TSRMLS_CC); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelSheet_cellType': | |
[0m[91m/tmp/php_excel-master/excel.c:130:29: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_sheet_object *obj = (excel_sheet_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:2112:2: note: in expansion of macro 'SHEET_FROM_OBJECT' | |
SHEET_FROM_OBJECT(sheet, object); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelSheet_cellFormat': | |
[0m[91m/tmp/php_excel-master/excel.c:130:29: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_sheet_object *obj = (excel_sheet_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:2132:2: note: in expansion of macro 'SHEET_FROM_OBJECT' | |
SHEET_FROM_OBJECT(sheet, object); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c:2136:25: error: lvalue required as left operand of assignment | |
Z_TYPE_P(return_value) = IS_OBJECT; | |
^ | |
In file included from /tmp/php_excel-master/excel.c:35:0: | |
/tmp/php_excel-master/php_excel.h:59:35: error: 'zval' has no member named 'is_ref' | |
# define Z_SET_ISREF_P(pz) (pz)->is_ref = 1 | |
^ | |
/tmp/php_excel-master/excel.c:2139:2: note: in expansion of macro 'Z_SET_ISREF_P' | |
Z_SET_ISREF_P(return_value); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c:2140:7: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
fo = (excel_format_object *) zend_object_store_get_object(return_value TSRMLS_CC); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelSheet_setCellFormat': | |
/tmp/php_excel-master/excel.c:130:29: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_sheet_object *obj = (excel_sheet_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:2160:2: note: in expansion of macro 'SHEET_FROM_OBJECT' | |
SHEET_FROM_OBJECT(sheet, object); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c:167:30: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_format_object *obj = (excel_format_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:2161:2: note: in expansion of macro 'FORMAT_FROM_OBJECT' | |
FORMAT_FROM_OBJECT(format, oformat); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'php_excel_read_cell': | |
/tmp/php_excel-master/excel.c:2174:33: error: macro "ZVAL_STRING" passed 3 arguments, but takes just 2 | |
ZVAL_STRING(val, (char *)s, 1); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c:2174:4: error: 'ZVAL_STRING' undeclared (first use in this function) | |
ZVAL_STRING(val, (char *)s, 1); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c:2218:34: error: macro "ZVAL_STRING" passed 3 arguments, but takes just 2 | |
ZVAL_STRING(val, (char *)s, 1); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelSheet_readRow': | |
[0m[91m/tmp/php_excel-master/excel.c:140:29: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_sheet_object *obj = (excel_sheet_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:2254:2: note: in expansion of macro 'SHEET_AND_BOOK_FROM_OBJECT' | |
SHEET_AND_BOOK_FROM_OBJECT(sheet, book, object); | |
^ | |
[0m[91mIn file included from /usr/local/include/php/Zend/zend.h:39:0, | |
from /usr/local/include/php/main/php.h:35, | |
from /tmp/php_excel-master/excel.c:26: | |
/usr/local/include/php/Zend/zend_variables.h:122:48: warning: passing argument 1 of '_zval_ptr_dtor' from incompatible pointer type | |
#define zval_ptr_dtor(zval_ptr) _zval_ptr_dtor((zval_ptr) ZEND_FILE_LINE_CC) | |
^ | |
/tmp/php_excel-master/excel.c:2285:4: note: in expansion of macro 'zval_ptr_dtor' | |
zval_ptr_dtor(&value); | |
^ | |
/usr/local/include/php/Zend/zend_variables.h:112:15: note: expected 'struct zval *' but argument is of type 'struct zval **' | |
ZEND_API void _zval_ptr_dtor(zval *zval_ptr ZEND_FILE_LINE_DC); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelSheet_readCol': | |
[0m[91m/tmp/php_excel-master/excel.c:140:29: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_sheet_object *obj = (excel_sheet_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:2315:2: note: in expansion of macro 'SHEET_AND_BOOK_FROM_OBJECT' | |
SHEET_AND_BOOK_FROM_OBJECT(sheet, book, object); | |
^ | |
[0m[91mIn file included from /usr/local/include/php/Zend/zend.h:39:0, | |
from /usr/local/include/php/main/php.h:35, | |
from /tmp/php_excel-master/excel.c:26: | |
/usr/local/include/php/Zend/zend_variables.h:122:48: warning: passing argument 1 of '_zval_ptr_dtor' from incompatible pointer type | |
#define zval_ptr_dtor(zval_ptr) _zval_ptr_dtor((zval_ptr) ZEND_FILE_LINE_CC) | |
^ | |
/tmp/php_excel-master/excel.c:2346:4: note: in expansion of macro 'zval_ptr_dtor' | |
zval_ptr_dtor(&value); | |
^ | |
/usr/local/include/php/Zend/zend_variables.h:112:15: note: expected 'struct zval *' but argument is of type 'struct zval **' | |
ZEND_API void _zval_ptr_dtor(zval *zval_ptr ZEND_FILE_LINE_DC); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelSheet_read': | |
/tmp/php_excel-master/excel.c:140:29: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_sheet_object *obj = (excel_sheet_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:2375:2: note: in expansion of macro 'SHEET_AND_BOOK_FROM_OBJECT' | |
SHEET_AND_BOOK_FROM_OBJECT(sheet, book, object); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c:2390:21: error: lvalue required as left operand of assignment | |
Z_TYPE_P(oformat) = IS_OBJECT; | |
^ | |
/tmp/php_excel-master/excel.c:2392:8: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
fo = (excel_format_object *) zend_object_store_get_object(oformat TSRMLS_CC); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'php_excel_write_cell': | |
/tmp/php_excel-master/excel.c:2460:8: error: 'IS_BOOL' undeclared (first use in this function) | |
case IS_BOOL: | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelSheet_write': | |
[0m[91m/tmp/php_excel-master/excel.c:140:29: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_sheet_object *obj = (excel_sheet_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:2484:2: note: in expansion of macro 'SHEET_AND_BOOK_FROM_OBJECT' | |
SHEET_AND_BOOK_FROM_OBJECT(sheet, book, object); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c:167:30: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_format_object *obj = (excel_format_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:2486:3: note: in expansion of macro 'FORMAT_FROM_OBJECT' | |
FORMAT_FROM_OBJECT(format, oformat); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelSheet_writeRow': | |
[0m[91m/tmp/php_excel-master/excel.c:140:29: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_sheet_object *obj = (excel_sheet_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:2517:2: note: in expansion of macro 'SHEET_AND_BOOK_FROM_OBJECT' | |
SHEET_AND_BOOK_FROM_OBJECT(sheet, book, object); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c:167:30: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_format_object *obj = (excel_format_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:2519:3: note: in expansion of macro 'FORMAT_FROM_OBJECT' | |
FORMAT_FROM_OBJECT(format, oformat); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c:2535:51: warning: passing argument 2 of 'zend_hash_get_current_data_ex' from incompatible pointer type | |
zend_hash_get_current_data_ex(Z_ARRVAL_P(data), (void **) &element, &pos) == SUCCESS; | |
^ | |
[0m[91mIn file included from /usr/local/include/php/Zend/zend.h:36:0, | |
from /usr/local/include/php/main/php.h:35, | |
from /tmp/php_excel-master/excel.c:26: | |
/usr/local/include/php/Zend/zend_hash.h:171:30: note: expected 'HashPosition *' but argument is of type 'void **' | |
ZEND_API zval* ZEND_FASTCALL zend_hash_get_current_data_ex(HashTable *ht, HashPosition *pos); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c:2535:3: error: too many arguments to function 'zend_hash_get_current_data_ex' | |
zend_hash_get_current_data_ex(Z_ARRVAL_P(data), (void **) &element, &pos) == SUCCESS; | |
^ | |
In file included from /usr/local/include/php/Zend/zend.h:36:0, | |
from /usr/local/include/php/main/php.h:35, | |
from /tmp/php_excel-master/excel.c:26: | |
/usr/local/include/php/Zend/zend_hash.h:171:30: note: declared here | |
ZEND_API zval* ZEND_FASTCALL zend_hash_get_current_data_ex(HashTable *ht, HashPosition *pos); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelSheet_writeCol': | |
[0m[91m/tmp/php_excel-master/excel.c:140:29: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_sheet_object *obj = (excel_sheet_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:2568:2: note: in expansion of macro 'SHEET_AND_BOOK_FROM_OBJECT' | |
SHEET_AND_BOOK_FROM_OBJECT(sheet, book, object); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c:167:30: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_format_object *obj = (excel_format_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:2570:3: note: in expansion of macro 'FORMAT_FROM_OBJECT' | |
FORMAT_FROM_OBJECT(format, oformat); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c:2586:51: warning: passing argument 2 of 'zend_hash_get_current_data_ex' from incompatible pointer type | |
zend_hash_get_current_data_ex(Z_ARRVAL_P(data), (void **) &element, &pos) == SUCCESS; | |
^ | |
In file included from /usr/local/include/php/Zend/zend.h:36:0, | |
from /usr/local/include/php/main/php.h:35, | |
from /tmp/php_excel-master/excel.c:26: | |
/usr/local/include/php/Zend/zend_hash.h:171:30: note: expected 'HashPosition *' but argument is of type 'void **' | |
ZEND_API zval* ZEND_FASTCALL zend_hash_get_current_data_ex(HashTable *ht, HashPosition *pos); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c:2586:3: error: too many arguments to function 'zend_hash_get_current_data_ex' | |
zend_hash_get_current_data_ex(Z_ARRVAL_P(data), (void **) &element, &pos) == SUCCESS; | |
^ | |
In file included from /usr/local/include/php/Zend/zend.h:36:0, | |
from /usr/local/include/php/main/php.h:35, | |
from /tmp/php_excel-master/excel.c:26: | |
/usr/local/include/php/Zend/zend_hash.h:171:30: note: declared here | |
ZEND_API zval* ZEND_FASTCALL zend_hash_get_current_data_ex(HashTable *ht, HashPosition *pos); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelSheet_isFormula': | |
[0m[91m/tmp/php_excel-master/excel.c:130:29: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_sheet_object *obj = (excel_sheet_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:2607:3: note: in expansion of macro 'SHEET_FROM_OBJECT' | |
SHEET_FROM_OBJECT(sheet, object); \ | |
^ | |
/tmp/php_excel-master/excel.c:2615:2: note: in expansion of macro 'PHP_EXCEL_SHEET_GET_BOOL_STATE' | |
PHP_EXCEL_SHEET_GET_BOOL_STATE(IsFormula) | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelSheet_isDate': | |
[0m[91m/tmp/php_excel-master/excel.c:130:29: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_sheet_object *obj = (excel_sheet_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:2635:2: note: in expansion of macro 'SHEET_FROM_OBJECT' | |
SHEET_FROM_OBJECT(sheet, object); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelSheet_insertRow': | |
[0m[91m/tmp/php_excel-master/excel.c:130:29: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_sheet_object *obj = (excel_sheet_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:2607:3: note: in expansion of macro 'SHEET_FROM_OBJECT' | |
SHEET_FROM_OBJECT(sheet, object); \ | |
^ | |
/tmp/php_excel-master/excel.c:2653:2: note: in expansion of macro 'PHP_EXCEL_SHEET_GET_BOOL_STATE' | |
PHP_EXCEL_SHEET_GET_BOOL_STATE(InsertRow) | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelSheet_insertCol': | |
[0m[91m/tmp/php_excel-master/excel.c:130:29: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_sheet_object *obj = (excel_sheet_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:2607:3: note: in expansion of macro 'SHEET_FROM_OBJECT' | |
SHEET_FROM_OBJECT(sheet, object); \ | |
^ | |
/tmp/php_excel-master/excel.c:2661:2: note: in expansion of macro 'PHP_EXCEL_SHEET_GET_BOOL_STATE' | |
PHP_EXCEL_SHEET_GET_BOOL_STATE(InsertCol) | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelSheet_removeRow': | |
[0m[91m/tmp/php_excel-master/excel.c:130:29: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_sheet_object *obj = (excel_sheet_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:2607:3: note: in expansion of macro 'SHEET_FROM_OBJECT' | |
SHEET_FROM_OBJECT(sheet, object); \ | |
^ | |
/tmp/php_excel-master/excel.c:2669:2: note: in expansion of macro 'PHP_EXCEL_SHEET_GET_BOOL_STATE' | |
PHP_EXCEL_SHEET_GET_BOOL_STATE(RemoveRow) | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelSheet_removeCol': | |
[0m[91m/tmp/php_excel-master/excel.c:130:29: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_sheet_object *obj = (excel_sheet_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:2607:3: note: in expansion of macro 'SHEET_FROM_OBJECT' | |
SHEET_FROM_OBJECT(sheet, object); \ | |
^ | |
/tmp/php_excel-master/excel.c:2677:2: note: in expansion of macro 'PHP_EXCEL_SHEET_GET_BOOL_STATE' | |
PHP_EXCEL_SHEET_GET_BOOL_STATE(RemoveCol) | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelSheet_colWidth': | |
[0m[91m/tmp/php_excel-master/excel.c:130:29: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_sheet_object *obj = (excel_sheet_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:2689:3: note: in expansion of macro 'SHEET_FROM_OBJECT' | |
SHEET_FROM_OBJECT(sheet, object); \ | |
^ | |
/tmp/php_excel-master/excel.c:2697:2: note: in expansion of macro 'PHP_EXCEL_SHEET_GET_DOUBLE_STATE' | |
PHP_EXCEL_SHEET_GET_DOUBLE_STATE(ColWidth) | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelSheet_rowHeight': | |
[0m[91m/tmp/php_excel-master/excel.c:130:29: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_sheet_object *obj = (excel_sheet_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:2689:3: note: in expansion of macro 'SHEET_FROM_OBJECT' | |
SHEET_FROM_OBJECT(sheet, object); \ | |
^ | |
/tmp/php_excel-master/excel.c:2705:2: note: in expansion of macro 'PHP_EXCEL_SHEET_GET_DOUBLE_STATE' | |
PHP_EXCEL_SHEET_GET_DOUBLE_STATE(RowHeight) | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelSheet_readComment': | |
[0m[91m/tmp/php_excel-master/excel.c:130:29: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_sheet_object *obj = (excel_sheet_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:2722:3: note: in expansion of macro 'SHEET_FROM_OBJECT' | |
SHEET_FROM_OBJECT(sheet, object); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c:2728:29: error: macro "RETURN_STRING" passed 2 arguments, but takes just 1 | |
RETURN_STRING((char *)s, 1); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c:2728:3: error: 'RETURN_STRING' undeclared (first use in this function) | |
RETURN_STRING((char *)s, 1); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelSheet_writeComment': | |
[0m[91m/tmp/php_excel-master/excel.c:130:29: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_sheet_object *obj = (excel_sheet_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:2746:3: note: in expansion of macro 'SHEET_FROM_OBJECT' | |
SHEET_FROM_OBJECT(sheet, object); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelSheet_setColWidth': | |
[0m[91m/tmp/php_excel-master/excel.c:130:29: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_sheet_object *obj = (excel_sheet_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:2768:3: note: in expansion of macro 'SHEET_FROM_OBJECT' | |
SHEET_FROM_OBJECT(sheet, object); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c:167:30: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_format_object *obj = (excel_format_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:2771:4: note: in expansion of macro 'FORMAT_FROM_OBJECT' | |
FORMAT_FROM_OBJECT(format, f); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelSheet_setRowHeight': | |
[0m[91m/tmp/php_excel-master/excel.c:130:29: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_sheet_object *obj = (excel_sheet_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:2805:3: note: in expansion of macro 'SHEET_FROM_OBJECT' | |
SHEET_FROM_OBJECT(sheet, object); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c:167:30: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_format_object *obj = (excel_format_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:2808:4: note: in expansion of macro 'FORMAT_FROM_OBJECT' | |
FORMAT_FROM_OBJECT(format, f); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelSheet_getMerge': | |
[0m[91m/tmp/php_excel-master/excel.c:130:29: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_sheet_object *obj = (excel_sheet_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:2840:3: note: in expansion of macro 'SHEET_FROM_OBJECT' | |
SHEET_FROM_OBJECT(sheet, object); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelSheet_setMerge': | |
[0m[91m/tmp/php_excel-master/excel.c:130:29: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_sheet_object *obj = (excel_sheet_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:2866:2: note: in expansion of macro 'SHEET_FROM_OBJECT' | |
SHEET_FROM_OBJECT(sheet, object); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelSheet_deleteMerge': | |
[0m[91m/tmp/php_excel-master/excel.c:130:29: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_sheet_object *obj = (excel_sheet_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:2884:2: note: in expansion of macro 'SHEET_FROM_OBJECT' | |
SHEET_FROM_OBJECT(sheet, object); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelSheet_addPictureScaled': | |
[0m[91m/tmp/php_excel-master/excel.c:130:29: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_sheet_object *obj = (excel_sheet_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:2905:2: note: in expansion of macro 'SHEET_FROM_OBJECT' | |
SHEET_FROM_OBJECT(sheet, object); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelSheet_addPictureDim': | |
[0m[91m/tmp/php_excel-master/excel.c:130:29: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_sheet_object *obj = (excel_sheet_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:2928:2: note: in expansion of macro 'SHEET_FROM_OBJECT' | |
SHEET_FROM_OBJECT(sheet, object); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelSheet_horPageBreak': | |
[0m[91m/tmp/php_excel-master/excel.c:130:29: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_sheet_object *obj = (excel_sheet_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:2985:3: note: in expansion of macro 'SHEET_FROM_OBJECT' | |
SHEET_FROM_OBJECT(sheet, object); \ | |
^ | |
/tmp/php_excel-master/excel.c:2993:2: note: in expansion of macro 'PHP_EXCEL_SHEET_SET_BREAK' | |
PHP_EXCEL_SHEET_SET_BREAK(SetHorPageBreak) | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelSheet_verPageBreak': | |
[0m[91m/tmp/php_excel-master/excel.c:130:29: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_sheet_object *obj = (excel_sheet_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:2985:3: note: in expansion of macro 'SHEET_FROM_OBJECT' | |
SHEET_FROM_OBJECT(sheet, object); \ | |
^ | |
/tmp/php_excel-master/excel.c:3001:2: note: in expansion of macro 'PHP_EXCEL_SHEET_SET_BREAK' | |
PHP_EXCEL_SHEET_SET_BREAK(SetVerPageBreak) | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelSheet_splitSheet': | |
[0m[91m/tmp/php_excel-master/excel.c:130:29: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_sheet_object *obj = (excel_sheet_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:3017:2: note: in expansion of macro 'SHEET_FROM_OBJECT' | |
SHEET_FROM_OBJECT(sheet, object); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelSheet_groupRows': | |
[0m[91m/tmp/php_excel-master/excel.c:130:29: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_sheet_object *obj = (excel_sheet_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:3032:3: note: in expansion of macro 'SHEET_FROM_OBJECT' | |
SHEET_FROM_OBJECT(sheet, object); \ | |
^ | |
/tmp/php_excel-master/excel.c:3040:2: note: in expansion of macro 'PHP_EXCEL_SHEET_GROUP' | |
PHP_EXCEL_SHEET_GROUP(GroupRows) | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelSheet_groupCols': | |
[0m[91m/tmp/php_excel-master/excel.c:130:29: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_sheet_object *obj = (excel_sheet_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:3032:3: note: in expansion of macro 'SHEET_FROM_OBJECT' | |
SHEET_FROM_OBJECT(sheet, object); \ | |
^ | |
/tmp/php_excel-master/excel.c:3048:2: note: in expansion of macro 'PHP_EXCEL_SHEET_GROUP' | |
PHP_EXCEL_SHEET_GROUP(GroupCols) | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelSheet_clear': | |
[0m[91m/tmp/php_excel-master/excel.c:130:29: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_sheet_object *obj = (excel_sheet_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:3064:2: note: in expansion of macro 'SHEET_FROM_OBJECT' | |
SHEET_FROM_OBJECT(sheet, object); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelSheet_copy': | |
[0m[91m/tmp/php_excel-master/excel.c:130:29: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_sheet_object *obj = (excel_sheet_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:3082:2: note: in expansion of macro 'SHEET_FROM_OBJECT' | |
SHEET_FROM_OBJECT(sheet, object); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelSheet_firstRow': | |
[0m[91m/tmp/php_excel-master/excel.c:130:29: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_sheet_object *obj = (excel_sheet_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:3100:2: note: in expansion of macro 'SHEET_FROM_OBJECT' | |
SHEET_FROM_OBJECT(sheet, object); \ | |
^ | |
/tmp/php_excel-master/excel.c:3144:2: note: in expansion of macro 'PHP_EXCEL_INFO' | |
PHP_EXCEL_INFO(FirstRow, IS_LONG) | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelSheet_lastRow': | |
[0m[91m/tmp/php_excel-master/excel.c:130:29: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_sheet_object *obj = (excel_sheet_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:3100:2: note: in expansion of macro 'SHEET_FROM_OBJECT' | |
SHEET_FROM_OBJECT(sheet, object); \ | |
^ | |
/tmp/php_excel-master/excel.c:3152:2: note: in expansion of macro 'PHP_EXCEL_INFO' | |
PHP_EXCEL_INFO(LastRow, IS_LONG) | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelSheet_firstCol': | |
[0m[91m/tmp/php_excel-master/excel.c:130:29: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_sheet_object *obj = (excel_sheet_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:3100:2: note: in expansion of macro 'SHEET_FROM_OBJECT' | |
SHEET_FROM_OBJECT(sheet, object); \ | |
^ | |
/tmp/php_excel-master/excel.c:3160:2: note: in expansion of macro 'PHP_EXCEL_INFO' | |
PHP_EXCEL_INFO(FirstCol, IS_LONG) | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelSheet_lastCol': | |
[0m[91m/tmp/php_excel-master/excel.c:130:29: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_sheet_object *obj = (excel_sheet_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:3100:2: note: in expansion of macro 'SHEET_FROM_OBJECT' | |
SHEET_FROM_OBJECT(sheet, object); \ | |
^ | |
/tmp/php_excel-master/excel.c:3168:2: note: in expansion of macro 'PHP_EXCEL_INFO' | |
PHP_EXCEL_INFO(LastCol, IS_LONG) | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelSheet_displayGridlines': | |
[0m[91m/tmp/php_excel-master/excel.c:130:29: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_sheet_object *obj = (excel_sheet_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:3100:2: note: in expansion of macro 'SHEET_FROM_OBJECT' | |
SHEET_FROM_OBJECT(sheet, object); \ | |
^ | |
/tmp/php_excel-master/excel.c:3176:2: note: in expansion of macro 'PHP_EXCEL_INFO' | |
PHP_EXCEL_INFO(DisplayGridlines, IS_BOOL) | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelSheet_printGridlines': | |
[0m[91m/tmp/php_excel-master/excel.c:130:29: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_sheet_object *obj = (excel_sheet_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:3100:2: note: in expansion of macro 'SHEET_FROM_OBJECT' | |
SHEET_FROM_OBJECT(sheet, object); \ | |
^ | |
/tmp/php_excel-master/excel.c:3184:2: note: in expansion of macro 'PHP_EXCEL_INFO' | |
PHP_EXCEL_INFO(PrintGridlines, IS_BOOL) | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelSheet_setDisplayGridlines': | |
[0m[91m/tmp/php_excel-master/excel.c:130:29: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_sheet_object *obj = (excel_sheet_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:3112:3: note: in expansion of macro 'SHEET_FROM_OBJECT' | |
SHEET_FROM_OBJECT(sheet, object); \ | |
^ | |
/tmp/php_excel-master/excel.c:3192:2: note: in expansion of macro 'PHP_EXCEL_SET_BOOL_VAL' | |
PHP_EXCEL_SET_BOOL_VAL(SetDisplayGridlines) | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelSheet_setHidden': | |
[0m[91m/tmp/php_excel-master/excel.c:130:29: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_sheet_object *obj = (excel_sheet_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:3209:2: note: in expansion of macro 'SHEET_FROM_OBJECT' | |
SHEET_FROM_OBJECT(sheet, object); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelSheet_isHidden': | |
[0m[91m/tmp/php_excel-master/excel.c:130:29: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_sheet_object *obj = (excel_sheet_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:3226:2: note: in expansion of macro 'SHEET_FROM_OBJECT' | |
SHEET_FROM_OBJECT(sheet, object); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelSheet_getTopLeftView': | |
[0m[91m/tmp/php_excel-master/excel.c:130:29: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_sheet_object *obj = (excel_sheet_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:3246:2: note: in expansion of macro 'SHEET_FROM_OBJECT' | |
SHEET_FROM_OBJECT(sheet, object); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelSheet_setTopLeftView': | |
[0m[91m/tmp/php_excel-master/excel.c:130:29: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_sheet_object *obj = (excel_sheet_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:3268:2: note: in expansion of macro 'SHEET_FROM_OBJECT' | |
SHEET_FROM_OBJECT(sheet, object); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelSheet_rowColToAddr': | |
[0m[91m/tmp/php_excel-master/excel.c:130:29: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_sheet_object *obj = (excel_sheet_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:3289:2: note: in expansion of macro 'SHEET_FROM_OBJECT' | |
SHEET_FROM_OBJECT(sheet, object); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c:3295:26: error: macro "RETURN_STRING" passed 2 arguments, but takes just 1 | |
RETURN_STRING(cel_ref, 1); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c:3295:2: error: 'RETURN_STRING' undeclared (first use in this function) | |
RETURN_STRING(cel_ref, 1); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelSheet_addrToRowCol': | |
[0m[91m/tmp/php_excel-master/excel.c:130:29: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_sheet_object *obj = (excel_sheet_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:3318:2: note: in expansion of macro 'SHEET_FROM_OBJECT' | |
SHEET_FROM_OBJECT(sheet, object); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelSheet_setPrintGridlines': | |
[0m[91m/tmp/php_excel-master/excel.c:130:29: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_sheet_object *obj = (excel_sheet_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:3112:3: note: in expansion of macro 'SHEET_FROM_OBJECT' | |
SHEET_FROM_OBJECT(sheet, object); \ | |
^ | |
/tmp/php_excel-master/excel.c:3334:2: note: in expansion of macro 'PHP_EXCEL_SET_BOOL_VAL' | |
PHP_EXCEL_SET_BOOL_VAL(SetPrintGridlines) | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelSheet_zoom': | |
[0m[91m/tmp/php_excel-master/excel.c:130:29: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_sheet_object *obj = (excel_sheet_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:3100:2: note: in expansion of macro 'SHEET_FROM_OBJECT' | |
SHEET_FROM_OBJECT(sheet, object); \ | |
^ | |
/tmp/php_excel-master/excel.c:3342:2: note: in expansion of macro 'PHP_EXCEL_INFO' | |
PHP_EXCEL_INFO(Zoom, IS_LONG) | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelSheet_zoomPrint': | |
[0m[91m/tmp/php_excel-master/excel.c:130:29: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_sheet_object *obj = (excel_sheet_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:3100:2: note: in expansion of macro 'SHEET_FROM_OBJECT' | |
SHEET_FROM_OBJECT(sheet, object); \ | |
^ | |
/tmp/php_excel-master/excel.c:3350:2: note: in expansion of macro 'PHP_EXCEL_INFO' | |
PHP_EXCEL_INFO(PrintZoom, IS_LONG) | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelSheet_setZoom': | |
[0m[91m/tmp/php_excel-master/excel.c:130:29: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_sheet_object *obj = (excel_sheet_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:3124:3: note: in expansion of macro 'SHEET_FROM_OBJECT' | |
SHEET_FROM_OBJECT(sheet, object); \ | |
^ | |
/tmp/php_excel-master/excel.c:3358:2: note: in expansion of macro 'PHP_EXCEL_SET_LONG_VAL' | |
PHP_EXCEL_SET_LONG_VAL(SetZoom) | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelSheet_setZoomPrint': | |
[0m[91m/tmp/php_excel-master/excel.c:130:29: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_sheet_object *obj = (excel_sheet_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:3124:3: note: in expansion of macro 'SHEET_FROM_OBJECT' | |
SHEET_FROM_OBJECT(sheet, object); \ | |
^ | |
/tmp/php_excel-master/excel.c:3366:2: note: in expansion of macro 'PHP_EXCEL_SET_LONG_VAL' | |
PHP_EXCEL_SET_LONG_VAL(SetPrintZoom) | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelSheet_setLandscape': | |
[0m[91m/tmp/php_excel-master/excel.c:130:29: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_sheet_object *obj = (excel_sheet_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:3112:3: note: in expansion of macro 'SHEET_FROM_OBJECT' | |
SHEET_FROM_OBJECT(sheet, object); \ | |
^ | |
/tmp/php_excel-master/excel.c:3374:2: note: in expansion of macro 'PHP_EXCEL_SET_BOOL_VAL' | |
PHP_EXCEL_SET_BOOL_VAL(SetLandscape) | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelSheet_landscape': | |
[0m[91m/tmp/php_excel-master/excel.c:130:29: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_sheet_object *obj = (excel_sheet_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:3100:2: note: in expansion of macro 'SHEET_FROM_OBJECT' | |
SHEET_FROM_OBJECT(sheet, object); \ | |
^ | |
/tmp/php_excel-master/excel.c:3382:2: note: in expansion of macro 'PHP_EXCEL_INFO' | |
PHP_EXCEL_INFO(Landscape, IS_BOOL) | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelSheet_paper': | |
[0m[91m/tmp/php_excel-master/excel.c:130:29: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_sheet_object *obj = (excel_sheet_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:3100:2: note: in expansion of macro 'SHEET_FROM_OBJECT' | |
SHEET_FROM_OBJECT(sheet, object); \ | |
^ | |
/tmp/php_excel-master/excel.c:3390:2: note: in expansion of macro 'PHP_EXCEL_INFO' | |
PHP_EXCEL_INFO(Paper, IS_LONG) | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelSheet_setPaper': | |
[0m[91m/tmp/php_excel-master/excel.c:130:29: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_sheet_object *obj = (excel_sheet_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:3124:3: note: in expansion of macro 'SHEET_FROM_OBJECT' | |
SHEET_FROM_OBJECT(sheet, object); \ | |
^ | |
/tmp/php_excel-master/excel.c:3398:2: note: in expansion of macro 'PHP_EXCEL_SET_LONG_VAL' | |
PHP_EXCEL_SET_LONG_VAL(SetPaper) | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelSheet_header': | |
[0m[91m/tmp/php_excel-master/excel.c:130:29: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_sheet_object *obj = (excel_sheet_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:3100:2: note: in expansion of macro 'SHEET_FROM_OBJECT' | |
SHEET_FROM_OBJECT(sheet, object); \ | |
^ | |
/tmp/php_excel-master/excel.c:3406:2: note: in expansion of macro 'PHP_EXCEL_INFO' | |
PHP_EXCEL_INFO(Header, IS_STRING) | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c:3406:1: error: macro "RETURN_STRING" passed 2 arguments, but takes just 1 | |
PHP_EXCEL_INFO(Header, IS_STRING) | |
^ | |
/tmp/php_excel-master/excel.c:3091:47: error: 'RETURN_STRING' undeclared (first use in this function) | |
#define PE_RETURN_IS_STRING(data) if (data) { RETURN_STRING((char *)data, 1) } else { RETURN_NULL(); } | |
^ | |
/tmp/php_excel-master/excel.c:3101:2: note: in expansion of macro 'PE_RETURN_IS_STRING' | |
PE_RETURN_ ## type (xlSheet ## func_name (sheet)); \ | |
^ | |
/tmp/php_excel-master/excel.c:3406:2: note: in expansion of macro 'PHP_EXCEL_INFO' | |
PHP_EXCEL_INFO(Header, IS_STRING) | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c:3091:78: error: expected ';' before '}' token | |
#define PE_RETURN_IS_STRING(data) if (data) { RETURN_STRING((char *)data, 1) } else { RETURN_NULL(); } | |
^ | |
/tmp/php_excel-master/excel.c:3101:2: note: in expansion of macro 'PE_RETURN_IS_STRING' | |
PE_RETURN_ ## type (xlSheet ## func_name (sheet)); \ | |
^ | |
/tmp/php_excel-master/excel.c:3406:2: note: in expansion of macro 'PHP_EXCEL_INFO' | |
PHP_EXCEL_INFO(Header, IS_STRING) | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelSheet_footer': | |
[0m[91m/tmp/php_excel-master/excel.c:130:29: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_sheet_object *obj = (excel_sheet_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:3100:2: note: in expansion of macro 'SHEET_FROM_OBJECT' | |
SHEET_FROM_OBJECT(sheet, object); \ | |
^ | |
/tmp/php_excel-master/excel.c:3414:2: note: in expansion of macro 'PHP_EXCEL_INFO' | |
PHP_EXCEL_INFO(Footer, IS_STRING) | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c:3414:1: error: macro "RETURN_STRING" passed 2 arguments, but takes just 1 | |
PHP_EXCEL_INFO(Footer, IS_STRING) | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c:3091:47: error: 'RETURN_STRING' undeclared (first use in this function) | |
#define PE_RETURN_IS_STRING(data) if (data) { RETURN_STRING((char *)data, 1) } else { RETURN_NULL(); } | |
^ | |
/tmp/php_excel-master/excel.c:3101:2: note: in expansion of macro 'PE_RETURN_IS_STRING' | |
PE_RETURN_ ## type (xlSheet ## func_name (sheet)); \ | |
^ | |
/tmp/php_excel-master/excel.c:3414:2: note: in expansion of macro 'PHP_EXCEL_INFO' | |
PHP_EXCEL_INFO(Footer, IS_STRING) | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c:3091:78: error: expected ';' before '}' token | |
#define PE_RETURN_IS_STRING(data) if (data) { RETURN_STRING((char *)data, 1) } else { RETURN_NULL(); } | |
^ | |
/tmp/php_excel-master/excel.c:3101:2: note: in expansion of macro 'PE_RETURN_IS_STRING' | |
PE_RETURN_ ## type (xlSheet ## func_name (sheet)); \ | |
^ | |
/tmp/php_excel-master/excel.c:3414:2: note: in expansion of macro 'PHP_EXCEL_INFO' | |
PHP_EXCEL_INFO(Footer, IS_STRING) | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelSheet_setHeader': | |
[0m[91m/tmp/php_excel-master/excel.c:130:29: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_sheet_object *obj = (excel_sheet_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:3428:3: note: in expansion of macro 'SHEET_FROM_OBJECT' | |
SHEET_FROM_OBJECT(sheet, object); \ | |
^ | |
/tmp/php_excel-master/excel.c:3436:2: note: in expansion of macro 'PHP_EXCEL_SET_HF' | |
PHP_EXCEL_SET_HF(SetHeader) | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelSheet_setFooter': | |
[0m[91m/tmp/php_excel-master/excel.c:130:29: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_sheet_object *obj = (excel_sheet_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:3428:3: note: in expansion of macro 'SHEET_FROM_OBJECT' | |
SHEET_FROM_OBJECT(sheet, object); \ | |
^ | |
/tmp/php_excel-master/excel.c:3444:2: note: in expansion of macro 'PHP_EXCEL_SET_HF' | |
PHP_EXCEL_SET_HF(SetFooter) | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelSheet_headerMargin': | |
[0m[91m/tmp/php_excel-master/excel.c:130:29: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_sheet_object *obj = (excel_sheet_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:3100:2: note: in expansion of macro 'SHEET_FROM_OBJECT' | |
SHEET_FROM_OBJECT(sheet, object); \ | |
^ | |
/tmp/php_excel-master/excel.c:3452:2: note: in expansion of macro 'PHP_EXCEL_INFO' | |
PHP_EXCEL_INFO(HeaderMargin, IS_DOUBLE) | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelSheet_footerMargin': | |
[0m[91m/tmp/php_excel-master/excel.c:130:29: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_sheet_object *obj = (excel_sheet_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:3100:2: note: in expansion of macro 'SHEET_FROM_OBJECT' | |
SHEET_FROM_OBJECT(sheet, object); \ | |
^ | |
/tmp/php_excel-master/excel.c:3460:2: note: in expansion of macro 'PHP_EXCEL_INFO' | |
PHP_EXCEL_INFO(FooterMargin, IS_DOUBLE) | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelSheet_hcenter': | |
[0m[91m/tmp/php_excel-master/excel.c:130:29: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_sheet_object *obj = (excel_sheet_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:3100:2: note: in expansion of macro 'SHEET_FROM_OBJECT' | |
SHEET_FROM_OBJECT(sheet, object); \ | |
^ | |
/tmp/php_excel-master/excel.c:3468:2: note: in expansion of macro 'PHP_EXCEL_INFO' | |
PHP_EXCEL_INFO(HCenter, IS_BOOL) | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelSheet_vcenter': | |
[0m[91m/tmp/php_excel-master/excel.c:130:29: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_sheet_object *obj = (excel_sheet_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:3100:2: note: in expansion of macro 'SHEET_FROM_OBJECT' | |
SHEET_FROM_OBJECT(sheet, object); \ | |
^ | |
/tmp/php_excel-master/excel.c:3476:2: note: in expansion of macro 'PHP_EXCEL_INFO' | |
PHP_EXCEL_INFO(VCenter, IS_BOOL) | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelSheet_setHCenter': | |
[0m[91m/tmp/php_excel-master/excel.c:130:29: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_sheet_object *obj = (excel_sheet_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:3112:3: note: in expansion of macro 'SHEET_FROM_OBJECT' | |
SHEET_FROM_OBJECT(sheet, object); \ | |
^ | |
/tmp/php_excel-master/excel.c:3484:2: note: in expansion of macro 'PHP_EXCEL_SET_BOOL_VAL' | |
PHP_EXCEL_SET_BOOL_VAL(SetHCenter) | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelSheet_setVCenter': | |
[0m[91m/tmp/php_excel-master/excel.c:130:29: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_sheet_object *obj = (excel_sheet_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:3112:3: note: in expansion of macro 'SHEET_FROM_OBJECT' | |
SHEET_FROM_OBJECT(sheet, object); \ | |
^ | |
/tmp/php_excel-master/excel.c:3492:2: note: in expansion of macro 'PHP_EXCEL_SET_BOOL_VAL' | |
PHP_EXCEL_SET_BOOL_VAL(SetVCenter) | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelSheet_marginLeft': | |
[0m[91m/tmp/php_excel-master/excel.c:130:29: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_sheet_object *obj = (excel_sheet_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:3100:2: note: in expansion of macro 'SHEET_FROM_OBJECT' | |
SHEET_FROM_OBJECT(sheet, object); \ | |
^ | |
/tmp/php_excel-master/excel.c:3500:2: note: in expansion of macro 'PHP_EXCEL_INFO' | |
PHP_EXCEL_INFO(MarginLeft, IS_DOUBLE) | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelSheet_marginRight': | |
[0m[91m/tmp/php_excel-master/excel.c:130:29: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_sheet_object *obj = (excel_sheet_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:3100:2: note: in expansion of macro 'SHEET_FROM_OBJECT' | |
SHEET_FROM_OBJECT(sheet, object); \ | |
^ | |
/tmp/php_excel-master/excel.c:3508:2: note: in expansion of macro 'PHP_EXCEL_INFO' | |
PHP_EXCEL_INFO(MarginRight, IS_DOUBLE) | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelSheet_marginTop': | |
[0m[91m/tmp/php_excel-master/excel.c:130:29: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_sheet_object *obj = (excel_sheet_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:3100:2: note: in expansion of macro 'SHEET_FROM_OBJECT' | |
SHEET_FROM_OBJECT(sheet, object); \ | |
^ | |
/tmp/php_excel-master/excel.c:3516:2: note: in expansion of macro 'PHP_EXCEL_INFO' | |
PHP_EXCEL_INFO(MarginTop, IS_DOUBLE) | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelSheet_marginBottom': | |
[0m[91m/tmp/php_excel-master/excel.c:130:29: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_sheet_object *obj = (excel_sheet_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:3100:2: note: in expansion of macro 'SHEET_FROM_OBJECT' | |
SHEET_FROM_OBJECT(sheet, object); \ | |
^ | |
/tmp/php_excel-master/excel.c:3524:2: note: in expansion of macro 'PHP_EXCEL_INFO' | |
PHP_EXCEL_INFO(MarginBottom, IS_DOUBLE) | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelSheet_setMarginLeft': | |
[0m[91m/tmp/php_excel-master/excel.c:130:29: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_sheet_object *obj = (excel_sheet_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:3136:3: note: in expansion of macro 'SHEET_FROM_OBJECT' | |
SHEET_FROM_OBJECT(sheet, object); \ | |
^ | |
/tmp/php_excel-master/excel.c:3532:2: note: in expansion of macro 'PHP_EXCEL_SET_DOUBLE_VAL' | |
PHP_EXCEL_SET_DOUBLE_VAL(SetMarginLeft) | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelSheet_setMarginRight': | |
[0m[91m/tmp/php_excel-master/excel.c:130:29: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_sheet_object *obj = (excel_sheet_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:3136:3: note: in expansion of macro 'SHEET_FROM_OBJECT' | |
SHEET_FROM_OBJECT(sheet, object); \ | |
^ | |
/tmp/php_excel-master/excel.c:3540:2: note: in expansion of macro 'PHP_EXCEL_SET_DOUBLE_VAL' | |
PHP_EXCEL_SET_DOUBLE_VAL(SetMarginRight) | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelSheet_setMarginTop': | |
[0m[91m/tmp/php_excel-master/excel.c:130:29: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_sheet_object *obj = (excel_sheet_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:3136:3: note: in expansion of macro 'SHEET_FROM_OBJECT' | |
SHEET_FROM_OBJECT(sheet, object); \ | |
^ | |
/tmp/php_excel-master/excel.c:3548:2: note: in expansion of macro 'PHP_EXCEL_SET_DOUBLE_VAL' | |
PHP_EXCEL_SET_DOUBLE_VAL(SetMarginTop) | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelSheet_setMarginBottom': | |
[0m[91m/tmp/php_excel-master/excel.c:130:29: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_sheet_object *obj = (excel_sheet_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:3136:3: note: in expansion of macro 'SHEET_FROM_OBJECT' | |
SHEET_FROM_OBJECT(sheet, object); \ | |
^ | |
/tmp/php_excel-master/excel.c:3556:2: note: in expansion of macro 'PHP_EXCEL_SET_DOUBLE_VAL' | |
PHP_EXCEL_SET_DOUBLE_VAL(SetMarginBottom) | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelSheet_printHeaders': | |
[0m[91m/tmp/php_excel-master/excel.c:130:29: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_sheet_object *obj = (excel_sheet_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:3100:2: note: in expansion of macro 'SHEET_FROM_OBJECT' | |
SHEET_FROM_OBJECT(sheet, object); \ | |
^ | |
/tmp/php_excel-master/excel.c:3564:2: note: in expansion of macro 'PHP_EXCEL_INFO' | |
PHP_EXCEL_INFO(PrintRowCol, IS_BOOL) | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelSheet_setPrintHeaders': | |
[0m[91m/tmp/php_excel-master/excel.c:130:29: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_sheet_object *obj = (excel_sheet_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:3112:3: note: in expansion of macro 'SHEET_FROM_OBJECT' | |
SHEET_FROM_OBJECT(sheet, object); \ | |
^ | |
/tmp/php_excel-master/excel.c:3572:2: note: in expansion of macro 'PHP_EXCEL_SET_BOOL_VAL' | |
PHP_EXCEL_SET_BOOL_VAL(SetPrintRowCol) | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelSheet_name': | |
[0m[91m/tmp/php_excel-master/excel.c:130:29: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_sheet_object *obj = (excel_sheet_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:3100:2: note: in expansion of macro 'SHEET_FROM_OBJECT' | |
SHEET_FROM_OBJECT(sheet, object); \ | |
^ | |
/tmp/php_excel-master/excel.c:3580:2: note: in expansion of macro 'PHP_EXCEL_INFO' | |
PHP_EXCEL_INFO(Name, IS_STRING) | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c:3580:1: error: macro "RETURN_STRING" passed 2 arguments, but takes just 1 | |
PHP_EXCEL_INFO(Name, IS_STRING) | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c:3091:47: error: 'RETURN_STRING' undeclared (first use in this function) | |
#define PE_RETURN_IS_STRING(data) if (data) { RETURN_STRING((char *)data, 1) } else { RETURN_NULL(); } | |
^ | |
/tmp/php_excel-master/excel.c:3101:2: note: in expansion of macro 'PE_RETURN_IS_STRING' | |
PE_RETURN_ ## type (xlSheet ## func_name (sheet)); \ | |
^ | |
/tmp/php_excel-master/excel.c:3580:2: note: in expansion of macro 'PHP_EXCEL_INFO' | |
PHP_EXCEL_INFO(Name, IS_STRING) | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c:3091:78: error: expected ';' before '}' token | |
#define PE_RETURN_IS_STRING(data) if (data) { RETURN_STRING((char *)data, 1) } else { RETURN_NULL(); } | |
^ | |
/tmp/php_excel-master/excel.c:3101:2: note: in expansion of macro 'PE_RETURN_IS_STRING' | |
PE_RETURN_ ## type (xlSheet ## func_name (sheet)); \ | |
^ | |
/tmp/php_excel-master/excel.c:3580:2: note: in expansion of macro 'PHP_EXCEL_INFO' | |
PHP_EXCEL_INFO(Name, IS_STRING) | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelSheet_setName': | |
[0m[91m/tmp/php_excel-master/excel.c:130:29: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_sheet_object *obj = (excel_sheet_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:3597:2: note: in expansion of macro 'SHEET_FROM_OBJECT' | |
SHEET_FROM_OBJECT(sheet, object); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelSheet_setNamedRange': | |
[0m[91m/tmp/php_excel-master/excel.c:130:29: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_sheet_object *obj = (excel_sheet_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:3635:2: note: in expansion of macro 'SHEET_FROM_OBJECT' | |
SHEET_FROM_OBJECT(sheet, object); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelSheet_delNamedRange': | |
[0m[91m/tmp/php_excel-master/excel.c:130:29: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_sheet_object *obj = (excel_sheet_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:3668:2: note: in expansion of macro 'SHEET_FROM_OBJECT' | |
SHEET_FROM_OBJECT(sheet, object); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelSheet_setPrintRepeatRows': | |
[0m[91m/tmp/php_excel-master/excel.c:130:29: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_sheet_object *obj = (excel_sheet_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:3690:3: note: in expansion of macro 'SHEET_FROM_OBJECT' | |
SHEET_FROM_OBJECT(sheet, object); \ | |
^ | |
/tmp/php_excel-master/excel.c:3699:2: note: in expansion of macro 'PHP_EXCEL_SHEET_PRINT_AREA' | |
PHP_EXCEL_SHEET_PRINT_AREA(SetPrintRepeatRows) | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelSheet_setPrintRepeatCols': | |
[0m[91m/tmp/php_excel-master/excel.c:130:29: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_sheet_object *obj = (excel_sheet_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:3690:3: note: in expansion of macro 'SHEET_FROM_OBJECT' | |
SHEET_FROM_OBJECT(sheet, object); \ | |
^ | |
/tmp/php_excel-master/excel.c:3707:2: note: in expansion of macro 'PHP_EXCEL_SHEET_PRINT_AREA' | |
PHP_EXCEL_SHEET_PRINT_AREA(SetPrintRepeatCols) | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelSheet_getGroupSummaryBelow': | |
[0m[91m/tmp/php_excel-master/excel.c:130:29: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_sheet_object *obj = (excel_sheet_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:3722:2: note: in expansion of macro 'SHEET_FROM_OBJECT' | |
SHEET_FROM_OBJECT(sheet, object); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelSheet_setGroupSummaryBelow': | |
[0m[91m/tmp/php_excel-master/excel.c:130:29: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_sheet_object *obj = (excel_sheet_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:3739:2: note: in expansion of macro 'SHEET_FROM_OBJECT' | |
SHEET_FROM_OBJECT(sheet, object); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelSheet_getGroupSummaryRight': | |
[0m[91m/tmp/php_excel-master/excel.c:130:29: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_sheet_object *obj = (excel_sheet_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:3757:2: note: in expansion of macro 'SHEET_FROM_OBJECT' | |
SHEET_FROM_OBJECT(sheet, object); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelSheet_setGroupSummaryRight': | |
[0m[91m/tmp/php_excel-master/excel.c:130:29: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_sheet_object *obj = (excel_sheet_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:3774:2: note: in expansion of macro 'SHEET_FROM_OBJECT' | |
SHEET_FROM_OBJECT(sheet, object); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelSheet_setPrintFit': | |
[0m[91m/tmp/php_excel-master/excel.c:130:29: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_sheet_object *obj = (excel_sheet_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:3794:2: note: in expansion of macro 'SHEET_FROM_OBJECT' | |
SHEET_FROM_OBJECT(sheet, object); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelSheet_getPrintFit': | |
[0m[91m/tmp/php_excel-master/excel.c:130:29: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_sheet_object *obj = (excel_sheet_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:3813:2: note: in expansion of macro 'SHEET_FROM_OBJECT' | |
SHEET_FROM_OBJECT(sheet, object); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelSheet_getNamedRange': | |
[0m[91m/tmp/php_excel-master/excel.c:130:29: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_sheet_object *obj = (excel_sheet_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:3844:2: note: in expansion of macro 'SHEET_FROM_OBJECT' | |
SHEET_FROM_OBJECT(sheet, object); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelSheet_getIndexRange': | |
[0m[91m/tmp/php_excel-master/excel.c:130:29: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_sheet_object *obj = (excel_sheet_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:3884:2: note: in expansion of macro 'SHEET_FROM_OBJECT' | |
SHEET_FROM_OBJECT(sheet, object); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelSheet_namedRangeSize': | |
[0m[91m/tmp/php_excel-master/excel.c:130:29: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_sheet_object *obj = (excel_sheet_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:3916:2: note: in expansion of macro 'SHEET_FROM_OBJECT' | |
SHEET_FROM_OBJECT(sheet, object); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelSheet_getVerPageBreak': | |
[0m[91m/tmp/php_excel-master/excel.c:130:29: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_sheet_object *obj = (excel_sheet_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:3933:2: note: in expansion of macro 'SHEET_FROM_OBJECT' | |
SHEET_FROM_OBJECT(sheet, object); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelSheet_getVerPageBreakSize': | |
[0m[91m/tmp/php_excel-master/excel.c:130:29: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_sheet_object *obj = (excel_sheet_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:3949:2: note: in expansion of macro 'SHEET_FROM_OBJECT' | |
SHEET_FROM_OBJECT(sheet, object); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelSheet_getHorPageBreak': | |
[0m[91m/tmp/php_excel-master/excel.c:130:29: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_sheet_object *obj = (excel_sheet_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:3966:2: note: in expansion of macro 'SHEET_FROM_OBJECT' | |
SHEET_FROM_OBJECT(sheet, object); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelSheet_getHorPageBreakSize': | |
[0m[91m/tmp/php_excel-master/excel.c:130:29: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_sheet_object *obj = (excel_sheet_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:3982:2: note: in expansion of macro 'SHEET_FROM_OBJECT' | |
SHEET_FROM_OBJECT(sheet, object); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelSheet_getPictureInfo': | |
[0m[91m/tmp/php_excel-master/excel.c:130:29: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_sheet_object *obj = (excel_sheet_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:4001:2: note: in expansion of macro 'SHEET_FROM_OBJECT' | |
SHEET_FROM_OBJECT(sheet, object); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelSheet_getNumPictures': | |
[0m[91m/tmp/php_excel-master/excel.c:130:29: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_sheet_object *obj = (excel_sheet_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:4031:2: note: in expansion of macro 'SHEET_FROM_OBJECT' | |
SHEET_FROM_OBJECT(sheet, object); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelBook_biffVersion': | |
/tmp/php_excel-master/excel.c:114:28: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_book_object *obj = (excel_book_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:4048:2: note: in expansion of macro 'BOOK_FROM_OBJECT' | |
BOOK_FROM_OBJECT(book, object); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelBook_getRefR1C1': | |
/tmp/php_excel-master/excel.c:114:28: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_book_object *obj = (excel_book_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:4068:2: note: in expansion of macro 'BOOK_FROM_OBJECT' | |
BOOK_FROM_OBJECT(book, object); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelBook_setRefR1C1': | |
/tmp/php_excel-master/excel.c:114:28: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_book_object *obj = (excel_book_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:4085:2: note: in expansion of macro 'BOOK_FROM_OBJECT' | |
BOOK_FROM_OBJECT(book, object); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelBook_getPicture': | |
/tmp/php_excel-master/excel.c:114:28: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_book_object *obj = (excel_book_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:4106:2: note: in expansion of macro 'BOOK_FROM_OBJECT' | |
BOOK_FROM_OBJECT(book, object); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c:4113:65: error: macro "add_assoc_stringl" passed 5 arguments, but takes just 4 | |
add_assoc_stringl(return_value, "data", (char *)buf, buf_len, 1); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c:4113:2: error: 'add_assoc_stringl' undeclared (first use in this function) | |
add_assoc_stringl(return_value, "data", (char *)buf, buf_len, 1); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelBook_getNumPictures': | |
/tmp/php_excel-master/excel.c:114:28: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_book_object *obj = (excel_book_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:4129:2: note: in expansion of macro 'BOOK_FROM_OBJECT' | |
BOOK_FROM_OBJECT(book, object); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelBook_insertSheet': | |
/tmp/php_excel-master/excel.c:114:28: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_book_object *obj = (excel_book_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:4151:2: note: in expansion of macro 'BOOK_FROM_OBJECT' | |
BOOK_FROM_OBJECT(book, object); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c:130:29: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_sheet_object *obj = (excel_sheet_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:4153:3: note: in expansion of macro 'SHEET_FROM_OBJECT' | |
SHEET_FROM_OBJECT(sheet, shz); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c:4163:25: error: lvalue required as left operand of assignment | |
Z_TYPE_P(return_value) = IS_OBJECT; | |
^ | |
[0m[91mIn file included from /tmp/php_excel-master/excel.c:35:0: | |
/tmp/php_excel-master/php_excel.h:59:35: error: 'zval' has no member named 'is_ref' | |
# define Z_SET_ISREF_P(pz) (pz)->is_ref = 1 | |
^ | |
/tmp/php_excel-master/excel.c:4166:2: note: in expansion of macro 'Z_SET_ISREF_P' | |
Z_SET_ISREF_P(return_value); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c:4167:7: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
fo = (excel_sheet_object *) zend_object_store_get_object(return_value TSRMLS_CC); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelBook_isTemplate': | |
/tmp/php_excel-master/excel.c:114:28: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_book_object *obj = (excel_book_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:4187:2: note: in expansion of macro 'BOOK_FROM_OBJECT' | |
BOOK_FROM_OBJECT(book, object); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelBook_setTemplate': | |
/tmp/php_excel-master/excel.c:114:28: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_book_object *obj = (excel_book_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:4204:2: note: in expansion of macro 'BOOK_FROM_OBJECT' | |
BOOK_FROM_OBJECT(book, object); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelSheet_getRightToLeft': | |
[0m[91m/tmp/php_excel-master/excel.c:130:29: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_sheet_object *obj = (excel_sheet_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:4220:2: note: in expansion of macro 'SHEET_FROM_OBJECT' | |
SHEET_FROM_OBJECT(sheet, object); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelSheet_setRightToLeft': | |
[0m[91m/tmp/php_excel-master/excel.c:130:29: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_sheet_object *obj = (excel_sheet_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:4237:2: note: in expansion of macro 'SHEET_FROM_OBJECT' | |
SHEET_FROM_OBJECT(sheet, object); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelSheet_setPrintArea': | |
[0m[91m/tmp/php_excel-master/excel.c:130:29: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_sheet_object *obj = (excel_sheet_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:4263:2: note: in expansion of macro 'SHEET_FROM_OBJECT' | |
SHEET_FROM_OBJECT(sheet, object); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelSheet_clearPrintRepeats': | |
[0m[91m/tmp/php_excel-master/excel.c:130:29: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_sheet_object *obj = (excel_sheet_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:4280:2: note: in expansion of macro 'SHEET_FROM_OBJECT' | |
SHEET_FROM_OBJECT(sheet, object); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelSheet_clearPrintArea': | |
[0m[91m/tmp/php_excel-master/excel.c:130:29: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_sheet_object *obj = (excel_sheet_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:4298:2: note: in expansion of macro 'SHEET_FROM_OBJECT' | |
SHEET_FROM_OBJECT(sheet, object); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelSheet_protect': | |
[0m[91m/tmp/php_excel-master/excel.c:130:29: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_sheet_object *obj = (excel_sheet_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:3100:2: note: in expansion of macro 'SHEET_FROM_OBJECT' | |
SHEET_FROM_OBJECT(sheet, object); \ | |
^ | |
/tmp/php_excel-master/excel.c:4310:2: note: in expansion of macro 'PHP_EXCEL_INFO' | |
PHP_EXCEL_INFO(Protect, IS_BOOL) | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelSheet_setProtect': | |
[0m[91m/tmp/php_excel-master/excel.c:130:29: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_sheet_object *obj = (excel_sheet_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:3112:3: note: in expansion of macro 'SHEET_FROM_OBJECT' | |
SHEET_FROM_OBJECT(sheet, object); \ | |
^ | |
/tmp/php_excel-master/excel.c:4318:2: note: in expansion of macro 'PHP_EXCEL_SET_BOOL_VAL' | |
PHP_EXCEL_SET_BOOL_VAL(SetProtect) | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelSheet_hyperlinkSize': | |
[0m[91m/tmp/php_excel-master/excel.c:130:29: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_sheet_object *obj = (excel_sheet_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:4334:2: note: in expansion of macro 'SHEET_FROM_OBJECT' | |
SHEET_FROM_OBJECT(sheet, object); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelSheet_hyperlink': | |
[0m[91m/tmp/php_excel-master/excel.c:130:29: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_sheet_object *obj = (excel_sheet_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:4353:2: note: in expansion of macro 'SHEET_FROM_OBJECT' | |
SHEET_FROM_OBJECT(sheet, object); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c:4362:58: error: macro "add_assoc_string" passed 4 arguments, but takes just 3 | |
add_assoc_string(return_value, "hyperlink", (char *)s, 1); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c:4362:2: error: 'add_assoc_string' undeclared (first use in this function) | |
add_assoc_string(return_value, "hyperlink", (char *)s, 1); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelSheet_delHyperlink': | |
[0m[91m/tmp/php_excel-master/excel.c:130:29: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_sheet_object *obj = (excel_sheet_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:4386:2: note: in expansion of macro 'SHEET_FROM_OBJECT' | |
SHEET_FROM_OBJECT(sheet, object); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelSheet_addHyperlink': | |
[0m[91m/tmp/php_excel-master/excel.c:130:29: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_sheet_object *obj = (excel_sheet_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:4405:2: note: in expansion of macro 'SHEET_FROM_OBJECT' | |
SHEET_FROM_OBJECT(sheet, object); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelSheet_mergeSize': | |
[0m[91m/tmp/php_excel-master/excel.c:130:29: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_sheet_object *obj = (excel_sheet_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:4423:2: note: in expansion of macro 'SHEET_FROM_OBJECT' | |
SHEET_FROM_OBJECT(sheet, object); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelSheet_merge': | |
[0m[91m/tmp/php_excel-master/excel.c:130:29: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_sheet_object *obj = (excel_sheet_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:4445:2: note: in expansion of macro 'SHEET_FROM_OBJECT' | |
SHEET_FROM_OBJECT(sheet, object); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelSheet_delMergeByIndex': | |
[0m[91m/tmp/php_excel-master/excel.c:130:29: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_sheet_object *obj = (excel_sheet_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:4475:2: note: in expansion of macro 'SHEET_FROM_OBJECT' | |
SHEET_FROM_OBJECT(sheet, object); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelSheet_splitInfo': | |
[0m[91m/tmp/php_excel-master/excel.c:130:29: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_sheet_object *obj = (excel_sheet_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:4488:2: note: in expansion of macro 'SHEET_FROM_OBJECT' | |
SHEET_FROM_OBJECT(sheet, object); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelSheet_rowHidden': | |
[0m[91m/tmp/php_excel-master/excel.c:130:29: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_sheet_object *obj = (excel_sheet_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:4516:2: note: in expansion of macro 'SHEET_FROM_OBJECT' | |
SHEET_FROM_OBJECT(sheet, object); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelSheet_setRowHidden': | |
[0m[91m/tmp/php_excel-master/excel.c:130:29: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_sheet_object *obj = (excel_sheet_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:4538:2: note: in expansion of macro 'SHEET_FROM_OBJECT' | |
SHEET_FROM_OBJECT(sheet, object); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelSheet_colHidden': | |
[0m[91m/tmp/php_excel-master/excel.c:130:29: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_sheet_object *obj = (excel_sheet_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:4559:2: note: in expansion of macro 'SHEET_FROM_OBJECT' | |
SHEET_FROM_OBJECT(sheet, object); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelSheet_setColHidden': | |
[0m[91m/tmp/php_excel-master/excel.c:130:29: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_sheet_object *obj = (excel_sheet_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:4581:2: note: in expansion of macro 'SHEET_FROM_OBJECT' | |
SHEET_FROM_OBJECT(sheet, object); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelBook_sheetType': | |
/tmp/php_excel-master/excel.c:114:28: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_book_object *obj = (excel_book_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:4602:2: note: in expansion of macro 'BOOK_FROM_OBJECT' | |
BOOK_FROM_OBJECT(book, object); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelSheet_isLicensed': | |
[0m[91m/tmp/php_excel-master/excel.c:140:29: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_sheet_object *obj = (excel_sheet_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:4617:2: note: in expansion of macro 'SHEET_AND_BOOK_FROM_OBJECT' | |
SHEET_AND_BOOK_FROM_OBJECT(sheet, book, object); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelSheet_setAutoFitArea': | |
[0m[91m/tmp/php_excel-master/excel.c:130:29: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_sheet_object *obj = (excel_sheet_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:4667:2: note: in expansion of macro 'SHEET_FROM_OBJECT' | |
SHEET_FROM_OBJECT(sheet, object); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelSheet_printRepeatRows': | |
[0m[91m/tmp/php_excel-master/excel.c:130:29: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_sheet_object *obj = (excel_sheet_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:4687:2: note: in expansion of macro 'SHEET_FROM_OBJECT' | |
SHEET_FROM_OBJECT(sheet, object); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelSheet_printRepeatCols': | |
[0m[91m/tmp/php_excel-master/excel.c:130:29: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_sheet_object *obj = (excel_sheet_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:4712:2: note: in expansion of macro 'SHEET_FROM_OBJECT' | |
SHEET_FROM_OBJECT(sheet, object); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zim_ExcelSheet_printArea': | |
[0m[91m/tmp/php_excel-master/excel.c:130:29: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] | |
excel_sheet_object *obj = (excel_sheet_object*) zend_object_store_get_object(object TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:4732:2: note: in expansion of macro 'SHEET_FROM_OBJECT' | |
SHEET_FROM_OBJECT(sheet, object); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c: In function 'zm_startup_excel': | |
/tmp/php_excel-master/excel.c:94:20: warning: assignment from incompatible pointer type | |
ce.create_object = excel_object_new_ ## c_name; \ | |
^ | |
/tmp/php_excel-master/excel.c:6107:2: note: in expansion of macro 'REGISTER_EXCEL_CLASS' | |
REGISTER_EXCEL_CLASS(Book, book, NULL); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c:95:25: error: too many arguments to function 'zend_register_internal_class_ex' | |
excel_ce_ ## c_name = zend_register_internal_class_ex(&ce, NULL, NULL TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:6107:2: note: in expansion of macro 'REGISTER_EXCEL_CLASS' | |
REGISTER_EXCEL_CLASS(Book, book, NULL); | |
^ | |
In file included from /usr/local/include/php/main/php.h:39:0, | |
from /tmp/php_excel-master/excel.c:26: | |
/usr/local/include/php/Zend/zend_API.h:290:28: note: declared here | |
ZEND_API zend_class_entry *zend_register_internal_class_ex(zend_class_entry *class_entry, zend_class_entry *parent_ce); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c:94:20: warning: assignment from incompatible pointer type | |
ce.create_object = excel_object_new_ ## c_name; \ | |
^ | |
/tmp/php_excel-master/excel.c:6108:2: note: in expansion of macro 'REGISTER_EXCEL_CLASS' | |
REGISTER_EXCEL_CLASS(Sheet, sheet, NULL); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c:95:25: error: too many arguments to function 'zend_register_internal_class_ex' | |
excel_ce_ ## c_name = zend_register_internal_class_ex(&ce, NULL, NULL TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:6108:2: note: in expansion of macro 'REGISTER_EXCEL_CLASS' | |
REGISTER_EXCEL_CLASS(Sheet, sheet, NULL); | |
^ | |
In file included from /usr/local/include/php/main/php.h:39:0, | |
from /tmp/php_excel-master/excel.c:26: | |
/usr/local/include/php/Zend/zend_API.h:290:28: note: declared here | |
ZEND_API zend_class_entry *zend_register_internal_class_ex(zend_class_entry *class_entry, zend_class_entry *parent_ce); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c:94:20: warning: assignment from incompatible pointer type | |
ce.create_object = excel_object_new_ ## c_name; \ | |
^ | |
/tmp/php_excel-master/excel.c:6109:2: note: in expansion of macro 'REGISTER_EXCEL_CLASS' | |
REGISTER_EXCEL_CLASS(Format, format, excel_format_object_clone); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c:95:25: error: too many arguments to function 'zend_register_internal_class_ex' | |
excel_ce_ ## c_name = zend_register_internal_class_ex(&ce, NULL, NULL TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:6109:2: note: in expansion of macro 'REGISTER_EXCEL_CLASS' | |
REGISTER_EXCEL_CLASS(Format, format, excel_format_object_clone); | |
^ | |
In file included from /usr/local/include/php/main/php.h:39:0, | |
from /tmp/php_excel-master/excel.c:26: | |
/usr/local/include/php/Zend/zend_API.h:290:28: note: declared here | |
ZEND_API zend_class_entry *zend_register_internal_class_ex(zend_class_entry *class_entry, zend_class_entry *parent_ce); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c:97:46: warning: assignment from incompatible pointer type | |
excel_object_handlers_ ## c_name.clone_obj = clone; \ | |
^ | |
/tmp/php_excel-master/excel.c:6109:2: note: in expansion of macro 'REGISTER_EXCEL_CLASS' | |
REGISTER_EXCEL_CLASS(Format, format, excel_format_object_clone); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c:94:20: warning: assignment from incompatible pointer type | |
ce.create_object = excel_object_new_ ## c_name; \ | |
^ | |
/tmp/php_excel-master/excel.c:6110:2: note: in expansion of macro 'REGISTER_EXCEL_CLASS' | |
REGISTER_EXCEL_CLASS(Font, font, excel_font_object_clone); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c:95:25: error: too many arguments to function 'zend_register_internal_class_ex' | |
excel_ce_ ## c_name = zend_register_internal_class_ex(&ce, NULL, NULL TSRMLS_CC); \ | |
^ | |
/tmp/php_excel-master/excel.c:6110:2: note: in expansion of macro 'REGISTER_EXCEL_CLASS' | |
REGISTER_EXCEL_CLASS(Font, font, excel_font_object_clone); | |
^ | |
In file included from /usr/local/include/php/main/php.h:39:0, | |
from /tmp/php_excel-master/excel.c:26: | |
/usr/local/include/php/Zend/zend_API.h:290:28: note: declared here | |
ZEND_API zend_class_entry *zend_register_internal_class_ex(zend_class_entry *class_entry, zend_class_entry *parent_ce); | |
^ | |
[0m[91m/tmp/php_excel-master/excel.c:97:46: warning: assignment from incompatible pointer type | |
excel_object_handlers_ ## c_name.clone_obj = clone; \ | |
^ | |
/tmp/php_excel-master/excel.c:6110:2: note: in expansion of macro 'REGISTER_EXCEL_CLASS' | |
REGISTER_EXCEL_CLASS(Font, font, excel_font_object_clone); | |
^ | |
[0mMakefile:194: recipe for target 'excel.lo' failed | |
[91mmake: *** [excel.lo] Error 1 | |
[0m |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment