Skip to content

Commit 2af6b75

Browse files
committed
update bundle
1 parent 5bee121 commit 2af6b75

File tree

5 files changed

+16
-6
lines changed

5 files changed

+16
-6
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
*.lo
33
*.la
44
.libs
5+
.dockerignore
6+
Dockerfile
57
debug
68
debug.php
79
php

.gitmodules

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[submodule "library/libxlsxwriter"]
22
path = library/libxlsxwriter
33
url = https://github.com/jmcnamara/libxlsxwriter.git
4-
branch = RELEASE_0.7.9
4+
branch = RELEASE_0.9.4
55
[submodule "library/libexpat"]
66
path = library/libexpat
77
url = https://github.com/libexpat/libexpat.git

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ branches:
3535
only:
3636
- master
3737
- dev
38+
- bundle
3839

3940
script:
4041
- ./travis/run-test.sh

config.w32

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,15 +35,21 @@ if (PHP_XLSWRITER != "no") {
3535
mztools.c \
3636
unzip.c \
3737
zip.c \
38-
", "xlswriter");
38+
", "xlswriter", "libxlsxwriter");
3939

4040
ADD_SOURCES(configure_module_dirname + "\\library\\libxlsxwriter\\third_party\\tmpfileplus", "\
4141
tmpfileplus.c \
42-
", "xlswriter");
42+
", "xlswriter", "libxlsxwriter");
43+
44+
ADD_SOURCES(configure_module_dirname + "\\library\\libxlsxwriter\\third_party\\md5", "\
45+
md5.c \
46+
", "xlswriter", "libxlsxwriter");
4347

4448
ADD_SOURCES(configure_module_dirname + "\\library\\libxlsxwriter\\src", "\
4549
app.c \
4650
chart.c \
51+
chartsheet.c \
52+
comment.c \
4753
content_types.c \
4854
core.c \
4955
custom.c \
@@ -56,6 +62,7 @@ if (PHP_XLSWRITER != "no") {
5662
styles.c \
5763
theme.c \
5864
utility.c \
65+
vml.c \
5966
workbook.c \
6067
worksheet.c \
6168
xmlwriter.c \
@@ -68,12 +75,12 @@ if (PHP_XLSWRITER != "no") {
6875
xmltok.c \
6976
xmltok_impl.c \
7077
xmltok_ns.c \
71-
", "xlswriter");
78+
", "xlswriter", "libexpat");
7279

7380
ADD_SOURCES(configure_module_dirname + "\\library\\libxlsxio\\lib", "\
7481
xlsxio_read.c \
7582
xlsxio_read_sharedstrings.c \
76-
", "xlswriter");
83+
", "xlswriter", "libxlsxio");
7784
} else {
7885
WARNING("xlswriter not enabled, xlsxwriter.lib or headers not found");
7986
}

library/libxlsxwriter

Submodule libxlsxwriter updated 61 files

0 commit comments

Comments
 (0)