Thread: [bwm-tools-tech] Compilation problems
Brought to you by:
nkukard
From: Henning B. <ere...@ms...> - 2003-11-30 13:04:17
|
I get the following error trying to compile bwm-tools. I've tried versions 0.1.6, 0.1.4 and 0.1.2. flowControl.c: In function `controlRunner': flowControl.c:235: parse error before `struct' flowControl.c:245: `tempStat' undeclared (first use in this function) flowControl.c:245: (Each undeclared identifier is reported only once flowControl.c:245: for each function it appears in.) make[2]: *** [flowControl.o] Error 1 make[2]: Leaving directory `/home/hjb/bwm_tools-0.1.x/bwmd' make[1]: *** [all] Error 2 make[1]: Leaving directory `/home/hjb/bwm_tools-0.1.x/bwmd' make: *** [all] Error 2 What am I doing wrong? gcc is version 2.95.4. Complete compilation log follows. Thanks, Henning [hq:~/bwm_tools-0.1.2]$ ./configure checking for gcc... gcc checking for C compiler default output... a.out checking whether the C compiler works... yes checking whether we are cross compiling... no checking for suffix of executables... checking for suffix of object files... o checking whether we are using the GNU C compiler... yes checking whether gcc accepts -g... yes checking for gcc option to accept ANSI C... none needed checking for a BSD-compatible install... /usr/bin/install -c checking how to run the C preprocessor... gcc -E checking for egrep... grep -E checking for ANSI C header files... yes checking for sys/types.h... yes checking for sys/stat.h... yes checking for stdlib.h... yes checking for string.h... yes checking for memory.h... yes checking for strings.h... yes checking for inttypes.h... yes checking for stdint.h... yes checking for unistd.h... yes checking arpa/inet.h usability... yes checking arpa/inet.h presence... yes checking for arpa/inet.h... yes checking fcntl.h usability... yes checking fcntl.h presence... yes checking for fcntl.h... yes checking netinet/in.h usability... yes checking netinet/in.h presence... yes checking for netinet/in.h... yes checking for stdlib.h... (cached) yes checking for string.h... (cached) yes checking sys/socket.h usability... yes checking sys/socket.h presence... yes checking for sys/socket.h... yes checking sys/time.h usability... yes checking sys/time.h presence... yes checking for sys/time.h... yes checking for unistd.h... (cached) yes checking for stdbool.h that conforms to C99... no checking for _Bool... no checking for an ANSI C-conforming const... yes checking for size_t... yes checking whether time.h and sys/time.h may both be included... yes checking for stdlib.h... (cached) yes checking for GNU libc compatible malloc... yes checking for stdlib.h... (cached) yes checking for GNU libc compatible realloc... yes checking sys/select.h usability... yes checking sys/select.h presence... yes checking for sys/select.h... yes checking for sys/socket.h... (cached) yes checking types of arguments for select... int,fd_set *,struct timeval * checking return type of signal handlers... void checking whether lstat dereferences a symlink specified with a trailing slash... yes checking whether stat accepts an empty string... no checking for gettimeofday... yes checking for inet_ntoa... yes checking for memset... yes checking for select... yes checking for socket... yes checking for strcasecmp... yes checking for strchr... yes checking for strdup... yes checking for strerror... yes checking for strncasecmp... yes checking for strndup... yes checking for pkg-config... /usr/bin/pkg-config checking for GLIB - version >= 2.0.0... yes (version 2.0.1) checking for xml2-config... /usr/bin/xml2-config checking for libxml - version >= 2.0.0... makeyes (version 2.5.11) configure: creating ./config.status config.status: creating Makefile config.status: creating makefile.inc config.status: creating lib/Makefile config.status: creating bwm_firewall/Makefile config.status: creating bwm_graph/Makefile config.status: creating bwmd/Makefile config.status: creating bwm_monitor/Makefile config.status: creating config.h [hq:~/bwm_tools-0.1.2]$ make for dir in lib bwm_firewall bwm_graph bwmd bwm_monitor; \ do \ make -C $dir all; \ res=$?; \ if [ $res != '0' ]; then exit $res; fi \ done make[1]: Entering directory `/home/hjb/bwm_tools-0.1.2/lib' cc -D_REENTRANT -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/libxml2 -Wall -I../include -D _GNU_SOURCE --depend flow.c ipq.c libipq.c xmlConf.c autoclass.c misc.c > .deps make libbwm.a make[2]: Entering directory `/home/hjb/bwm_tools-0.1.2/lib' cc -D_REENTRANT -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/libxml2 -Wall -I../include - D_GNU_SOURCE -c flow.c cc -D_REENTRANT -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/libxml2 -Wall -I../include - D_GNU_SOURCE -c ipq.c ipq.c: In function `queuePacket': ipq.c:141: warning: unused variable `icmph' cc -D_REENTRANT -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/libxml2 -Wall -I../include - D_GNU_SOURCE -c libipq.c cc -D_REENTRANT -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/libxml2 -Wall -I../include - D_GNU_SOURCE -c xmlConf.c cc -D_REENTRANT -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/libxml2 -Wall -I../include - D_GNU_SOURCE -c autoclass.c cc -D_REENTRANT -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/libxml2 -Wall -I../include - D_GNU_SOURCE -c misc.c ar cr libbwm.a flow.o ipq.o libipq.o xmlConf.o autoclass.o misc.o make[2]: Leaving directory `/home/hjb/bwm_tools-0.1.2/lib' make[1]: Leaving directory `/home/hjb/bwm_tools-0.1.2/lib' make[1]: Entering directory `/home/hjb/bwm_tools-0.1.2/bwm_firewall' cc -D_REENTRANT -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/libxml2 -DCONFIG_FILE=\"/etc/ bwm_tools/firewall.xml\" -DIPTABLES_FILE=\"/etc/sysconfig/iptables\" -Wall -I../include -D_GNU_SOURCE --depend bwm_f irewall.c > .deps make bwm_firewall make[2]: Entering directory `/home/hjb/bwm_tools-0.1.2/bwm_firewall' cc -D_REENTRANT -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/libxml2 -DCONFIG_FILE=\"/etc /bwm_tools/firewall.xml\" -DIPTABLES_FILE=\"/etc/sysconfig/iptables\" -Wall -I../include -D_GNU_SOURCE -c bwm_firewa ll.c cc -o bwm_firewall bwm_firewall.o ../lib/libbwm.a -lgthread-2.0 -lpthread -lglib-2.0 -lxml2 -lpthread -lz -lm make[2]: Leaving directory `/home/hjb/bwm_tools-0.1.2/bwm_firewall' make[1]: Leaving directory `/home/hjb/bwm_tools-0.1.2/bwm_firewall' make[1]: Entering directory `/home/hjb/bwm_tools-0.1.2/bwm_graph' cc -D_REENTRANT -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -DLOG_DIR=\"/var/bwm_tools\" -Wall -I../includ e -D_GNU_SOURCE --depend bwm_graph.c graph.c > .deps make bwm_graph make[2]: Entering directory `/home/hjb/bwm_tools-0.1.2/bwm_graph' cc -D_REENTRANT -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -DLOG_DIR=\"/var/bwm_tools\" -Wall -I../inclu de -D_GNU_SOURCE -c bwm_graph.c cc -D_REENTRANT -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -DLOG_DIR=\"/var/bwm_tools\" -Wall -I../inclu de -D_GNU_SOURCE -c graph.c cc -o bwm_graph bwm_graph.o graph.o ../lib/libbwm.a -lgthread-2.0 -lpthread -lglib-2.0 -lrrd make[2]: Leaving directory `/home/hjb/bwm_tools-0.1.2/bwm_graph' make[1]: Leaving directory `/home/hjb/bwm_tools-0.1.2/bwm_graph' make[1]: Entering directory `/home/hjb/bwm_tools-0.1.2/bwmd' cc -D_REENTRANT -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/libxml2 -DCONFIG_FILE=\"/etc/ bwm_tools/firewall.xml\" -DLOG_DIR=\"/var/bwm_tools\" -Wall -I../include -D_GNU_SOURCE --depend report.c flowControl .c bwmd.c > .deps make bwmd make[2]: Entering directory `/home/hjb/bwm_tools-0.1.2/bwmd' cc -D_REENTRANT -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/libxml2 -DCONFIG_FILE=\"/etc /bwm_tools/firewall.xml\" -DLOG_DIR=\"/var/bwm_tools\" -Wall -I../include -D_GNU_SOURCE -c report.c cc -D_REENTRANT -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/libxml2 -DCONFIG_FILE=\"/etc /bwm_tools/firewall.xml\" -DLOG_DIR=\"/var/bwm_tools\" -Wall -I../include -D_GNU_SOURCE -c flowControl.c flowControl.c: In function `controlRunner': flowControl.c:235: parse error before `struct' flowControl.c:245: `tempStat' undeclared (first use in this function) flowControl.c:245: (Each undeclared identifier is reported only once flowControl.c:245: for each function it appears in.) make[2]: *** [flowControl.o] Error 1 make[2]: Leaving directory `/home/hjb/bwm_tools-0.1.2/bwmd' make[1]: *** [all] Error 2 make[1]: Leaving directory `/home/hjb/bwm_tools-0.1.2/bwmd' make: *** [all] Error 2 _________________________________________________________________ Groove on the latest from the hot new rock groups! Get downloads, videos, and more here. http://special.msn.com/entertainment/wiredformusic.armx |
From: Nigel K. <nk...@lb...> - 2003-11-30 13:27:39
|
Fixed in version 0.1.7, on freshmeat soon Thanks man -Nigel On Sun, Nov 30, 2003 at 01:04:11PM +0000, Henning Botha wrote: > I get the following error trying to compile bwm-tools. I've tried version= s=20 > 0.1.6, 0.1.4 and 0.1.2. >=20 > flowControl.c: In function `controlRunner': > flowControl.c:235: parse error before `struct' > flowControl.c:245: `tempStat' undeclared (first use in this function) > flowControl.c:245: (Each undeclared identifier is reported only once > flowControl.c:245: for each function it appears in.) > make[2]: *** [flowControl.o] Error 1 > make[2]: Leaving directory `/home/hjb/bwm_tools-0.1.x/bwmd' > make[1]: *** [all] Error 2 > make[1]: Leaving directory `/home/hjb/bwm_tools-0.1.x/bwmd' > make: *** [all] Error 2 >=20 > What am I doing wrong? gcc is version 2.95.4. >=20 > Complete compilation log follows. >=20 > Thanks, > Henning >=20 > [hq:~/bwm_tools-0.1.2]$ ./configure > checking for gcc... gcc > checking for C compiler default output... a.out > checking whether the C compiler works... yes > checking whether we are cross compiling... no > checking for suffix of executables... > checking for suffix of object files... o > checking whether we are using the GNU C compiler... yes > checking whether gcc accepts -g... yes > checking for gcc option to accept ANSI C... none needed > checking for a BSD-compatible install... /usr/bin/install -c > checking how to run the C preprocessor... gcc -E > checking for egrep... grep -E > checking for ANSI C header files... yes > checking for sys/types.h... yes > checking for sys/stat.h... yes > checking for stdlib.h... yes > checking for string.h... yes > checking for memory.h... yes > checking for strings.h... yes > checking for inttypes.h... yes > checking for stdint.h... yes > checking for unistd.h... yes > checking arpa/inet.h usability... yes > checking arpa/inet.h presence... yes > checking for arpa/inet.h... yes > checking fcntl.h usability... yes > checking fcntl.h presence... yes > checking for fcntl.h... yes > checking netinet/in.h usability... yes > checking netinet/in.h presence... yes > checking for netinet/in.h... yes > checking for stdlib.h... (cached) yes > checking for string.h... (cached) yes > checking sys/socket.h usability... yes > checking sys/socket.h presence... yes > checking for sys/socket.h... yes > checking sys/time.h usability... yes > checking sys/time.h presence... yes > checking for sys/time.h... yes > checking for unistd.h... (cached) yes > checking for stdbool.h that conforms to C99... no > checking for _Bool... no > checking for an ANSI C-conforming const... yes > checking for size_t... yes > checking whether time.h and sys/time.h may both be included... yes > checking for stdlib.h... (cached) yes > checking for GNU libc compatible malloc... yes > checking for stdlib.h... (cached) yes > checking for GNU libc compatible realloc... yes > checking sys/select.h usability... yes > checking sys/select.h presence... yes > checking for sys/select.h... yes > checking for sys/socket.h... (cached) yes > checking types of arguments for select... int,fd_set *,struct timeval * > checking return type of signal handlers... void > checking whether lstat dereferences a symlink specified with a trailing= =20 > slash... yes > checking whether stat accepts an empty string... no > checking for gettimeofday... yes > checking for inet_ntoa... yes > checking for memset... yes > checking for select... yes > checking for socket... yes > checking for strcasecmp... yes > checking for strchr... yes > checking for strdup... yes > checking for strerror... yes > checking for strncasecmp... yes > checking for strndup... yes > checking for pkg-config... /usr/bin/pkg-config > checking for GLIB - version >=3D 2.0.0... yes (version 2.0.1) > checking for xml2-config... /usr/bin/xml2-config > checking for libxml - version >=3D 2.0.0... makeyes (version 2.5.11) > configure: creating ./config.status > config.status: creating Makefile > config.status: creating makefile.inc > config.status: creating lib/Makefile > config.status: creating bwm_firewall/Makefile > config.status: creating bwm_graph/Makefile > config.status: creating bwmd/Makefile > config.status: creating bwm_monitor/Makefile > config.status: creating config.h >=20 > [hq:~/bwm_tools-0.1.2]$ make > for dir in lib bwm_firewall bwm_graph bwmd bwm_monitor; \ > do \ > make -C $dir all; \ > res=3D$?; \ > if [ $res !=3D '0' ]; then exit $res; fi \ > done > make[1]: Entering directory `/home/hjb/bwm_tools-0.1.2/lib' > cc -D_REENTRANT -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include =20 > -I/usr/include/libxml2 -Wall -I../include -D > _GNU_SOURCE --depend flow.c ipq.c libipq.c xmlConf.c autoclass.c misc.c >= =20 > .deps > make libbwm.a > make[2]: Entering directory `/home/hjb/bwm_tools-0.1.2/lib' > cc -D_REENTRANT -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include =20 > -I/usr/include/libxml2 -Wall -I../include - > D_GNU_SOURCE -c flow.c > cc -D_REENTRANT -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include =20 > -I/usr/include/libxml2 -Wall -I../include - > D_GNU_SOURCE -c ipq.c > ipq.c: In function `queuePacket': > ipq.c:141: warning: unused variable `icmph' > cc -D_REENTRANT -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include =20 > -I/usr/include/libxml2 -Wall -I../include - > D_GNU_SOURCE -c libipq.c > cc -D_REENTRANT -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include =20 > -I/usr/include/libxml2 -Wall -I../include - > D_GNU_SOURCE -c xmlConf.c > cc -D_REENTRANT -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include =20 > -I/usr/include/libxml2 -Wall -I../include - > D_GNU_SOURCE -c autoclass.c > cc -D_REENTRANT -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include =20 > -I/usr/include/libxml2 -Wall -I../include - > D_GNU_SOURCE -c misc.c > ar cr libbwm.a flow.o ipq.o libipq.o xmlConf.o autoclass.o misc.o > make[2]: Leaving directory `/home/hjb/bwm_tools-0.1.2/lib' > make[1]: Leaving directory `/home/hjb/bwm_tools-0.1.2/lib' > make[1]: Entering directory `/home/hjb/bwm_tools-0.1.2/bwm_firewall' > cc -D_REENTRANT -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include =20 > -I/usr/include/libxml2 -DCONFIG_FILE=3D\"/etc/ > bwm_tools/firewall.xml\" -DIPTABLES_FILE=3D\"/etc/sysconfig/iptables\" -W= all=20 > -I../include -D_GNU_SOURCE --depend bwm_f > irewall.c > .deps > make bwm_firewall > make[2]: Entering directory `/home/hjb/bwm_tools-0.1.2/bwm_firewall' > cc -D_REENTRANT -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include =20 > -I/usr/include/libxml2 -DCONFIG_FILE=3D\"/etc > /bwm_tools/firewall.xml\" -DIPTABLES_FILE=3D\"/etc/sysconfig/iptables\" -= Wall=20 > -I../include -D_GNU_SOURCE -c bwm_firewa > ll.c > cc -o bwm_firewall bwm_firewall.o ../lib/libbwm.a -lgthread-2.0 -lpthread= =20 > -lglib-2.0 -lxml2 -lpthread -lz -lm > make[2]: Leaving directory `/home/hjb/bwm_tools-0.1.2/bwm_firewall' > make[1]: Leaving directory `/home/hjb/bwm_tools-0.1.2/bwm_firewall' > make[1]: Entering directory `/home/hjb/bwm_tools-0.1.2/bwm_graph' > cc -D_REENTRANT -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include =20 > -DLOG_DIR=3D\"/var/bwm_tools\" -Wall -I../includ > e -D_GNU_SOURCE --depend bwm_graph.c graph.c > .deps > make bwm_graph > make[2]: Entering directory `/home/hjb/bwm_tools-0.1.2/bwm_graph' > cc -D_REENTRANT -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include =20 > -DLOG_DIR=3D\"/var/bwm_tools\" -Wall -I../inclu > de -D_GNU_SOURCE -c bwm_graph.c > cc -D_REENTRANT -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include =20 > -DLOG_DIR=3D\"/var/bwm_tools\" -Wall -I../inclu > de -D_GNU_SOURCE -c graph.c > cc -o bwm_graph bwm_graph.o graph.o ../lib/libbwm.a -lgthread-2.0 -lpthre= ad=20 > -lglib-2.0 -lrrd > make[2]: Leaving directory `/home/hjb/bwm_tools-0.1.2/bwm_graph' > make[1]: Leaving directory `/home/hjb/bwm_tools-0.1.2/bwm_graph' > make[1]: Entering directory `/home/hjb/bwm_tools-0.1.2/bwmd' > cc -D_REENTRANT -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include =20 > -I/usr/include/libxml2 -DCONFIG_FILE=3D\"/etc/ > bwm_tools/firewall.xml\" -DLOG_DIR=3D\"/var/bwm_tools\" -Wall -I../includ= e=20 > -D_GNU_SOURCE --depend report.c flowControl > .c bwmd.c > .deps > make bwmd > make[2]: Entering directory `/home/hjb/bwm_tools-0.1.2/bwmd' > cc -D_REENTRANT -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include =20 > -I/usr/include/libxml2 -DCONFIG_FILE=3D\"/etc > /bwm_tools/firewall.xml\" -DLOG_DIR=3D\"/var/bwm_tools\" -Wall -I../inclu= de=20 > -D_GNU_SOURCE -c report.c > cc -D_REENTRANT -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include =20 > -I/usr/include/libxml2 -DCONFIG_FILE=3D\"/etc > /bwm_tools/firewall.xml\" -DLOG_DIR=3D\"/var/bwm_tools\" -Wall -I../inclu= de=20 > -D_GNU_SOURCE -c flowControl.c > flowControl.c: In function `controlRunner': > flowControl.c:235: parse error before `struct' > flowControl.c:245: `tempStat' undeclared (first use in this function) > flowControl.c:245: (Each undeclared identifier is reported only once > flowControl.c:245: for each function it appears in.) > make[2]: *** [flowControl.o] Error 1 > make[2]: Leaving directory `/home/hjb/bwm_tools-0.1.2/bwmd' > make[1]: *** [all] Error 2 > make[1]: Leaving directory `/home/hjb/bwm_tools-0.1.2/bwmd' > make: *** [all] Error 2 >=20 > _________________________________________________________________ > Groove on the latest from the hot new rock groups! Get downloads, videos= ,=20 > and more here. http://special.msn.com/entertainment/wiredformusic.armx >=20 >=20 >=20 > ------------------------------------------------------- > This SF.net email is sponsored by: SF.net Giveback Program. > Does SourceForge.net help you be more productive? Does it > help you create better code? SHARE THE LOVE, and help us help > YOU! Click Here: http://sourceforge.net/donate/ > _______________________________________________ > bwm-tools-tech mailing list > bwm...@li... > https://lists.sourceforge.net/lists/listinfo/bwm-tools-tech |
From: Kevork <ke...@cy...> - 2003-12-08 04:45:12
|
Hi !, I see some other ones have compilation problems, I have also .... I am trying to complie version 0.1.7 on RH 9.0. Compliation claims that glibc.h is not found, but it exists .. (is /usr/include/glib-1.2/glib.h) I paste here some of errors ... Could some one give some ad about this ?. Thank you very much, Kevork --- [/usr/local/src/bwm_tools-0.1.7] # make for dir in lib bwm_firewall bwm_graph bwmd bwm_monitor; \ do \ make -C $dir all; \ res=$?; \ if [ $res != '0' ]; then exit $res; fi \ done make[1]: Entering directory `/usr/local/src/bwm_tools-0.1.7/lib' make libbwm.a make[2]: Entering directory `/usr/local/src/bwm_tools-0.1.7/lib' cc -I/usr/include/libxml2 -Wall -I../include -D_GNU_SOURCE -c flow.c flow.c:9:18: glib.h: No such file or directory In file included from flow.c:14: ../include/common.h:12:18: glib.h: No such file or directory In file included from flow.c:14: ../include/common.h:31: parse error before "GList" ../include/common.h:31: warning: no semicolon at end of struct or union ../include/common.h:32: warning: type defaults to `int' in declaration of `lock' ../include/common.h:32: warning: data definition has no type or storage class ../include/common.h:33: parse error before '}' token ../include/common.h:40: parse error before "GList" ../include/common.h:40: warning: no semicolon at end of struct or union ../include/common.h:41: warning: type defaults to `int' in declaration of `flows' ../include/common.h:41: warning: data definition has no type or storage class ../include/common.h:42: parse error before '*' token --- |
From: Nigel K. <nk...@lb...> - 2003-12-09 08:36:33
|
I have no clue how you got past the configure script because it checks for = glib-2.0.0 or higher & libxml 2.0.0 or higher. Install more recent versions and it should compile ;-) On Mon, Dec 08, 2003 at 01:45:02AM -0300, Kevork wrote: > Hi !, I see some other ones have compilation problems, I have also .... > I am trying to complie version 0.1.7 on RH 9.0. > Compliation claims that glibc.h is not found, but it exists .. (is > /usr/include/glib-1.2/glib.h) > I paste here some of errors ... > Could some one give some ad about this ?. >=20 > Thank you very much, > Kevork >=20 >=20 >=20 >=20 > --- >=20 > [/usr/local/src/bwm_tools-0.1.7] > # make > for dir in lib bwm_firewall bwm_graph bwmd bwm_monitor; \ > do \ > make -C $dir all; \ > res=3D$?; \ > if [ $res !=3D '0' ]; then exit $res; fi \ > done > make[1]: Entering directory `/usr/local/src/bwm_tools-0.1.7/lib' > make libbwm.a > make[2]: Entering directory `/usr/local/src/bwm_tools-0.1.7/lib' > cc -I/usr/include/libxml2 -Wall -I../include -D_GNU_SOURCE -c flow.c > flow.c:9:18: glib.h: No such file or directory > In file included from flow.c:14: > ../include/common.h:12:18: glib.h: No such file or directory > In file included from flow.c:14: > ../include/common.h:31: parse error before "GList" > ../include/common.h:31: warning: no semicolon at end of struct or union > ../include/common.h:32: warning: type defaults to `int' in declaration of > `lock' > ../include/common.h:32: warning: data definition has no type or storage > class > ../include/common.h:33: parse error before '}' token > ../include/common.h:40: parse error before "GList" > ../include/common.h:40: warning: no semicolon at end of struct or union > ../include/common.h:41: warning: type defaults to `int' in declaration of > `flows' > ../include/common.h:41: warning: data definition has no type or storage > class > ../include/common.h:42: parse error before '*' token >=20 > --- >=20 >=20 >=20 > ------------------------------------------------------- > This SF.net email is sponsored by: SF.net Giveback Program. > Does SourceForge.net help you be more productive? Does it > help you create better code? SHARE THE LOVE, and help us help > YOU! Click Here: http://sourceforge.net/donate/ > _______________________________________________ > bwm-tools-tech mailing list > bwm...@li... > https://lists.sourceforge.net/lists/listinfo/bwm-tools-tech --=20 Nigel Kukard (Chief Executive Officer) Lando Technologies Africa (Pty) Ltd ni...@la... www.lando.co.za Tel: 083 399 5822 Fax: 086 1100036 Hoheisen Park Bellville, Cape Town National Internet Service Provider The best language to use is the language that was designed for what you want to use it for - 1997 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D Disclaimer ---------- The contents of this message and any attachments are intended=20 solely for the addressee's use and may be legally privileged and/or=20 confidential information. This message may not be retained,=20 distributed, copied or used if you are not he addressee of this=20 message. If this message was sent to you in error, please notify=20 the sender immediately by reply e-mail and then destroy the message=20 and any copies thereof. Opinions, conclusions and other information in this message may be=20 personal to the sender and is not that of Lando Technologies Africa=20 or any of it's subsideries, associated companies or principals and=20 is therefore not endorsed by any of the Lando groups of companies.=20 Due to e-maill communication being insecure, Lando groups of=20 companies do not guarantee confidentiality, security, accuracy or =20 performance of the e-mail. Any liability for viruses is excluded=20 to the fullest extent. |
From: Kevork <ke...@cy...> - 2003-12-13 04:23:42
|
----- Original Message -----=20 From: "Nigel Kukard" <nk...@lb...> To: "Kevork" <ke...@cy...> Cc: <bwm...@li...>; <jo...@la...> Sent: Tuesday, December 09, 2003 5:35 AM Subject: Re: [bwm-tools-tech] Compilation problems Thank you Nigel !, you were right, I did not see the error message at configure time, glib was old ... Now glib is 2.3.1, configure does not complain at all, but I=B4ve got mor= e errors at compile time. I put them here ... could you give some ad ? Thanks a lot !, Kevork. make[1]: Entering directory `/usr/local/src/bwm_tools-0.1.7/bwm_graph' cc -pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -DLOG_D= IR=3D \"/var/bwm_tools\" -Wall -I../include -D_GNU_SOURCE --depend bwm_graph.c graph.c > .deps make bwm_graph make[2]: Entering directory `/usr/local/src/bwm_tools-0.1.7/bwm_graph' cc -pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -DLOG_= DIR =3D\"/var/bwm_tools\" -Wall -I../include -D_GNU_SOURCE -c bwm_graph.c cc -pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -DLOG_= DIR =3D\"/var/bwm_tools\" -Wall -I../include -D_GNU_SOURCE -c graph.c cc -o bwm_graph bwm_graph.o graph.o ../lib/libbwm.a -pthread -lgthread-2.0 -lglib-2.0 -L/usr/local/lib -lrr= d /usr/local/lib/librrd.a(rrd_graph.o)(.text+0x15d): In function `ytr': /usr/local/src/rrdtool-1.0.45/src/rrd_graph.c:153: undefined reference to `log10' /usr/local/lib/librrd.a(rrd_graph.o)(.text+0x173):/usr/local/src/rrdtool-= 1.0 .45/src/rrd_graph.c:153: undefined reference to `log10' /usr/local/lib/librrd.a(rrd_graph.o)(.text+0x1e4):/usr/local/src/rrdtool-= 1.0 .45/src/rrd_graph.c:161: undefined reference to `log10' /usr/local/lib/librrd.a(rrd_graph.o)(.text+0x1fa):/usr/local/src/rrdtool-= 1.0 .45/src/rrd_graph.c:161: undefined reference to `log10' /usr/local/lib/librrd.a(rrd_graph.o)(.text+0x8d9): In function `auto_scal= e': /usr/include/bits/mathinline.h:445: undefined reference to `log' /usr/local/lib/librrd.a(rrd_graph.o)(.text+0x8f2):/usr/include/bits/mathi= nli ne.h:445: undefined reference to `log' /usr/local/lib/librrd.a(rrd_graph.o)(.text+0x955): In function `auto_scal= e': /usr/local/src/rrdtool-1.0.45/src/rrd_graph.c:311: undefined reference to `pow' /usr/local/lib/librrd.a(rrd_graph.o)(.text+0xa03): In function `si_unit': /usr/local/src/rrdtool-1.0.45/src/rrd_graph.c:353: undefined reference to `pow' /usr/local/lib/librrd.a(rrd_graph.o)(.text+0xaca): In function `si_unit': /usr/include/bits/mathinline.h:445: undefined reference to `log' /usr/local/lib/librrd.a(rrd_graph.o)(.text+0xae0):/usr/include/bits/mathi= nli ne.h:445: undefined reference to `log' /usr/local/lib/librrd.a(rrd_graph.o)(.text+0xbd8): In function `expand_range': /usr/include/bits/mathinline.h:445: undefined reference to `log10' /usr/local/lib/librrd.a(rrd_graph.o)(.text+0xc5b):/usr/include/bits/mathi= nli ne.h:504: undefined reference to `pow' /usr/local/lib/librrd.a(rrd_graph.o)(.text+0xcc4):/usr/include/bits/mathi= nli ne.h:504: undefined reference to `pow' /usr/local/lib/librrd.a(rrd_graph.o)(.text+0xd79):/usr/include/bits/mathi= nli ne.h:445: undefined reference to `log10' /usr/local/lib/librrd.a(rrd_graph.o)(.text+0xdc8):/usr/include/bits/mathi= nli ne.h:445: undefined reference to `pow' /usr/local/lib/librrd.a(rrd_graph.o)(.text+0x2680): In function `data_cal= c': /usr/local/src/rrdtool-1.0.45/src/rrd_graph.c:1064: undefined reference t= o `sin' /usr/local/lib/librrd.a(rrd_graph.o)(.text+0x2728):/usr/local/src/rrdtool= -1. 0.45/src/rrd_graph.c:1072: undefined reference to `cos' /usr/local/lib/librrd.a(rrd_graph.o)(.text+0x274d):/usr/local/src/rrdtool= -1. 0.45/src/rrd_graph.c:1096: undefined reference to `log' /usr/local/lib/librrd.a(rrd_graph.o)(.text+0x2772):/usr/local/src/rrdtool= -1. 0.45/src/rrd_graph.c:1133: undefined reference to `exp' /usr/local/lib/librrd.a(rrd_graph.o)(.text+0x4135): In function `horizontal_grid': /usr/include/bits/mathinline.h:445: undefined reference to `log10' /usr/local/lib/librrd.a(rrd_graph.o)(.text+0x41ba):/usr/include/bits/math= inl ine.h:493: undefined reference to `log10' /usr/local/lib/librrd.a(rrd_graph.o)(.text+0x425c): In function `horizontal_grid': /usr/local/src/rrdtool-1.0.45/src/rrd_graph.c:1845: undefined reference t= o `pow' /usr/local/lib/librrd.a(rrd_graph.o)(.text+0x49aa): In function `horizontal_mrtg_grid': /usr/include/bits/mathinline.h:445: undefined reference to `log10' /usr/local/lib/librrd.a(rrd_graph.o)(.text+0x4a2d):/usr/include/bits/math= inl ine.h:504: undefined reference to `pow' /usr/local/lib/librrd.a(rrd_graph.o)(.text+0x4a8a):/usr/include/bits/math= inl ine.h:504: undefined reference to `pow' /usr/local/lib/librrd.a(rrd_graph.o)(.text+0x4dc8): In function `horizontal_log_grid': /usr/local/src/rrdtool-1.0.45/src/rrd_graph.c:2011: undefined reference t= o `log10' /usr/local/lib/librrd.a(rrd_graph.o)(.text+0x4de4):/usr/local/src/rrdtool= -1. 0.45/src/rrd_graph.c:2011: undefined reference to `log10' /usr/local/lib/librrd.a(rrd_graph.o)(.text+0x4e79):/usr/local/src/rrdtool= -1. 0.45/src/rrd_graph.c:2018: undefined reference to `log10' /usr/local/lib/librrd.a(rrd_graph.o)(.text+0x4ff4):/usr/local/src/rrdtool= -1. 0.45/src/rrd_graph.c:2040: undefined reference to `log10' /usr/local/lib/librrd.a(rrd_graph.o)(.text+0x5010): In function `horizontal_log_grid': /usr/include/bits/mathinline.h:430: undefined reference to `log10' /usr/local/lib/librrd.a(rrd_graph.o)(.text+0x5036):/usr/include/bits/math= inl ine.h:430: more undefined references to `log10' follow /usr/local/lib/librrd.a(rrd_graph.o)(.text+0x506e): In function `horizontal_log_grid': /usr/include/bits/mathinline.h:430: undefined reference to `pow' /usr/local/lib/librrd.a(rrd_graph.o)(.text+0x5228): In function `horizontal_log_grid': /usr/local/src/rrdtool-1.0.45/src/rrd_graph.c:2061: undefined reference t= o `log10' /usr/local/lib/librrd.a(rrd_graph.o)(.text+0x5244): In function `horizontal_log_grid': /usr/include/bits/mathinline.h:430: undefined reference to `log10' /usr/local/lib/librrd.a(rrd_graph.o)(.text+0x526a):/usr/include/bits/math= inl ine.h:430: undefined reference to `log10' /usr/local/lib/librrd.a(rrd_graph.o)(.text+0x52a2):/usr/include/bits/math= inl ine.h:430: undefined reference to `pow' /usr/local/lib/librrd.a(rrd_graph.o)(.text+0x554a): In function `horizontal_log_grid': /usr/local/src/rrdtool-1.0.45/src/rrd_graph.c:2021: undefined reference t= o `log10' /usr/local/lib/librrd.a(rrd_graph.o)(.text+0x5564):/usr/local/src/rrdtool= -1. 0.45/src/rrd_graph.c:2021: undefined reference to `log10' /usr/local/lib/librrd.a(pngrtran.o)(.text+0x119c): In function `png_init_read_transformations': /usr/local/src/rrdtool-1.0.45/libpng-1.0.9/pngrtran.c:879: undefined reference to `pow' /usr/local/lib/librrd.a(pngrtran.o)(.text+0x11ef):/usr/local/src/rrdtool-= 1.0 .45/libpng-1.0.9/pngrtran.c:881: undefined reference to `pow' /usr/local/lib/librrd.a(pngrtran.o)(.text+0x1239):/usr/local/src/rrdtool-= 1.0 .45/libpng-1.0.9/pngrtran.c:883: undefined reference to `pow' /usr/local/lib/librrd.a(pngrtran.o)(.text+0x128a):/usr/local/src/rrdtool-= 1.0 .45/libpng-1.0.9/pngrtran.c:885: undefined reference to `pow' /usr/local/lib/librrd.a(pngrtran.o)(.text+0x12db):/usr/local/src/rrdtool-= 1.0 .45/libpng-1.0.9/pngrtran.c:887: undefined reference to `pow' /usr/local/lib/librrd.a(pngrtran.o)(.text+0x1329):/usr/local/src/rrdtool-= 1.0 .45/libpng-1.0.9/pngrtran.c:889: more undefined references to `pow' follo= w collect2: ld returned 1 exit status make[2]: *** [bwm_graph] Error 1 make[2]: Leaving directory `/usr/local/src/bwm_tools-0.1.7/bwm_graph' make[1]: *** [all] Error 2 make[1]: Leaving directory `/usr/local/src/bwm_tools-0.1.7/bwm_graph' make: *** [all] Error 2 |
From: Nigel K. <nk...@lb...> - 2003-12-13 10:52:20
|
Try specifying -> LD_FLAGS=3D"-lm" make On Sat, Dec 13, 2003 at 01:23:30AM -0300, Kevork wrote: > ----- Original Message -----=20 > From: "Nigel Kukard" <nk...@lb...> > To: "Kevork" <ke...@cy...> > Cc: <bwm...@li...>; <jo...@la...> > Sent: Tuesday, December 09, 2003 5:35 AM > Subject: Re: [bwm-tools-tech] Compilation problems >=20 >=20 > Thank you Nigel !, you were right, I did not see the error message at > configure time, glib was old ... >=20 > Now glib is 2.3.1, configure does not complain at all, but I?ve got more > errors at compile time. >=20 > I put them here ... could you give some ad ? >=20 > Thanks a lot !, > Kevork. >=20 > make[1]: Entering directory `/usr/local/src/bwm_tools-0.1.7/bwm_graph' > cc -pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -DLOG_D= IR=3D > \"/var/bwm_tools\" -Wall -I../include -D_GNU_SOURCE --depend bwm_graph.c > graph.c > .deps > make bwm_graph > make[2]: Entering directory `/usr/local/src/bwm_tools-0.1.7/bwm_graph' > cc -pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -DLOG_= DIR > =3D\"/var/bwm_tools\" -Wall -I../include -D_GNU_SOURCE -c bwm_graph.c > cc -pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -DLOG_= DIR > =3D\"/var/bwm_tools\" -Wall -I../include -D_GNU_SOURCE -c graph.c > cc -o bwm_graph bwm_graph.o graph.o > ../lib/libbwm.a -pthread -lgthread-2.0 -lglib-2.0 -L/usr/local/lib -lrrd > /usr/local/lib/librrd.a(rrd_graph.o)(.text+0x15d): In function `ytr': > /usr/local/src/rrdtool-1.0.45/src/rrd_graph.c:153: undefined reference to > `log10' > /usr/local/lib/librrd.a(rrd_graph.o)(.text+0x173):/usr/local/src/rrdtool-= 1.0 > .45/src/rrd_graph.c:153: undefined reference to `log10' > /usr/local/lib/librrd.a(rrd_graph.o)(.text+0x1e4):/usr/local/src/rrdtool-= 1.0 > .45/src/rrd_graph.c:161: undefined reference to `log10' > /usr/local/lib/librrd.a(rrd_graph.o)(.text+0x1fa):/usr/local/src/rrdtool-= 1.0 > .45/src/rrd_graph.c:161: undefined reference to `log10' > /usr/local/lib/librrd.a(rrd_graph.o)(.text+0x8d9): In function `auto_scal= e': > /usr/include/bits/mathinline.h:445: undefined reference to `log' > /usr/local/lib/librrd.a(rrd_graph.o)(.text+0x8f2):/usr/include/bits/mathi= nli > ne.h:445: undefined reference to `log' > /usr/local/lib/librrd.a(rrd_graph.o)(.text+0x955): In function `auto_scal= e': > /usr/local/src/rrdtool-1.0.45/src/rrd_graph.c:311: undefined reference to > `pow' > /usr/local/lib/librrd.a(rrd_graph.o)(.text+0xa03): In function `si_unit': > /usr/local/src/rrdtool-1.0.45/src/rrd_graph.c:353: undefined reference to > `pow' > /usr/local/lib/librrd.a(rrd_graph.o)(.text+0xaca): In function `si_unit': > /usr/include/bits/mathinline.h:445: undefined reference to `log' > /usr/local/lib/librrd.a(rrd_graph.o)(.text+0xae0):/usr/include/bits/mathi= nli > ne.h:445: undefined reference to `log' > /usr/local/lib/librrd.a(rrd_graph.o)(.text+0xbd8): In function > `expand_range': > /usr/include/bits/mathinline.h:445: undefined reference to `log10' > /usr/local/lib/librrd.a(rrd_graph.o)(.text+0xc5b):/usr/include/bits/mathi= nli > ne.h:504: undefined reference to `pow' > /usr/local/lib/librrd.a(rrd_graph.o)(.text+0xcc4):/usr/include/bits/mathi= nli > ne.h:504: undefined reference to `pow' > /usr/local/lib/librrd.a(rrd_graph.o)(.text+0xd79):/usr/include/bits/mathi= nli > ne.h:445: undefined reference to `log10' > /usr/local/lib/librrd.a(rrd_graph.o)(.text+0xdc8):/usr/include/bits/mathi= nli > ne.h:445: undefined reference to `pow' > /usr/local/lib/librrd.a(rrd_graph.o)(.text+0x2680): In function `data_cal= c': > /usr/local/src/rrdtool-1.0.45/src/rrd_graph.c:1064: undefined reference to > `sin' > /usr/local/lib/librrd.a(rrd_graph.o)(.text+0x2728):/usr/local/src/rrdtool= -1. > 0.45/src/rrd_graph.c:1072: undefined reference to `cos' > /usr/local/lib/librrd.a(rrd_graph.o)(.text+0x274d):/usr/local/src/rrdtool= -1. > 0.45/src/rrd_graph.c:1096: undefined reference to `log' > /usr/local/lib/librrd.a(rrd_graph.o)(.text+0x2772):/usr/local/src/rrdtool= -1. > 0.45/src/rrd_graph.c:1133: undefined reference to `exp' > /usr/local/lib/librrd.a(rrd_graph.o)(.text+0x4135): In function > `horizontal_grid': > /usr/include/bits/mathinline.h:445: undefined reference to `log10' > /usr/local/lib/librrd.a(rrd_graph.o)(.text+0x41ba):/usr/include/bits/math= inl > ine.h:493: undefined reference to `log10' > /usr/local/lib/librrd.a(rrd_graph.o)(.text+0x425c): In function > `horizontal_grid': > /usr/local/src/rrdtool-1.0.45/src/rrd_graph.c:1845: undefined reference to > `pow' > /usr/local/lib/librrd.a(rrd_graph.o)(.text+0x49aa): In function > `horizontal_mrtg_grid': > /usr/include/bits/mathinline.h:445: undefined reference to `log10' > /usr/local/lib/librrd.a(rrd_graph.o)(.text+0x4a2d):/usr/include/bits/math= inl > ine.h:504: undefined reference to `pow' > /usr/local/lib/librrd.a(rrd_graph.o)(.text+0x4a8a):/usr/include/bits/math= inl > ine.h:504: undefined reference to `pow' > /usr/local/lib/librrd.a(rrd_graph.o)(.text+0x4dc8): In function > `horizontal_log_grid': > /usr/local/src/rrdtool-1.0.45/src/rrd_graph.c:2011: undefined reference to > `log10' > /usr/local/lib/librrd.a(rrd_graph.o)(.text+0x4de4):/usr/local/src/rrdtool= -1. > 0.45/src/rrd_graph.c:2011: undefined reference to `log10' > /usr/local/lib/librrd.a(rrd_graph.o)(.text+0x4e79):/usr/local/src/rrdtool= -1. > 0.45/src/rrd_graph.c:2018: undefined reference to `log10' > /usr/local/lib/librrd.a(rrd_graph.o)(.text+0x4ff4):/usr/local/src/rrdtool= -1. > 0.45/src/rrd_graph.c:2040: undefined reference to `log10' > /usr/local/lib/librrd.a(rrd_graph.o)(.text+0x5010): In function > `horizontal_log_grid': > /usr/include/bits/mathinline.h:430: undefined reference to `log10' > /usr/local/lib/librrd.a(rrd_graph.o)(.text+0x5036):/usr/include/bits/math= inl > ine.h:430: more undefined references to `log10' follow > /usr/local/lib/librrd.a(rrd_graph.o)(.text+0x506e): In function > `horizontal_log_grid': > /usr/include/bits/mathinline.h:430: undefined reference to `pow' > /usr/local/lib/librrd.a(rrd_graph.o)(.text+0x5228): In function > `horizontal_log_grid': > /usr/local/src/rrdtool-1.0.45/src/rrd_graph.c:2061: undefined reference to > `log10' > /usr/local/lib/librrd.a(rrd_graph.o)(.text+0x5244): In function > `horizontal_log_grid': > /usr/include/bits/mathinline.h:430: undefined reference to `log10' > /usr/local/lib/librrd.a(rrd_graph.o)(.text+0x526a):/usr/include/bits/math= inl > ine.h:430: undefined reference to `log10' > /usr/local/lib/librrd.a(rrd_graph.o)(.text+0x52a2):/usr/include/bits/math= inl > ine.h:430: undefined reference to `pow' > /usr/local/lib/librrd.a(rrd_graph.o)(.text+0x554a): In function > `horizontal_log_grid': > /usr/local/src/rrdtool-1.0.45/src/rrd_graph.c:2021: undefined reference to > `log10' > /usr/local/lib/librrd.a(rrd_graph.o)(.text+0x5564):/usr/local/src/rrdtool= -1. > 0.45/src/rrd_graph.c:2021: undefined reference to `log10' > /usr/local/lib/librrd.a(pngrtran.o)(.text+0x119c): In function > `png_init_read_transformations': > /usr/local/src/rrdtool-1.0.45/libpng-1.0.9/pngrtran.c:879: undefined > reference to `pow' > /usr/local/lib/librrd.a(pngrtran.o)(.text+0x11ef):/usr/local/src/rrdtool-= 1.0 > .45/libpng-1.0.9/pngrtran.c:881: undefined reference to `pow' > /usr/local/lib/librrd.a(pngrtran.o)(.text+0x1239):/usr/local/src/rrdtool-= 1.0 > .45/libpng-1.0.9/pngrtran.c:883: undefined reference to `pow' > /usr/local/lib/librrd.a(pngrtran.o)(.text+0x128a):/usr/local/src/rrdtool-= 1.0 > .45/libpng-1.0.9/pngrtran.c:885: undefined reference to `pow' > /usr/local/lib/librrd.a(pngrtran.o)(.text+0x12db):/usr/local/src/rrdtool-= 1.0 > .45/libpng-1.0.9/pngrtran.c:887: undefined reference to `pow' > /usr/local/lib/librrd.a(pngrtran.o)(.text+0x1329):/usr/local/src/rrdtool-= 1.0 > .45/libpng-1.0.9/pngrtran.c:889: more undefined references to `pow' follow > collect2: ld returned 1 exit status > make[2]: *** [bwm_graph] Error 1 > make[2]: Leaving directory `/usr/local/src/bwm_tools-0.1.7/bwm_graph' > make[1]: *** [all] Error 2 > make[1]: Leaving directory `/usr/local/src/bwm_tools-0.1.7/bwm_graph' > make: *** [all] Error 2 >=20 --=20 Nigel Kukard (Chief Executive Officer) Lando Technologies Africa (Pty) Ltd ni...@la... www.lando.co.za Tel: 083 399 5822 Fax: 086 1100036 Hoheisen Park Bellville, Cape Town National Internet Service Provider The best language to use is the language that was designed for what you want to use it for - 1997 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D Disclaimer ---------- The contents of this message and any attachments are intended=20 solely for the addressee's use and may be legally privileged and/or=20 confidential information. This message may not be retained,=20 distributed, copied or used if you are not he addressee of this=20 message. If this message was sent to you in error, please notify=20 the sender immediately by reply e-mail and then destroy the message=20 and any copies thereof. Opinions, conclusions and other information in this message may be=20 personal to the sender and is not that of Lando Technologies Africa=20 or any of it's subsideries, associated companies or principals and=20 is therefore not endorsed by any of the Lando groups of companies.=20 Due to e-maill communication being insecure, Lando groups of=20 companies do not guarantee confidentiality, security, accuracy or =20 performance of the e-mail. Any liability for viruses is excluded=20 to the fullest extent. |