LinuxQuestions.org
Review your favorite Linux distribution.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question? If it is not in the man pages or the how-to's this is the place!

Notices


Reply
  Search this Thread
Old 12-09-2003, 02:05 AM   #1
pati
LQ Newbie
 
Registered: Dec 2003
Location: Melbourne
Distribution: SuSE 8.2
Posts: 3

Rep: Reputation: 0
Question Superkaramba make


Well, I'm trying to install Superkaramba out of sources. After a bit of hassles I managed to get through ./configure, but make command brings some more, even more ricidululous errors. Have a look:
Quote:
make all-recursive make[1]: Entering directory `/home/patryk/superkaramba-0.33' Making all in doc make[2]: Entering directory `/home/patryk/superkaramba-0.33/doc' Making all in . make[3]: Entering directory `/home/patryk/superkaramba-0.33/doc' make[3]: Nothing to be done for `all-am'. make[3]: Leaving directory `/home/patryk/superkaramba-0.33/doc' Making all in en make[3]: Entering directory `/home/patryk/superkaramba-0.33/doc/en' make[3]: Circular index.cache.bz2 <- index.cache.bz2 dependency dropped. make[3]: Nothing to be done for `all'. make[3]: Leaving directory `/home/patryk/superkaramba-0.33/doc/en' make[2]: Leaving directory `/home/patryk/superkaramba-0.33/doc' Making all in po make[2]: Entering directory `/home/patryk/superkaramba-0.33/po' make[2]: Nothing to be done for `all'. make[2]: Leaving directory `/home/patryk/superkaramba-0.33/po' Making all in src make[2]: Entering directory `/home/patryk/superkaramba-0.33/src' make[3]: Entering directory `/home/patryk/superkaramba-0.33/src' if g++ -DHAVE_CONFIG_H -I. -I. -I.. -I/opt/kde3/include -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 ".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:22: karamba.h:5:20: Python.h: No such file or directory In file included from karamba.h:57, from main.cpp:22: 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:22: karamba.h:5:20: Python.h: No such file or directory In file included from main.cpp:22: karamba.h:188: error: syntax error before `*' token karamba.h:189: error: syntax error before `*' token main.cpp:39: error: syntax error before `*' token main.cpp: In function `int main(int, char**)': main.cpp:81: error: `Py_Initialize' undeclared (first use this function) main.cpp:81: error: (Each undeclared identifier is reported only once for each function it appears in.) main.cpp:84: error: `PyEval_InitThreads' undeclared (first use this function) main.cpp:86: error: `mainThreadState' undeclared (first use this function) main.cpp:89: error: `PyThreadState_Get' undeclared (first use this function) main.cpp:92: error: `PyEval_ReleaseLock' undeclared (first use this function) main.cpp:122: error: `PyInterpreterState' undeclared (first use this function) main.cpp:122: error: `mainInterpreterState' undeclared (first use this function) main.cpp:124: error: `PyThreadState' undeclared (first use this function) main.cpp:124: error: `myThreadState' undeclared (first use this function) main.cpp:124: error: `PyThreadState_New' undeclared (first use this function) main.cpp:125: error: `PyThreadState_Swap' undeclared (first use this function) main.cpp:126: error: `PyEval_AcquireLock' undeclared (first use this function) main.cpp:127: error: `Py_Finalize' undeclared (first use this function) make[3]: *** [main.o] Error 1 make[3]: Leaving directory `/home/patryk/superkaramba-0.33/src' make[2]: *** [all-recursive] Error 1 make[2]: Leaving directory `/home/patryk/superkaramba-0.33/src' make[1]: *** [all-recursive] Error 1 make[1]: Leaving directory `/home/patryk/superkaramba-0.33' make: *** [all] Error 2
Then again - I have all components of Python, its bindings and all stuff that even had Python in name or description, what effects with:
Quote:
python: /usr/bin/python /usr/bin/python2.1 /usr/bin/python2.2 /usr/lib/python /usr/lib/python2.1 /usr/lib/python2.2 /usr/include/python /usr/include/python2.1 /usr/include/python2.2 /usr/share/man/man1/python.1.gz
Thanks a lot for any help, because this just to much for a newbie
 
Old 12-09-2003, 07:27 AM   #2
hw-tph
Senior Member
 
Registered: Sep 2003
Location: Sweden
Distribution: Debian
Posts: 3,032

Rep: Reputation: 58
Do you have the python development packages installed? I believe they should be called python-VERSION-devel or something to that effect.

Håkan
 
Old 12-09-2003, 12:17 PM   #3
GrapeApe
Member
 
Registered: Nov 2003
Distribution: Mandrake 9.2
Posts: 57

Rep: Reputation: 15
if i remember correctly i had a similar issue when compiling superkaramba and the python devel package cleared it right up.
 
Old 12-09-2003, 02:42 PM   #4
pati
LQ Newbie
 
Registered: Dec 2003
Location: Melbourne
Distribution: SuSE 8.2
Posts: 3

Original Poster
Rep: Reputation: 0
My YaST states, that i have python-devel v2.2.2-82 rpm package installed. I was wondering if installing it from sources would be of any help, or maybe a newer version of the rpm?
 
Old 12-09-2003, 03:31 PM   #5
pati
LQ Newbie
 
Registered: Dec 2003
Location: Melbourne
Distribution: SuSE 8.2
Posts: 3

Original Poster
Rep: Reputation: 0
Well, I upgraded python-devel package, and it seems to compile alright. Thanks a lot guys, because it has been giving me some problems. Thank you once again.
 
  


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
superkaramba make error PLEASE HELP!! Coldfire1162 Linux - Software 2 08-07-2005 12:23 PM
SuperKaramba error when I try to make it... Slackeriz Slackware 5 04-15-2005 03:02 PM
Cannot get passed 'make' for Superkaramba xstealthrtx Linux - Newbie 11 11-29-2004 05:35 AM
Problem "make" Superkaramba CVS Snapshot 0.35 motioNman Linux - Software 1 09-28-2004 11:21 AM
make crashed on superkaramba chrislee8 Linux - Software 5 08-12-2004 11:34 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

All times are GMT -5. The time now is 11:44 PM.

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