| 1 | | |
| | 1 | (borrowed from tiltos) |
| | 2 | * rm -f conftools/libtool.m4 |
| | 3 | * cp /boot/common/share/libtool/config/config.guess conftools/. |
| | 4 | * cp /boot/common/share/libtool/config/config.sub conftools/. |
| | 5 | * libtoolize |
| | 6 | |
| | 7 | If using libtool 2.x, add `AC_CONFG_MACRO_DIR([m4])' to configure.in, I put it on line 34, but probably doesn't matter too much where it's put in. |
| | 8 | |
| | 9 | * aclocal -I conftools |
| | 10 | * autoconf |
| | 11 | * ./configure --prefix=/boot/common |
| | 12 | * make |
| | 13 | * make install |
| | 14 | |
| | 15 | * make check |
| | 16 | |
| | 17 | {{{ |
| | 18 | ~/expat-2.0.1> make check |
| | 19 | gcc -I./lib -I. -g -O2 -Wall -Wmissing-prototypes -Wstrict-prototypes -fexceptions -DHAVE_EXPAT_CONFIG_H -o tests/runtests.o -c tests/runtests.c |
| | 20 | gcc -I./lib -I. -g -O2 -Wall -Wmissing-prototypes -Wstrict-prototypes -fexceptions -DHAVE_EXPAT_CONFIG_H -o tests/chardata.o -c tests/chardata.c |
| | 21 | gcc -I./lib -I. -g -O2 -Wall -Wmissing-prototypes -Wstrict-prototypes -fexceptions -DHAVE_EXPAT_CONFIG_H -o tests/minicheck.o -c tests/minicheck.c |
| | 22 | /boot/home/expat-2.0.1/tests/minicheck.c: In function `srunner_run_all': |
| | 23 | /boot/home/expat-2.0.1/tests/minicheck.c:114: warning: variable `tc' might be clobbered by `longjmp' or `vfork' |
| | 24 | /boot/home/expat-2.0.1/tests/minicheck.c:119: warning: variable `i' might be clobbered by `longjmp' or `vfork' |
| | 25 | /bin/sh ./libtool --silent --mode=link gcc -I./lib -I. -g -O2 -Wall -Wmissing-prototypes -Wstrict-prototypes -fexceptions -DHAVE_EXPAT_CONFIG_H -o tests/runtests tests/runtests.o tests/chardata.o tests/minicheck.o libexpat.la |
| | 26 | make: CXX@: Command not found |
| | 27 | make: *** [tests/runtestspp.o] Error 127 |
| | 28 | ~/expat-2.0.1> |
| | 29 | }}} |
| | 30 | |