1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-09-06 23:44:43 -04:00
elinks/docker/djgpp/build_xmlplusplus.sh

16 lines
269 B
Bash
Raw Normal View History

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