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
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
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/
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
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
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
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