Does anyone know BMW tool - bwm_tools-0.3.0


 
Thread Tools Search this Thread
Special Forums UNIX and Linux Applications Does anyone know BMW tool - bwm_tools-0.3.0
# 1  
Old 09-14-2008
Does anyone know BMW tool - bwm_tools-0.3.0

Does anyone know BMW - bwm_tools-0.3.0 from "http://bwm-tools.pr.linuxrulz.org".
I have error on make installing on opensuse 11.0, see logs.

# make
make all-recursive
make[1]: Entering directory `/opt/bwm_tools-0.3.0'
Making all in lib
make[2]: Entering directory `/opt/bwm_tools-0.3.0/lib'
/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I../include -pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/libxml2 -DLOG_DIR=\"/var/bwm_tools\" -g -O2 -MT libbwm_la-xmlConf.lo -MD -MP -MF .deps/libbwm_la-xmlConf.Tpo -c -o libbwm_la-xmlConf.lo `test -f 'xmlConf.c' || echo './'`xmlConf.c
gcc -DHAVE_CONFIG_H -I. -I.. -I../include -pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/libxml2 -DLOG_DIR=\"/var/bwm_tools\" -g -O2 -MT libbwm_la-xmlConf.lo -MD -MP -MF .deps/libbwm_la-xmlConf.Tpo -c xmlConf.c -fPIC -DPIC -o .libs/libbwm_la-xmlConf.o
In file included from ../include/flow.h:30,
from ../include/autoclass.h:29,
from xmlConf.c:32:
/usr/include/linux/netfilter.h:40: error: expected specifier-qualifier-list before â__u32â
make[2]: *** [libbwm_la-xmlConf.lo] Error 1
make[2]: Leaving directory `/opt/bwm_tools-0.3.0/lib'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/opt/bwm_tools-0.3.0'
make: *** [all] Error 2
Login or Register to Ask a Question

Previous Thread | Next Thread

8 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

BMW GT1 DIS - SCO 5.0 and Oracle 7 Root HDD Clone - IBM T30

Greeting All Diag tool HDD clone SCO 5 + Oracle 7 DB ( IBM T30 ) I am new to this forum and my knowledge on computers OS is average . I have just acquired a factory diag tool for BMW/RR/MINI from a retired mechanic. Its runs on a IBM T30 laptop with a Unix/Oracle DB system. Sco 5... (8 Replies)
Discussion started by: bmw635
8 Replies

2. Cybersecurity

NeSSi2 Tool

Hi guys, I am working on designing a security system. I need a simulation tool that I can use to generate packets, testing the performance of my firewall, and get results. I already wrote the required coding using C++ language. I found many general network simulation tools such as OPNet... (0 Replies)
Discussion started by: PhD Student
0 Replies

3. UNIX for Dummies Questions & Answers

Chronicle tool

Hi all, Any one know about the chronicle tool. I came to know which is a scheduler tool. If u know any links regarding this please let me know. Regards Saravan (3 Replies)
Discussion started by: saravanakumar
3 Replies

4. Solaris

sar tool

Hi All, I have come through this very nice tool which stores the week performance stats in solaris, but its only stores the stats for 8 in the morning to 5 in the evening. i want to extend the facility to work 24 hrs . Does anyone know how to do that? Thanks in advance (1 Reply)
Discussion started by: azs0309
1 Replies

5. AIX

Nmon tool

Hi All, I have a p550 server with 4 proc. But when i run nmon analyzer in cpu_sum it show 5 processors cpu0 cpu1 cpu2 cpu3 cpu4. Why it is showing 5 processors. (6 Replies)
Discussion started by: vjm
6 Replies

6. What is on Your Mind?

Lexus GX470 vs. BMW X5 3.0i

Hi, I hope I could make a thread that talks about SUVs. If not, you could delete this thread. Anyway, I'm trying to pick a SUV for my dad and sister. My dad likes Lexus GX470 and my sister likes BMW X5 3.0i. They asked me which one is better, good or popular the GX470 or the X5 3.0i. They don't... (4 Replies)
Discussion started by: royal
4 Replies

7. Solaris

Tool top

Hi @all, I have some SUN boxes running. Now I'm looking for the tool "top". Where can I find it? As I could see it is not installed on sys boxes. Thanx and regards daemon (2 Replies)
Discussion started by: daemon
2 Replies

8. Shell Programming and Scripting

Script tool

Hello, I am new to korn shell scripting and I would appreciated if someone can help me get started with the following: I have a text(registry) file which looks like: 1 SOFTWARE 0 4 Clusters 0 0 Application Server ... (4 Replies)
Discussion started by: yotoruja
4 Replies
Login or Register to Ask a Question
Test::Valgrind::Tool(3pm)				User Contributed Perl Documentation				 Test::Valgrind::Tool(3pm)

NAME
Test::Valgrind::Tool - Base class for Test::Valgrind tools. VERSION
Version 1.13 DESCRIPTION
This class is the base for Test::Valgrind tools. They wrap around "valgrind" tools by parsing its output and sending reports to the parent session whenever an error occurs. They are expected to function both in suppressions generation and in analysis mode. METHODS
"requires_version" The minimum "valgrind" version needed to run this tool. Defaults to 3.1.0. "new tool => $tool" Creates a new tool object of type $tool by requiring and redispatching the method call to the module named $tool if it contains '::' or to "Test::Valgrind::Tool::$tool" otherwise. The class represented by $tool must inherit this class. "new_trainer" Creates a new tool object suitable for generating suppressions. Defaults to return "undef", which skips suppression generation. "parser_class $session" Returns the class from which the parser for this tool output will be instanciated. This method must be implemented when subclassing. "report_class $session" Returns the class in which suppression reports generated by this tool will be blessed. This method must be implemented when subclassing. "args $session" Returns the list of tool-specific arguments that are to be passed to "valgrind". All the suppression arguments are already handled by the session. Defaults to the empty list. "suppressions_tag $session" Returns a identifier that will be used to pick up the right suppressions for running the tool, or "undef" to indicate that no special suppressions are needed. This method must be implemented when subclassing. "start $session" Called when the $session starts. Defaults to set "started" in Test::Valgrind::Component. "filter $session, $report" The $session calls this method after receiving a report from the parser and before letting the command filter it. You can either return a mangled $report (which does not need to be a clone of the original) or "undef" if you want the action to ignore it completely. Defaults to the identity function. "finish $session" Called when the $session finishes. Defaults to clear "started" in Test::Valgrind::Component. SEE ALSO
Test::Valgrind, Test::Valgrind::Component, Test::Valgrind::Session. AUTHOR
Vincent Pit, "<perl at profvince.com>", <http://www.profvince.com>. You can contact me by mail or on "irc.perl.org" (vincent). BUGS
Please report any bugs or feature requests to "bug-test-valgrind at rt.cpan.org", or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Test-Valgrind <http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Test-Valgrind>. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes. SUPPORT
You can find documentation for this module with the perldoc command. perldoc Test::Valgrind::Tool COPYRIGHT &; LICENSE Copyright 2009,2010,2011 Vincent Pit, all rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. perl v5.12.4 2011-08-25 Test::Valgrind::Tool(3pm)