Skip to content

Commit c4a045c

Browse files
committed
add libxml2
1 parent f9d111c commit c4a045c

File tree

3,785 files changed

+793120
-1
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

3,785 files changed

+793120
-1
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ ENV TZ=Europe/Rome
7171
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone && \
7272
apt-get update && \
7373
apt-get install -y \
74-
build-essential \
74+
build-essential \
7575
# Intall clang compiler used by macos
7676
clang-13 \
7777
cmake \

deps/build_libs.sh

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -111,3 +111,9 @@ make distclean
111111
./configure --prefix="$PREFIX" --enable-static --disable-shared --host="$CROSS_COMPILE"
112112
make -j"$(nproc)"
113113
make install
114+
115+
cd /opt/lib/libxml2-2.14.3
116+
./autogen.sh --prefix="$PREFIX" --disable-shared --enable-static --without-python --without-iconv --host="$CROSS_COMPILE"
117+
make -j"$(nproc)"
118+
make install
119+

deps/libxml2-2.14.3/.editorconfig

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# EditorConfig : http://EditorConfig.org
2+
3+
root = true
4+
5+
[*]
6+
indent_style = space
7+
indent_size = 4
8+
tab_width = 8
9+
10+
[Makefile*]
11+
indent_style = tab

deps/libxml2-2.14.3/.gitattributes

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
/result/** -text
2+
/test/** -text

deps/libxml2-2.14.3/.gitignore

Lines changed: 65 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,65 @@
1+
*.exe
2+
*.o
3+
*.la
4+
*.lo
5+
*.pyc
6+
7+
# Executables
8+
/xmlcatalog
9+
/xmllint
10+
11+
# Test executables
12+
/runsuite
13+
/runtest
14+
/runxmlconf
15+
/testModule
16+
/testapi
17+
/testchar
18+
/testdict
19+
/testlimits
20+
/testparser
21+
/testrecurse
22+
23+
# Tests
24+
/missing.lst
25+
/runsuite.log
26+
/runxmlconf.log
27+
/test.out
28+
/xmlconf
29+
30+
# Generated by build system
31+
/config.h
32+
/include/libxml/xmlversion.h
33+
/libxml-2.0.pc
34+
/libxml2-config.cmake
35+
/xml2-config
36+
37+
# Autotools
38+
.deps
39+
.libs
40+
Makefile
41+
Makefile.in
42+
/INSTALL
43+
/aclocal.m4
44+
/autom4te.cache
45+
/compile
46+
/config.guess
47+
/config.guess~
48+
/config.h.in
49+
/config.h.in~
50+
/config.log
51+
/config.status
52+
/config.sub
53+
/config.sub~
54+
/configure
55+
/configure~
56+
/depcomp
57+
/install-sh
58+
/install-sh~
59+
/libtool
60+
/ltmain.sh
61+
/missing
62+
/m4/libtool.m4
63+
/m4/lt*.m4
64+
/py-compile
65+
/stamp-h1

0 commit comments

Comments
 (0)