I'm seeing this message in my xsession log. The message occurs during the session shutdown.
Watching the log through tail, the message occurs after selecting any logout option. I believe the error is caused by the "Saving your sessions" dialog. I enabled logout confirmation and the error does not appear until after I confirm the logout, which is when the "Saving your sessions" dialog appears.
The message itself is in TQt3 qabstractlayout.cpp:609:
qWarning( "TQLayout \"%s\" added to %s \"%s\", which already has a"
" layout", TQObject::name(), parent->className(),
parent->name() );
Any ideas what to look for in the code and how to resolve?
Darrell
Tim, all,
In the arch qt3 build, there was a sed statement to include qglobal.h in qtimer.h:
# missing include "qglobal.h" in include/qtimer.h fix
sed -ie 's/define QTIMER_H/&\n#include "qglobal.h"/g'
"$pkgdir$_prefix/include/qtimer.h"
Is that needed for ntqtimer.h?
--
David C. Rankin, J.D.,P.E.
Tim,
If you already know this then never mind, but I needed to patch tdelibs and tdebase against today's GIT updates for some remaining tde-config renaming. The patches are here:
http://humanreadable.nfshost.com/trinity/patches/tdebase
Also two additional patches to build tdebase caused by recent tqt changes.
:)
Darrell
Guys, Gals,
When building TQt3 to replace Qt3, what is the name for the recommended
install dir (i.e. $QTDIR)? I am going to put it in /opt, so should it go in:
/opt/TQt3
or should I use it as a direct replacement and put it in
/opt/Qt3?
Specifically, I am attempting this on archlinux where I have only used Qt3
before. Is this advisable, or should I just stay with Qt3?
If I install TQt3, then will updating /etc/profile.d/qt3.sh be the proper
way to tell the rest of the system where to find Qt3 --or-- should I create a
new profile named tqt3.sh with that information??
--
David C. Rankin, J.D.,P.E.
An interesting idea:
https://www.mozilla.org/en-US/collusion/
I bet the Mozilla people do their own tracking too. I wonder whether the add-on will disclose that?
My real concern is whether any Trinity apps perform or allow tracking that users might not be aware or approve.
Amarok? Akregator? Konqueror? KMail? IMs?
The question is not how to block such activities but whether users are fully informed that Trinity apps perform or allow tracking and have options in an apps' configuration to prevent the tracking.
Darrell
All,
This is a follow up from an issue Jay and I are trying to solve with
twin-style-crystal. I have also posted this to the Arch list in case it is gcc
version related, but someone smarter than I on autotools may see the problem
from what is described below.
I have patched acinclude.m4, aclocal.m4 and configure to remove references to
--as-needed, but when I run configure, I still get the three unwanted LDFLAGS
put back in the makefile somehow? Example:
Makefile:LDFLAGS = -Wl,-O1,--sort-common,--as-needed,-z,relro,--hash-style=gnu
I just want it to read:
Makefile:LDFLAGS = -Wl,-O1,-z,relro
What magic autotool does this and how do I fix it? The flags show up in the
Makefiles and the config.status file. I have completely searched the source code
with grep -r and after patching none of the unwanted flags are present before
starting the build. When the build craters, I check the Makefiles and
config.status and the unwanted flags are back. This results in the build failing
with:
/bin/sh ../libtool --silent --mode=link --tag=CXX g++ -march=x86-64
-mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4
-D_FORTIFY_SOURCE=2
-Wl,-O1,--sort-common,--as-needed,-z,relro,--hash-style=gnu -o embedtool
-L/opt/trinity/lib -L/opt/qt3/lib -L/opt/trinity/lib/trinity embedtool.o
-lqt-mt -lz -lpng -lz -lm -lXext -lX11 -lSM -lICE -lpthread
g++: error: unrecognized option '--sort-common'
g++: error: unrecognized option '--as-needed'
g++: error: unrecognized option '--hash-style=gnu'
What's the trick? Thanks.
Extra info:
For those interested, the source is:
http://www.kde-look.org/content/show.php?content=13969
and the patch I'm applying to try and get rid of the flags is:
http://www.3111skyline.com/dl/dt/trinity/arch/src/crystal-1.patch
--
David C. Rankin, J.D.,P.E.