Hello,
I'm one of the maintainers of kde3 overlay for gentoo, and I am for
some time thinking about providing 3.5.11 in our overlay. But what
worries me is that I can't find any suitable tarball for our use. Is
there really only a single 650MB tarball? We'd like some smaller
packages, one for each piece would be great. Is this possible or do we
need to create them ourselves?
Thanks,
Regards Ladislav Laska
S pozdravem Ladislav Laska
---
xmpp/jabber: ladislav.laska(a)jabber.cz
I haven't yet tried to build kdeadmin, but I ran across this patch while walking down the Chakra patches. I figured I had better submit an updated patch or I'll forget.
The patch updates the networkconf perl backend for Slackware.
See attached.
Darrell
Here's the latest scoop.
I can build tqtinterface and arts without a hitch. Building kdelibs fails. Therefore I haven't yet tested building kdebase.
As of svn 1170747 I could build kdelibs.
The first error message I received:
kservicegroup.cpp:76: error: 'QDir' has not been declared
I guessed and added the following to kservicegroup.cpp:
#include <tqdir.h>
That stopped that error message . :) So kservicegroup.cpp needs to be patched.
The next set of error messages I encountered:
kurlbar.cpp:611: error: 'KIO' has not been declared
kurlbar.cpp:611: error: expected `;' before 'uds'
kurlbar.cpp:613: error: 'KIO' has not been declared
kurlbar.cpp:613: error: 'uds' was not declared in this scope
I'm attaching a log of the failed kdelibs build.
Darrell
> OK, same error, so I guess the -j4 flag was not the
> culprit.
>
> I'll look further into it as I have time.
I tweaked my virtual machine and tried again to build kdebase. Attached is a log.
I did not use any -j process flags. Here are the header includes in my local menutab_impl.h:
==========================================
#ifndef __menutab_impl_h__
#define __menutab_impl_h__
#include <stdlib.h>
#include <tqlistview.h>
#include <kpushbutton.h>
#include "menutab.h"
==========================================
As the last recommended change was to add include '<stdlib.h>' to menutab_impl.h, hopefully the build failing with an error in menutab_impl.cpp is easy to solve. The best I can gather is that MenuTab::connect hasn't been defined, but I don't know how to repair.
I disabled the -j4 flag.
I don't understand why the -j4 flag works with Slackware and the stock 3.5.10 but not Trinity. Compiling KDE is slow enough already. :(
I tried again and the build failed. This time without the -j4 flag the failure message referred to menutab_impl.cpp.
Attached is a log.
Hello,
There is initial work for arts cmake script. Now arts is compilable, but for
the moment is no support for ALSA, VORBIS etc.
Problems:
1) In mcoputils.cc must be inserted #include <limits.h>
2) ALSA support refuse to compile, because this error:
[ 68%] Building CXX object flow/CMakeFiles/artsflow.dir/audioioalsa9.cc.o
/home/serghei/projects/trinity/dependencies/arts/flow/audioioalsa9.cc: In
member function 'int Arts::AudioIOALSA::setPcmParams(snd_pcm_t*)':
/home/serghei/projects/trinity/dependencies/arts/flow/audioioalsa9.cc:543:
error: invalid conversion from 'int' to 'unsigned int*'
/home/serghei/projects/trinity/dependencies/arts/flow/audioioalsa9.cc:543:
error: initializing argument 3 of 'int
snd_pcm_hw_params_set_rate_near(snd_pcm_t*, snd_pcm_hw_params_t*, unsigned
int*, int*)'
/home/serghei/projects/trinity/dependencies/arts/flow/audioioalsa9.cc:565:
error: invalid conversion from 'int' to 'snd_pcm_uframes_t*'
/home/serghei/projects/trinity/dependencies/arts/flow/audioioalsa9.cc:565:
error: initializing argument 3 of 'int
snd_pcm_hw_params_set_period_size_near(snd_pcm_t*, snd_pcm_hw_params_t*,
snd_pcm_uframes_t*, int*)'
/home/serghei/projects/trinity/dependencies/arts/flow/audioioalsa9.cc:570:
error: invalid conversion from 'int' to 'unsigned int*'
/home/serghei/projects/trinity/dependencies/arts/flow/audioioalsa9.cc:570:
error: initializing argument 3 of 'int
snd_pcm_hw_params_set_periods_near(snd_pcm_t*, snd_pcm_hw_params_t*, unsigned
int*, int*)'
make[2]: *** [flow/CMakeFiles/artsflow.dir/audioioalsa9.cc.o] Error 1
make[1]: *** [flow/CMakeFiles/artsflow.dir/all] Error 2
make: *** [all] Error 2
If anybody knows how to fix it, please tell me.
--
Serghei
> Try adding #include <stdlib.h> directly above the
> previous added #include
> statement.
Same exact failure. Seems there is something wrong with main.cpp.