LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Newbie (https://www.linuxquestions.org/questions/linux-newbie-8/)
-   -   Superkaramba on FC3 problems (https://www.linuxquestions.org/questions/linux-newbie-8/superkaramba-on-fc3-problems-296997/)

djljjm 03-02-2005 10:54 PM

Superkaramba on FC3 problems
 
I am trying to install superkaramba and I am getting the following error after doing the "make"

make all-recursive
make[1]: Entering directory `/home/jrubenol/superkaramba-0.35'
Making all in doc
make[2]: Entering directory `/home/jrubenol/superkaramba-0.35/doc'
Making all in .
make[3]: Entering directory `/home/jrubenol/superkaramba-0.35/doc'
make[3]: Nothing to be done for `all-am'.
make[3]: Leaving directory `/home/jrubenol/superkaramba-0.35/doc'
Making all in en
make[3]: Entering directory `/home/jrubenol/superkaramba-0.35/doc/en'
make[3]: Nothing to be done for `all'.
make[3]: Leaving directory `/home/jrubenol/superkaramba-0.35/doc/en'
make[2]: Leaving directory `/home/jrubenol/superkaramba-0.35/doc'
Making all in po
make[2]: Entering directory `/home/jrubenol/superkaramba-0.35/po'
make[2]: Nothing to be done for `all'.
make[2]: Leaving directory `/home/jrubenol/superkaramba-0.35/po'
Making all in src
make[2]: Entering directory `/home/jrubenol/superkaramba-0.35/src'
make[3]: Entering directory `/home/jrubenol/superkaramba-0.35/src'
if g++ -DHAVE_CONFIG_H -I. -I. -I.. -I/usr/include/kde -I/usr/lib/qt-3.3/include -I/usr/X11R6/include -I/usr/include/python2.3 -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 meter_python.o -MD -MP -MF ".deps/meter_python.Tpo" \
-c -o meter_python.o `test -f 'meter_python.cpp' || echo './'`meter_python.cpp; \
then mv -f ".deps/meter_python.Tpo" ".deps/meter_python.Po"; \
else rm -f ".deps/meter_python.Tpo"; exit 1; \
fi
cc1plus: warning: command line option "-Wmissing-prototypes" is valid for Ada/C/ObjC but not for C++
In file included from /usr/include/python2.3/Python.h:8,
from meter_python.h:14,
from meter_python.cpp:11:
/usr/include/python2.3/pyconfig.h:862:1: warning: "_XOPEN_SOURCE" redefined
<command line>:5:1: warning: this is the location of the previous definition
if g++ -DHAVE_CONFIG_H -I. -I. -I.. -I/usr/include/kde -I/usr/lib/qt-3.3/include -I/usr/X11R6/include -I/usr/include/python2.3 -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 textlabel_python.o -MD -MP -MF ".deps/textlabel_python.Tpo" \
-c -o textlabel_python.o `test -f 'textlabel_python.cpp' || echo './'`textlabel_python.cpp; \
then mv -f ".deps/textlabel_python.Tpo" ".deps/textlabel_python.Po"; \
else rm -f ".deps/textlabel_python.Tpo"; exit 1; \
fi
cc1plus: warning: command line option "-Wmissing-prototypes" is valid for Ada/C/ObjC but not for C++
In file included from /usr/include/python2.3/Python.h:8,
from textlabel_python.h:28,
from textlabel_python.cpp:25:
/usr/include/python2.3/pyconfig.h:862:1: warning: "_XOPEN_SOURCE" redefined
<command line>:5:1: warning: this is the location of the previous definition
if g++ -DHAVE_CONFIG_H -I. -I. -I.. -I/usr/include/kde -I/usr/lib/qt-3.3/include -I/usr/X11R6/include -I/usr/include/python2.3 -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 richtextlabel_python.o -MD -MP -MF ".deps/richtextlabel_python.Tpo" \
-c -o richtextlabel_python.o `test -f 'richtextlabel_python.cpp' || echo './'`richtextlabel_python.cpp; \
then mv -f ".deps/richtextlabel_python.Tpo" ".deps/richtextlabel_python.Po"; \
else rm -f ".deps/richtextlabel_python.Tpo"; exit 1; \
fi
cc1plus: warning: command line option "-Wmissing-prototypes" is valid for Ada/C/ObjC but not for C++

the error just keeps repeating itself

Any suggestions would help, I am using KDE for the first time, usually I use GNOME but I like this whole Karamba thing so I am seeing if it is worth the switch. THANKS



djljjm

audibel 03-02-2005 11:05 PM

Are you saying that it didn't work? Because that is a warning not an error... All you should have to do is make install and it should be raring to go.

Warnings do not constitute errors in compilation, they are just head-ups for the most part.

If it doesn't compile correctly than their should be an actual "error" message, and not a warning, if so, what is it?

BajaNick 03-02-2005 11:05 PM

This may be a longshot but do you have the most current development packages installed and are you logged in as root when you do make? if so exit to a user and try it, It does look like just warnings not really errors so just fire it up and try it. :)

djljjm 03-02-2005 11:37 PM

Not sure what I'm doing...
 
I don't know if it is installed or not...how do I actually run the program? I don't think it did but I'm not sure exactly how I can check if it is installed (I am really really new with this KDE and superkaramba)


djljjm

audibel 03-03-2005 07:00 AM

Compiling from source is a different animal than using packages... If you did a ./configure, and a make... then the last step is a make install. If you didn't do a make install then it is not installed. If you did, go to the /usr/share/bin directory and you should see a whole bunch of programs name ml*... Then follow my steps as listed above. Use a su term to run the program /usr/share/bin/mldonkey and then switch to the user and run /usr/share/bin/mldonkey_gui


All times are GMT -5. The time now is 10:37 PM.