| 1 | | work in progress |
| 2 | | |
| 3 | | {{{ |
| 4 | | "AC_CONFIG_MACRO_DIR([m4])" >> configure.in |
| 5 | | switch "AC_PROG_RANLIB" with "LT_INIT" >> configure.in |
| 6 | | "ACLOCAL_AMFLAGS = -I m4" >> Makefile.am |
| 7 | | libtoolize --force --install |
| 8 | | aclocal |
| 9 | | automake --add-missing |
| 10 | | autoconf |
| 11 | | configure --prefix=/boot/common |
| 12 | | make |
| 13 | | }}} |
| 14 | | |
| 15 | | make errors : |
| 16 | | {{{ |
| 17 | | make all-recursive |
| 18 | | make[1]: Entering directory `/misc_obj/gsoap-2.7' |
| 19 | | Making all in gsoap |
| 20 | | make[2]: Entering directory `/misc_obj/gsoap-2.7/gsoap' |
| 21 | | source='stdsoap2.c' object='libgsoap_a-stdsoap2.o' libtool=no \ |
| 22 | | DEPDIR=.deps depmode=gcc /bin/sh ../depcomp \ |
| 23 | | gcc -DHAVE_CONFIG_H -I. -I.. -DUNKNOWN -g -O2 -c -o libgsoap_a-stdsoap2.o `test -f 'stdsoap2.c' || echo './'`stdsoap2.c |
| 24 | | /misc_obj/gsoap-2.7/gsoap/stdsoap2.c: In function `frecv': |
| 25 | | /misc_obj/gsoap-2.7/gsoap/stdsoap2.c:957: warning: passing arg 6 of `recvfrom' from incompatible pointer type |
| 26 | | /misc_obj/gsoap-2.7/gsoap/stdsoap2.c: In function `tcp_connect': |
| 27 | | /misc_obj/gsoap-2.7/gsoap/stdsoap2.c:3959: warning: passing arg 5 of `getsockopt' from incompatible pointer type |
| 28 | | /misc_obj/gsoap-2.7/gsoap/stdsoap2.c: In function `tcp_accept': |
| 29 | | /misc_obj/gsoap-2.7/gsoap/stdsoap2.c:4502: warning: passing arg 3 of `accept' from incompatible pointer type |
| 30 | | rm -f libgsoap.a |
| 31 | | ar cru libgsoap.a libgsoap_a-stdsoap2.o |
| 32 | | ranlib libgsoap.a |
| 33 | | source='stdsoap2_cpp.cpp' object='libgsoap___a-stdsoap2_cpp.o' libtool=no \ |
| 34 | | DEPDIR=.deps depmode=gcc /bin/sh ../depcomp \ |
| 35 | | g++ -DHAVE_CONFIG_H -I. -I.. -DUNKNOWN -g -O2 -c -o libgsoap___a-stdsoap2_cpp.o `test -f 'stdsoap2_cpp.cpp' || echo './'`stdsoap2_cpp.cpp |
| 36 | | /misc_obj/gsoap-2.7/gsoap/stdsoap2_cpp.cpp: In function `size_t frecv(soap *, char *, long unsigned int)': |
| 37 | | /misc_obj/gsoap-2.7/gsoap/stdsoap2_cpp.cpp:957: passing `size_t *' as argument 6 of `recvfrom(int, void *, long unsigned int, int, sockaddr *, socklen_t *)' |
| 38 | | /misc_obj/gsoap-2.7/gsoap/stdsoap2_cpp.cpp: In function `int tcp_connect(soap *, const char *, const char *, int)': |
| 39 | | /misc_obj/gsoap-2.7/gsoap/stdsoap2_cpp.cpp:3959: passing `size_t *' as argument 5 of `getsockopt(int, int, int, void *, socklen_t *)' |
| 40 | | /misc_obj/gsoap-2.7/gsoap/stdsoap2_cpp.cpp: In function `int tcp_accept(soap *, int, sockaddr *, int *)': |
| 41 | | /misc_obj/gsoap-2.7/gsoap/stdsoap2_cpp.cpp:4502: passing `size_t *' as argument 3 of `accept(int, sockaddr *, socklen_t *)' |
| 42 | | make[2]: *** [libgsoap___a-stdsoap2_cpp.o] Error 1 |
| 43 | | make[2]: Leaving directory `/misc_obj/gsoap-2.7/gsoap' |
| 44 | | make[1]: *** [all-recursive] Error 1 |
| 45 | | make[1]: Leaving directory `/misc_obj/gsoap-2.7' |
| 46 | | make: *** [all] Error 2 |
| 47 | | }}} |
| 48 | | |