| 1 | | |
| | 1 | |
| | 2 | {{{ |
| | 3 | cp /boot/common/share/libtool/config/config.* build |
| | 4 | libtoolize --force --copy |
| | 5 | cp /boot/common/share/aclocal/libtool.m4 build |
| | 6 | cp /boot/common/share/aclocal/litoptions.m4 build |
| | 7 | cp /boot/common/share/aclocal/ltversions.m4 build |
| | 8 | cp /boot/common/share/aclocal/ltsugar.m4 build |
| | 9 | cp /boot/common/share/aclocal/lt~obsolete.m4 build |
| | 10 | aclocal (autoreconf may already include this?) |
| | 11 | autoreconf |
| | 12 | |
| | 13 | in xml/expat folder: |
| | 14 | libtoolize --force --copy |
| | 15 | mkdir m4 |
| | 16 | cp /boot/common/share/aclocal/libtool.m4 m4 |
| | 17 | cp /boot/common/share/aclocal/litoptions.m4 m4 |
| | 18 | cp /boot/common/share/aclocal/ltversion.m4 m4 |
| | 19 | cp /boot/common/share/aclocal/ltsugar.m4 m4 |
| | 20 | cp /boot/common/share/aclocal/lt~obsolete.m4 m4 |
| | 21 | aclocal -I m4 |
| | 22 | autoconf |
| | 23 | automake |
| | 24 | then run configure from main folder: |
| | 25 | ./configure --prefix=/boot/common --with-apr=/boot/common/bin/apr-1-config (any other options needed here?) |
| | 26 | make |
| | 27 | make install |
| | 28 | }}} |
| | 29 | |
| | 30 | TODO: figure out why it's not building shared lib |
| | 31 | |
| | 32 | {{{ |
| | 33 | make check -- need to run this still |
| | 34 | }}} |