[Bug 1850957] Re: kmail doesn't start

2019-11-01 Thread Berthold Stoeger
Never mind. Apparently a different instance was already running even after reboot. My bad. ** Changed in: kmail (Ubuntu) Status: New => Invalid -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/185

[Bug 1850957] [NEW] kmail doesn't start

2019-11-01 Thread Berthold Stoeger
Public bug reported: kmail doesn't start. To exclude a bug in akonadi, I stopped akonadi. To exclude configuration problems, I removed ~/.config/kmail*. kmail still doesn't start. >From the shell all I get is: $ kmail Attribute Qt::AA_ShareOpenGLContexts must be set before QCoreApplication is c

[Bug 633473] Re: package luatex 0.50.0-1 failed to install/upgrade: subprocess installed post-installation script killed by signal (Broken pipe)

2018-05-25 Thread Berthold Stoeger
Same happens for me. Problem is: /usr/bin/luatex refuses to start with the message: Unable to read environment locale:exit now. strace luatex gives: openat(AT_FDCWD, "/usr/lib/locale/en_AT.UTF-8/LC_NUMERIC", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) openat(AT_FDCWD, "/usr/lib/

[Bug 633473] Re: package luatex 0.50.0-1 failed to install/upgrade: subprocess installed post-installation script killed by signal (Broken pipe)

2018-05-25 Thread Berthold Stoeger
PS: in /usr/lub/locale I only have the directory "C.UTF-8" After doing a ln -s C.UTF-8/ en_AT.UTF-8 at least I got a working TeX installation. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/633473 T

[Bug 1414995] Re: wine will not open Microsoft .msi installer files

2015-02-10 Thread Berthold Stoeger
Happens on two Kubuntu machines of mine when I try to install Jana2006 latest, available from http://www- xray.fzu.cz/jana/download/latest2006/janainst.msi bs@fatty:~$ apt-cache policy wine wine: Installed: 1:1.6.2-0ubuntu6 Candidate: 1:1.6.2-0ubuntu6 Version table: *** 1:1.6.2-0ubuntu6 0

[Bug 1177790] Re: Internal compiler error: Error reporting routines re-entered

2013-05-14 Thread Berthold Stoeger
NB: The file compiles correctly if the necessary copy constructor is added: #include #include class A {}; class B { public: std::unique_ptr e; B &operator=(const B &d2); B(const B&); }; void fun(B &arg) { std::vector v; v.push_back(arg); } -- Yo

[Bug 1177790] Re: Internal compiler error: Error reporting routines re-entered

2013-05-14 Thread Berthold Stoeger
I get the same error message with std::unique_ptr: #include class A {}; class B { public: std::unique_ptr e; B &operator=(const B &d2); }; void fun(std::unique_ptr &arg) { std::vector v; v.push_back(std::move(*arg)); } Compiled with "g++-4.7 -c -O3 -g -st