[Bug 1739814] [NEW] Cannot run apps with protobuf 2.6 on Ubuntu 17.10

2017-12-22 Thread Steve Lorimer
Public bug reported: I have a Qt 5 application which has a dependency on protobuf 2.6. Having upgraded to Ubuntu 17.10 I am no longer able to run it. > [libprotobuf FATAL google/protobuf/stubs/common.cc:61] This program > requires > version 3.0.0 of the Protocol Buffer runtime

[Bug 1737608] Re: RPATH no longer respected for indirect dependencies

2017-12-11 Thread Steve Lorimer
** Package changed: ubuntu => glibc (Ubuntu) -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1737608 Title: RPATH no longer respected for indirect dependencies To manage notifications about this bug

[Bug 1737608] [NEW] RPATH no longer respected for indirect dependencies

2017-12-11 Thread Steve Lorimer
Public bug reported: Regression from Ubuntu 16.04 to Ubuntu 17.10. I am building a binary with a hard-coded RUNPATH, pointing to the location of some vendor-supplied shared libraries. $ readelf -d /home/steve/src/krx/tests/krx.test | grep RUNPATH 0x001d (RUNPATH)Library

[Bug 1591868] Re: fwupd consuming 100% CPU

2016-09-05 Thread Steve Lorimer
How can I get this fix in Xenial? -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1591868 Title: fwupd consuming 100% CPU To manage notifications about this bug go to:

[Bug 1617838] [NEW] std::isnan and isnan visibility problems

2016-08-28 Thread Steve Lorimer
Public bug reported: Consider the following small test application: #include #include #include int main() { double d = NAN; std::cout << std::isnan(d) << '\n'; std::cout << isnan(d) << '\n'; return 0; } Compiling on Ubuntu 16.04 with g++-5.4.0 using C++11 standard fails: $