This forum has been archived. All content is frozen. Please use KDE Discuss instead.

2.1.1 build errors

Tags: None
(comma "," separated)
imported4-lukas
Registered Member
Posts
29
Karma
0

2.1.1 build errors

Wed Mar 07, 2007 12:36 am
trying to compile
Code: Select all
galadriel:/usr/src/packages/BUILD/ktorrent-2.1.1 # make && make install
WARNING: use unsermake instead of make or use a wrapper script, e.g. makeobj!!!
/home/joris/ktorrent/unsermake/unsermake all
make: /home/joris/ktorrent/unsermake/unsermake: Command not found
make: *** [all] Error 127


so I removed wrong path from Makefile and I get this

Code: Select all
WARNING: use unsermake instead of make or use a wrapper script, e.g. makeobj!!!
unsermake all
ERROR:libktorrent/Makefile.am: unknown source extension .ui for libktorrent.la
ERROR:libktorrent/Makefile.am: unknown source extension .kcfgc for libktorrent.la
ERROR:plugins/search/Makefile.am: unknown source extension .ui for ktsearchplugin.la
ERROR:plugins/search/Makefile.am: unknown source extension .ui for ktsearchplugin.la
ERROR:plugins/search/Makefile.am: unknown source extension .kcfgc for ktsearchplugin.la
ERROR:plugins/search/Makefile.am: unknown source extension .ui for ktsearchplugin.la
ERROR:plugins/infowidget/Makefile.am: unknown source extension .ui for ktinfowidgetplugin.la
ERROR:plugins/infowidget/Makefile.am: unknown source extension .kcfgc for ktinfowidgetplugin.la
ERROR:plugins/infowidget/Makefile.am: unknown source extension .ui for ktinfowidgetplugin.la
ERROR:plugins/infowidget/Makefile.am: unknown source extension .ui for ktinfowidgetplugin.la
ERROR:plugins/infowidget/Makefile.am: unknown source extension .ui for ktinfowidgetplugin.la
ERROR:plugins/ipfilter/Makefile.am: unknown source extension .ui for ktipfilterplugin.la
ERROR:plugins/ipfilter/Makefile.am: unknown source extension .kcfgc for ktipfilterplugin.la
ERROR:plugins/ipfilter/Makefile.am: unknown source extension .ui for ktipfilterplugin.la
ERROR:plugins/logviewer/Makefile.am: unknown source extension .ui for ktlogviewerplugin.la
ERROR:plugins/logviewer/Makefile.am: unknown source extension .kcfgc for ktlogviewerplugin.la
ERROR:plugins/upnp/Makefile.am: unknown source extension .ui for ktupnpplugin.la
ERROR:plugins/upnp/Makefile.am: unknown source extension .kcfgc for ktupnpplugin.la
ERROR:plugins/partfileimport/Makefile.am: unknown source extension .ui for ktpartfileimportplugin.la
ERROR:plugins/scheduler/Makefile.am: unknown source extension .kcfgc for ktschedulerplugin.la
ERROR:plugins/scheduler/Makefile.am: unknown source extension .ui for ktschedulerplugin.la
ERROR:plugins/scheduler/Makefile.am: unknown source extension .ui for ktschedulerplugin.la
ERROR:plugins/scanfolder/Makefile.am: unknown source extension .kcfgc for ktscanfolderplugin.la
ERROR:plugins/scanfolder/Makefile.am: unknown source extension .ui for ktscanfolderplugin.la
ERROR:plugins/rssfeed/Makefile.am: unknown source extension .ui for ktrssfeedplugin.la
ERROR:plugins/webinterface/Makefile.am: unknown source extension .ui for ktwebinterfaceplugin.la
ERROR:plugins/webinterface/Makefile.am: unknown source extension .kcfgc for ktwebinterfaceplugin.la
ERROR:apps/ktorrent/Makefile.am: unknown source extension .skel for ktorrent
ERROR:apps/ktorrent/Makefile.am: unknown source extension .ui for ktorrent
ERROR:apps/ktorrent/Makefile.am: unknown source extension .ui for ktorrent
ERROR:apps/ktorrent/Makefile.am: unknown source extension .ui for ktorrent
ERROR:apps/ktorrent/Makefile.am: unknown source extension .ui for ktorrent
ERROR:apps/ktorrent/Makefile.am: unknown source extension .ui for ktorrent
ERROR:apps/ktorrent/Makefile.am: unknown source extension .ui for ktorrent
ERROR:apps/ktorrent/Makefile.am: unknown source extension .ui for ktorrent
ERROR:apps/ktorrent/Makefile.am: unknown source extension .ui for ktorrent
ERROR:apps/ktorrent/Makefile.am: unknown source extension .ui for ktorrent
ERROR:apps/ktorrent/Makefile.am: unknown source extension .ui for ktorrent
ERROR:apps/ktupnptest/Makefile.am: unknown source extension .ui for ktupnptest
make: *** [all] Error 1


what is wrong? I can't recover it
cashion
Registered Member
Posts
10
Karma
0

Wed Mar 07, 2007 5:21 am
trying to compile
Code:

galadriel:/usr/src/packages/BUILD/ktorrent-2.1.1 # make && make install
WARNING: use unsermake instead of make or use a wrapper script, e.g. makeobj!!!
/home/joris/ktorrent/unsermake/unsermake all
make: /home/joris/ktorrent/unsermake/unsermake: Command not found
make: *** [all] Error 127



Same issue here..
imported4-lukas
Registered Member
Posts
29
Karma
0

Wed Mar 07, 2007 7:30 am
it's compilling now, just remove incorrect paths to unsermake from Makefile.am
cruicent
Registered Member
Posts
24
Karma
0

Wed Mar 07, 2007 10:09 am
Im getting this error, my Makefile.am contains:
Code: Select all
SUBDIRS = translations libktorrent plugins apps scripts

# $(UTESTS_DIR)

EXTRA_DIST = AUTHORS COPYING ChangeLog INSTALL README TODO

messages: rc.cpp
   $(EXTRACTRC) `find . -name "*.rc" -o -name "*.ui" -o -name "*.kcfg"` > rc.cpp
   LIST=`find . -name \*.h -o -name \*.hh -o -name \*.H -o -name \*.hxx -o -name \*.hpp -o -name \*.cpp -o -name \*.cc -o -name *.cxx -o -name \*.ecpp -o -name \*.C`; \
   if test -n "$$LIST"; then \
      $(XGETTEXT) $$LIST -o $(podir)/ktorrent.pot; \
   fi
   rm -f rc.cpp


What would I change?
EDIT: nevermind, newer svn doesnt have this problem
George
Moderator
Posts
5421
Karma
1

Wed Mar 07, 2007 6:49 pm
I have updated the package on the website, it should compile now with automake.
wodenickel
Registered Member
Posts
2
Karma
0
Just take out the path in the Makefile, not the .am - or fetch the fresh version per the other post...

FYI - I completed my compile/make before that post and it all worked fine...

enjoy!!
Mark

cruicent wrote:Im getting this error, my Makefile.am contains:
Code: Select all
SUBDIRS = translations libktorrent plugins apps scripts

# $(UTESTS_DIR)

EXTRA_DIST = AUTHORS COPYING ChangeLog INSTALL README TODO

messages: rc.cpp
   $(EXTRACTRC) `find . -name "*.rc" -o -name "*.ui" -o -name "*.kcfg"` > rc.cpp
   LIST=`find . -name \*.h -o -name \*.hh -o -name \*.H -o -name \*.hxx -o -name \*.hpp -o -name \*.cpp -o -name \*.cc -o -name *.cxx -o -name \*.ecpp -o -name \*.C`; \
   if test -n "$$LIST"; then \
      $(XGETTEXT) $$LIST -o $(podir)/ktorrent.pot; \
   fi
   rm -f rc.cpp


What would I change?
EDIT: nevermind, newer svn doesnt have this problem


Bookmarks



Who is online

Registered users: Bing [Bot], Google [Bot], Yahoo [Bot]