1
0
mirror of https://github.com/rkd77/elinks.git synced 2025-02-02 15:09:23 -05:00
elinks/docker/djgpp/build_xmlplusplus.sh

16 lines
269 B
Bash
Raw Normal View History

2022-07-12 17:32:44 +02:00
#!/bin/bash
export PKG_CONFIG_PATH=/usr/local/lib/pkgconfig
NOCONFIGURE=1 ./autogen.sh
2022-11-30 16:06:58 +01:00
CPPFLAGS="-I/usr/local/include/libxml2" ./configure \
--host=i586-pc-msdosdjgpp \
--enable-static=yes \
--enable-shared=no \
--disable-documentation
2022-07-12 17:32:44 +02:00
2022-12-01 18:12:44 +01:00
make -j`nproc`
2022-07-12 17:32:44 +02:00
make install