LinuxQuestions.org
Welcome to the most active Linux Forum on the web.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Software
User Name
Password
Linux - Software This forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum.

Notices


Reply
  Search this Thread
Old 08-19-2004, 05:17 PM   #1
Kramer
Member
 
Registered: Aug 2003
Location: Somewhere south of sanity...
Distribution: Mandrake 9.1
Posts: 550

Rep: Reputation: 30
Superkaramba 0.34 build errors


I am trying to compile Superkaramba 0.34 on Mdk 10. I get through the ./configure part fine, but during 'make' things start to go awry. I get a ton of error messages at the end of the 'make' that I can post momentarily. Hopefully someone can help me out with these.
 
Old 08-19-2004, 05:20 PM   #2
Kramer
Member
 
Registered: Aug 2003
Location: Somewhere south of sanity...
Distribution: Mandrake 9.1
Posts: 550

Original Poster
Rep: Reputation: 30
Here is the output from 'make':
Quote:
make all-recursive
make[1]: Entering directory `/home/matthew/superkaramba-0.34'
Making all in doc
make[2]: Entering directory `/home/matthew/superkaramba-0.34/doc'
Making all in .
make[3]: Entering directory `/home/matthew/superkaramba-0.34/doc'
make[3]: Nothing to be done for `all-am'.
make[3]: Leaving directory `/home/matthew/superkaramba-0.34/doc'
Making all in en
make[3]: Entering directory `/home/matthew/superkaramba-0.34/doc/en'
/usr/bin/meinproc --check --cache index.cache.bz2 ./index.docbook
make[3]: Leaving directory `/home/matthew/superkaramba-0.34/doc/en'
make[2]: Leaving directory `/home/matthew/superkaramba-0.34/doc'
Making all in po
make[2]: Entering directory `/home/matthew/superkaramba-0.34/po'
make[2]: Nothing to be done for `all'.
make[2]: Leaving directory `/home/matthew/superkaramba-0.34/po'
Making all in src
make[2]: Entering directory `/home/matthew/superkaramba-0.34/src'
make[3]: Entering directory `/home/matthew/superkaramba-0.34/src'
if g++ -DHAVE_CONFIG_H -I. -I. -I.. -I/usr/lib/qt3//include -I/usr/X11R6/include -DQT_THREAD_SUPPORT -D_REENTRANT -Wnon-virtual-dtor -Wno-long-long -Wundef -pedantic -W -Wpointer-arith -Wmissing-prototypes -ansi -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -Wcast-align -Wconversion -O2 -fno-exceptions -fno-check-new -MT main.o -MD -MP -MF ".deps/main.Tpo" \
-c -o main.o `test -f 'main.cpp' || echo './'`main.cpp; \
then mv -f ".deps/main.Tpo" ".deps/main.Po"; \
else rm -f ".deps/main.Tpo"; exit 1; \
fi
main.cpp:6:20: Python.h: No such file or directory
In file included from main.cpp:24:
karamba.h:5:20: Python.h: No such file or directory
In file included from karamba.h:57,
from main.cpp:24:
imagelabel.h:12:20: Python.h: No such file or directory
In file included from imagelabel.h:24,
from karamba.h:57,
from main.cpp:24:
karamba.h:5:20: Python.h: No such file or directory
In file included from main.cpp:24:
karamba.h:191: error: syntax error before `*' token
karamba.h:192: error: syntax error before `*' token
main.cpp:44: error: syntax error before `*' token
main.cpp: In function `int main(int, char**)':
main.cpp:100: error: `Py_Initialize' undeclared (first use this function)
main.cpp:100: error: (Each undeclared identifier is reported only once for each function it appears in.)
main.cpp:103: error: `PyEval_InitThreads' undeclared (first use this function)
main.cpp:105: error: `mainThreadState' undeclared (first use this function)
main.cpp:108: error: `PyThreadState_Get' undeclared (first use this function)
main.cpp:111: error: `PyEval_ReleaseLock' undeclared (first use this function)
main.cpp:141: error: `PyInterpreterState' undeclared (first use this function)
main.cpp:141: error: `mainInterpreterState' undeclared (first use this function)
main.cpp:143: error: `PyThreadState' undeclared (first use this function)
main.cpp:143: error: `myThreadState' undeclared (first use this function)
main.cpp:143: error: `PyThreadState_New' undeclared (first use this function)
main.cpp:144: error: `PyThreadState_Swap' undeclared (first use this function)
main.cpp:145: error: `PyEval_AcquireLock' undeclared (first use this function)
main.cpp:146: error: `Py_Finalize' undeclared (first use this function)
make[3]: *** [main.o] Error 1
make[3]: Leaving directory `/home/matthew/superkaramba-0.34/src'
make[2]: *** [all-recursive] Error 1
make[2]: Leaving directory `/home/matthew/superkaramba-0.34/src'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/home/matthew/superkaramba-0.34'
make: *** [all] Error 2
Has anyone else got Superkaramba working with the 0.34?
 
Old 08-19-2004, 05:22 PM   #3
r_jensen11
Senior Member
 
Registered: Apr 2003
Location: Minnesota, USA
Distribution: Slack 10.0 w/2.4.26
Posts: 1,032

Rep: Reputation: 45
Do you have Python installed? It seems to be asking for that.
 
Old 08-19-2004, 05:23 PM   #4
Kramer
Member
 
Registered: Aug 2003
Location: Somewhere south of sanity...
Distribution: Mandrake 9.1
Posts: 550

Original Poster
Rep: Reputation: 30
Ive done 'urpmi python' in the terminal, and it tells me everything is installed already. Is there anyway to check?
 
Old 08-19-2004, 09:07 PM   #5
Kramer
Member
 
Registered: Aug 2003
Location: Somewhere south of sanity...
Distribution: Mandrake 9.1
Posts: 550

Original Poster
Rep: Reputation: 30
Ok, installed the python libraries, and I go thought the proper channels, and it builds correctly. When I try to run 'superkaramba' it tells me 'command not found' "confused:
 
Old 08-19-2004, 09:09 PM   #6
Kramer
Member
 
Registered: Aug 2003
Location: Somewhere south of sanity...
Distribution: Mandrake 9.1
Posts: 550

Original Poster
Rep: Reputation: 30
Duh, it usually helps if you point at the right executable. I got it now
 
Old 09-11-2004, 12:28 AM   #7
arsongt
LQ Newbie
 
Registered: Oct 2003
Posts: 11

Rep: Reputation: 0
Angry i get this problem

cd . && /bin/sh /home/arson/DLed/Superkaramba/superkaramba-0.34/admin/missing --run autoconf
Can't locate object method "path" via package "Request" at /usr/share/autoconf/Autom4te/C4che.pm line 69, <GEN1> line 111.
make: *** [configure] Error 1

as far as I can remember i intalled all the packages that said autoconf. I'm stumped
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Skencil build errors drewblay Linux - Software 3 04-15-2005 05:32 AM
Trying to install Superkaramba getting errors chevy2410 Linux - Software 5 01-30-2005 10:30 PM
errors running weather under superkaramba Veteq Mandriva 2 11-10-2004 10:58 PM
Installing SuperKaramba errors in Mandrake 10 coopns Linux - Newbie 5 06-28-2004 03:28 AM
Build Errors. sethgeekx86 Slackware 3 04-01-2004 06:47 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Software

All times are GMT -5. The time now is 08:16 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration