[Bug 1409190] Re: nvidia-331-updates 331.113-0ubuntu0.0.4: nvidia-331-updates kernel module failed to build [error: ‘struct file’ has no member named ‘f_dentry’]

2015-03-03 Thread Simon Hausmann
Thanks! that's a convenient workaround :)

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1409190

Title:
  nvidia-331-updates 331.113-0ubuntu0.0.4: nvidia-331-updates kernel
  module failed to build [error: ‘struct file’ has no member named
  ‘f_dentry’]

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nvidia-graphics-drivers-304/+bug/1409190/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1409190] Re: nvidia-331-updates 331.113-0ubuntu0.0.4: nvidia-331-updates kernel module failed to build [error: ‘struct file’ has no member named ‘f_dentry’]

2015-03-01 Thread Simon Hausmann
Since the 3.19 kernel update in vivid, this now affects everyone using
nvidia-304 updates out of the box :(

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1409190

Title:
  nvidia-331-updates 331.113-0ubuntu0.0.4: nvidia-331-updates kernel
  module failed to build [error: ‘struct file’ has no member named
  ‘f_dentry’]

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nvidia-graphics-drivers-331-updates/+bug/1409190/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1286288] [NEW] Calculation of upgrade failed

2014-02-28 Thread Simon Hausmann
Public bug reported:

kubuntu-devel-release-upgrade fails with the Could not calculate the
upgrade message dialog, referring to an unresolvale problem while
calculating the upgrade.

A manual apt-get dist-upgrade on the terminal suggests that the
following conflict might be the reason perhaps?

Calculating upgrade... Failed
The following packages have unmet dependencies:
 tk : Breaks: tk8.5 ( 8.5.14-3) but 8.5.11-2ubuntu4 is to be installed
E: Error, pkgProblemResolver::Resolve generated breaks, this may be caused by 
held packages.

That said, aptitude seems to be able to determine an upgrade path.

** Affects: ubuntu-release-upgrader (Ubuntu)
 Importance: Undecided
 Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1286288

Title:
  Calculation of upgrade failed

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+bug/1286288/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1286288] Re: Calculation of upgrade failed

2014-02-28 Thread Simon Hausmann
Attached the dist-upgrade apt.log that confirms that the issue seems to
be around the tk package

** Attachment added: /var/log/dist-upgrade/apt.log
   
https://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+bug/1286288/+attachment/4001058/+files/log.txt

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1286288

Title:
  Calculation of upgrade failed

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+bug/1286288/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1286288] Re: Calculation of upgrade failed

2014-02-28 Thread Simon Hausmann
*** This bug is a duplicate of bug 1284646 ***
https://bugs.launchpad.net/bugs/1284646

** This bug has been marked a duplicate of bug 1284646
   unversioned tk package prevents upgrade to trusty alpha

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1286288

Title:
  Calculation of upgrade failed

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+bug/1286288/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 901130] [NEW] No support for --sysroot

2011-12-07 Thread Simon Hausmann
Public bug reported:

LSB Version:
core-2.0-amd64:core-2.0-noarch:core-3.0-amd64:core-3.0-noarch:core-3.1-amd64:core-3.1-noarch:core-3.2-amd64:core-3.2-noarch:core-4.0-amd64:core-4.0-noarch:desktop-3.1-amd64:desktop-3.1-noarch:desktop-3.2-amd64:desktop-3.2-noarch:desktop-4.0-amd64:desktop-4.0-noarch:graphics-2.0-amd64:graphics-2.0-noarch:graphics-3.0-amd64:graphics-3.0-noarch:graphics-3.1-amd64:graphics-3.1-noarch:graphics-3.2-amd64:graphics-3.2-noarch:graphics-4.0-amd64:graphics-4.0-noarch:qt4-3.1-amd64:qt4-3.1-noarch
Distributor ID: Ubuntu
Description:Ubuntu 11.10
Release:11.10
Codename:   oneiric

gcc-4.6-arm-linux-gnueabi:
  Installed: 4.6.1-9ubuntu3cross1.55
  Candidate: 4.6.1-9ubuntu3cross1.55
  Version table:
 *** 4.6.1-9ubuntu3cross1.55 0
500 http://no.archive.ubuntu.com/ubuntu/ oneiric/universe amd64 Packages
100 /var/lib/dpkg/status


It looks like the arm cross compiler doesn't support --sysroot:

$ mkdir -p mysysroot/usr/include 
$ echo  mysysroot/usr/include/test.h
$ echo #include test.h  test.cpp

$ arm-linux-gnueabi-cpp-4.6 --sysroot=$PWD/mysysroot test.cpp 
# 1 test.cpp
# 1 built-in
# 1 command-line
# 1 test.cpp
test.cpp:1:18: fatal error: test.h: No such file or directory
compilation terminated.


Where as the regular cpp works:

cpp --sysroot=$PWD/mysysroot test.cpp

# 1 test.cpp
# 1 built-in
# 1 command-line
# 1 test.cpp
# 1 /home/foobar/test/mysysroot/usr/include/test.h 1 3 4
# 1 test.cpp 2

** Affects: gcc-4.6-armel-cross (Ubuntu)
 Importance: Undecided
 Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/901130

Title:
  No support for --sysroot

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gcc-4.6-armel-cross/+bug/901130/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 327311] Re: Keyboard very slow after resume with Macbook 4.1

2009-07-25 Thread Simon Hausmann
Yes, I've attached a truncated dmesg output.

** Attachment added: dmesg output
   http://launchpadlibrarian.net/29519316/wakeup.txt

-- 
Keyboard very slow after resume with Macbook 4.1
https://bugs.launchpad.net/bugs/327311
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 327311] Re: Keyboard very slow after resume with Macbook 4.1

2009-07-23 Thread Simon Hausmann
In Karmic the situation seems to have improved. 3 out of 5 times the
macbook wakes up and the keyboard and mouse are just fine. The other
times they're unusable again and require a reboot.

It almost appears that the'yre slow because their events are being
polled, but top doesn't indicate any CPU usage.

-- 
Keyboard very slow after resume with Macbook 4.1
https://bugs.launchpad.net/bugs/327311
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 284603] [NEW] /usr/include/X11/extensions/XIproto.h contains reserved C++ keyword

2008-10-16 Thread Simon Hausmann
Public bug reported:

The file /usr/include/X11/extensions/XIproto.h cannot be included from
C++ programs as it contains the reserved delete keyword.

This happens for example when compiling toolkits, such as Qt.

The offending code in question:

typedef struct {
CARD8   reqType;/* input extension major opcode */
CARD8   ReqType;/* always X_ChangeDeviceProperty */
CARD16  length B16;
Atomproperty B32;
Atomtype B32;
CARD32  longOffset B32;
CARD32  longLength B32;
CARD8   deviceid;
BOOLdelete;
CARD16  pad;
} xGetDevicePropertyReq;

** Affects: x11proto-input (Ubuntu)
 Importance: Undecided
 Status: New

-- 
/usr/include/X11/extensions/XIproto.h contains reserved C++ keyword
https://bugs.launchpad.net/bugs/284603
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 225741] [NEW] /usr/bin/mysql_config --libs_r reports incorrect link flags

2008-05-02 Thread Simon Hausmann
Public bug reported:

Ubuntu 8.04

Package Version: 5.0.51a-3ubuntu5

The script /usr/bin/mysql_config --libs_r  reports the following output:

-Wl,-Bsymbolic-functions -L/usr/lib/mysql -lmysqlclient_r

The linker option -Bsymbolic-function is private to the mysql client
library and should not be exported to libraries/programs linking against
the mysql client library.

** Affects: mysql-dfsg-5.0 (Ubuntu)
 Importance: Undecided
 Status: New

-- 
/usr/bin/mysql_config --libs_r reports incorrect link flags
https://bugs.launchpad.net/bugs/225741
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 199758] [NEW] new upstream version of qtjambi available

2008-03-08 Thread Simon Hausmann
Public bug reported:

Currently QtJambi is packaged at version 4.3.1. Upstream has version
4.3.3 available at

http://trolltech.com/downloads/opensource#qt-jambi-open-source

It would be nice of the package could be upgraded.

** Affects: qtjambi (Ubuntu)
 Importance: Undecided
 Status: New

-- 
new upstream version of qtjambi available
https://bugs.launchpad.net/bugs/199758
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 178745] kdelibs5 uninstallable

2007-12-26 Thread Simon Hausmann
Public bug reported:

Binary package hint: kde4libs

kdelibs5 version 4:3.97.0-3ubuntu3 is not installable as it depends on
kdelibs5-data (= 4:3.97.0-3ubuntu3), which isn't built.

** Affects: kde4libs (Ubuntu)
 Importance: Undecided
 Status: New

-- 
kdelibs5 uninstallable
https://bugs.launchpad.net/bugs/178745
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 151865] Qt Designer Plugin contained in the libqtjambi-dev package does not work

2007-10-12 Thread Simon Hausmann
Public bug reported:

Binary package hint: libqtjambi-dev

When Qt designer is launched through the designer-qtjambi script the Qt
designer plugin for QtJambi is not loaded. Running ldd on
/usr/lib/qt4/plugins/designer/libJambiLanguage_debuglib.so indicates
that the plugin is linked against libqtjambi_debug.so, which does not
exist.

The plugin itself and everything else in QtJambi should probably be
built in release only, without any libraries with a _debug suffix.

** Affects: qtjambi (Ubuntu)
 Importance: Undecided
 Status: New

-- 
Qt Designer Plugin contained in the libqtjambi-dev package does not work
https://bugs.launchpad.net/bugs/151865
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 121295] [gutsy] vmware player kernel modules are missing

2007-06-20 Thread Simon Hausmann
Public bug reported:

It appears that the latest linux-restricted-modules-2.6.22 package does
not include the vmware player kernel modules anymore. It used to be part
of linux-restricted-modules-2.6.20 for example and I can't find any
mentioning of an alternative location in the changelog.

** Affects: linux-restricted-modules-2.6.22 (Ubuntu)
 Importance: Undecided
 Status: Unconfirmed

-- 
[gutsy] vmware player kernel modules are missing
https://bugs.launchpad.net/bugs/121295
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 114116] Re: Enable CONFIG_TIMER_STATS

2007-05-27 Thread Simon Hausmann
Would it be possible to also enable CONFIG_TIMER_STATS for amd64?

-- 
Enable CONFIG_TIMER_STATS
https://bugs.launchpad.net/bugs/114116
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 110738] incomplete headers in /usr/include/asm

2007-04-28 Thread Simon Hausmann
Public bug reported:

Binary package hint: linux-libc-dev

The headers in /usr/include/asm from linux-libc-dev_2.6.22-1.3 (amd64
binary) have incomplete header guards. All the files use the same
__ASM_STUB_ macro while they should be using __ASM_STUB_FILENAME_H
or similar.

The fact that they all have the same header guards obviously breaks
compilation of a lot of software.

** Affects: linux-source-2.6.22 (Ubuntu)
 Importance: Undecided
 Status: Unconfirmed

-- 
incomplete headers in /usr/include/asm
https://bugs.launchpad.net/bugs/110738
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 72639] Re: Intermittently fails to load on amd64

2007-03-20 Thread Simon Hausmann
Is there any chance of getting the upstream fix into feisty?
I hit that assertion quite frequently (not in evolution though).

-- 
Intermittently fails to load on amd64
https://launchpad.net/bugs/72639

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 75924] please include git-p4import in the package

2006-12-15 Thread Simon Hausmann
Public bug reported:

Binary package hint: git-core

git includes git-p4import.py. Unfortunately this script is not contained
in the debian/ubuntu package.

** Affects: git-core (Ubuntu)
 Importance: Undecided
 Status: Unconfirmed

-- 
please include git-p4import in the package
https://launchpad.net/bugs/75924

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 74248] ICE on kdelibs4 code

2006-12-03 Thread Simon Hausmann
Public bug reported:

Compiling kdelibs 4 from SVN trunk with g++-4.1 in feisty
(4.1.1-20ubuntu1) aborts with an internal compiler error. Since I'm not
sure whether this is due to a Debian/Ubuntu specific gcc patch or a
general g++ 4.1 bug I'm submitting the bug here.

The attached preprocessed source reproduces the problem.

** Affects: gcc-4.1 (Ubuntu)
 Importance: Undecided
 Status: Unconfirmed

-- 
ICE on kdelibs4 code
https://launchpad.net/bugs/74248

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 74248] Re: ICE on kdelibs4 code

2006-12-03 Thread Simon Hausmann

** Attachment added: preprocessed source
   http://librarian.launchpad.net/5239456/bug.ii

-- 
ICE on kdelibs4 code
https://launchpad.net/bugs/74248

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 74248] Re: ICE on kdelibs4 code

2006-12-03 Thread Simon Hausmann
Oh, I forgot to mention: This happens on x86-64.

-- 
ICE on kdelibs4 code
https://launchpad.net/bugs/74248

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 74248] Re: ICE on kdelibs4 code

2006-12-03 Thread Simon Hausmann
It happens for me independent of the commandline options:

$ g++-4.1 -c -o test.o bug.ii
/home/simon/src/kde/kdelibs/phonon/objectdescription.cpp: In member function 
‘Phonon::ObjectDescriptionT Phonon::ObjectDescriptionT::operator=(const 
Phonon::ObjectDescriptionT)’:
/home/simon/src/kde/kdelibs/phonon/objectdescription.cpp:54: internal compiler 
error: Segmentation fault
Please submit a full bug report,
with preprocessed source if appropriate.
See URL:http://gcc.gnu.org/bugs.html for instructions.
For Debian GNU/Linux specific bug reporting instructions,
see URL:file:///usr/share/doc/gcc-4.1/README.Bugs.
Preprocessed source stored into /tmp/ccBmazWE.out file, please attach this to 
your bugreport.

-- 
ICE on kdelibs4 code
https://launchpad.net/bugs/74248

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 73724] gdb problems with glibc 2.5

2006-11-29 Thread Simon Hausmann
Public bug reported:

It appears that the current gdb package in feisty (6.5.dfsg-2ubuntu1)
does not support the new .gnu.hash sections in ELF objects yet. I get a
lot of the following errors when using gdb:

BFD: /lib64/ld-linux-x86-64.so.2: don't know how to handle OS specific section 
`.gnu.hash' [0x6ff6]
warning: Unable to grok dynamic linker /lib64/ld-linux-x86-64.so.2 as an object 
file
warning: Unable to find dynamic linker breakpoint function.
GDB will be unable to debug shared library initializers
and track explicitly loaded dynamic code.
BFD: /lib/libpthread.so.0: don't know how to handle OS specific section 
`.gnu.hash' [0x6ff6]
Error while mapping shared library sections:
/lib/libpthread.so.0: not in executable format: File format not recognized.
BFD: /lib/libdl.so.2: don't know how to handle OS specific section `.gnu.hash' 
[0x6ff6]
Error while mapping shared library sections:
/lib/libdl.so.2: not in executable format: File format not recognized.
BFD: /lib/libm.so.6: don't know how to handle OS specific section `.gnu.hash' 
[0x6ff6]
Error while mapping shared library sections:
/lib/libm.so.6: not in executable format: File format not recognized.
BFD: /lib/libc.so.6: don't know how to handle OS specific section `.gnu.hash' 
[0x6ff6]
Error while mapping shared library sections:
/lib/libc.so.6: not in executable format: File format not recognized.
BFD: /lib/librt.so.1: don't know how to handle OS specific section `.gnu.hash' 
[0x6ff6]
Error while mapping shared library sections:
/lib/librt.so.1: not in executable format: File format not recognized.
BFD: /lib64/ld-linux-x86-64.so.2: don't know how to handle OS specific section 
`.gnu.hash' [0x6ff6]
Error while mapping shared library sections:
/lib64/ld-linux-x86-64.so.2: not in executable format: File format not 
recognized.
BFD: /lib/libpthread.so.0: don't know how to handle OS specific section 
`.gnu.hash' [0x6ff6]
Error while reading shared library symbols:
/lib/libpthread.so.0: can't read symbols: File format not recognized.
BFD: /lib/libdl.so.2: don't know how to handle OS specific section `.gnu.hash' 
[0x6ff6]
Error while reading shared library symbols:
/lib/libdl.so.2: can't read symbols: File format not recognized.
BFD: /lib/libm.so.6: don't know how to handle OS specific section `.gnu.hash' 
[0x6ff6]
Error while reading shared library symbols:
/lib/libm.so.6: can't read symbols: File format not recognized.
BFD: /lib/libc.so.6: don't know how to handle OS specific section `.gnu.hash' 
[0x6ff6]
Error while reading shared library symbols:
/lib/libc.so.6: can't read symbols: File format not recognized.
BFD: /lib/librt.so.1: don't know how to handle OS specific section `.gnu.hash' 
[0x6ff6]
Error while reading shared library symbols:
/lib/librt.so.1: can't read symbols: File format not recognized.
BFD: /lib/ld-linux-x86-64.so.2: don't know how to handle OS specific section 
`.gnu.hash' [0x6ff6]
Error while reading shared library symbols:
/lib/ld-linux-x86-64.so.2: can't read symbols: File format not recognized.

** Affects: gdb (Ubuntu)
 Importance: Undecided
 Status: Unconfirmed

-- 
gdb problems with glibc 2.5
https://launchpad.net/bugs/73724

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 60589] Re: valgrind crashes on most programs

2006-10-06 Thread Simon Hausmann
Nope, that didn't help, it still crashes :(


** Changed in: valgrind (Ubuntu)
   Status: Fix Released = Confirmed

** Changed in: valgrind (Ubuntu)
 Assignee: (unassigned) = Sebastien Bacher

-- 
valgrind crashes on most programs
https://launchpad.net/bugs/60589

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 60589] Re: valgrind crashes on most programs

2006-10-03 Thread Simon Hausmann
It appears to be a gcc problem. See also this thread:

http://thread.gmane.org/gmane.comp.debugging.valgrind/6167/focus=6167

Compiling the code with -fno-exceptions makes it valgrind'able for me.
(I still get a bunch of warnings, but at least it doesn't crash anymore)

-- 
valgrind crashes on most programs
https://launchpad.net/bugs/60589

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 60589] Re: valgrind crashes on most programs

2006-10-02 Thread Simon Hausmann
Valgrind 3.2.1 fixes this problem. Would it be possible to upgrade to
3.2.1 for edgy?

http://bugs.kde.org/show_bug.cgi?id=123244
http://valgrind.org/docs/manual/dist.news.html

-- 
valgrind crashes on most programs
https://launchpad.net/bugs/60589

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 60589] Re: valgrind crashes on most programs

2006-10-02 Thread Simon Hausmann
Oops, disregard my last comment, the fix is supposed to be already in
3.2.0, which edgy has. Hm.

-- 
valgrind crashes on most programs
https://launchpad.net/bugs/60589

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 62813] compiz is not installable currently in edgy

2006-09-28 Thread Simon Hausmann
Public bug reported:

Looks like it needs a rebuild against the new libdbus-1-3:

  compiz-plugins: Depends: libdbus-1-2 but it is not installable

** Affects: compiz (Ubuntu)
 Importance: Undecided
 Status: Unconfirmed

-- 
compiz is not installable currently in edgy
https://launchpad.net/bugs/62813

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 50844] Re: dbus-0.62

2006-08-20 Thread Simon Hausmann
Looks like 0.62 made it into edgy. Thanks :)

** Changed in: dbus (Ubuntu)
   Status: Unconfirmed = Fix Released

-- 
dbus-0.62
https://launchpad.net/bugs/50844

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 55267] Re: Kubuntu Text Disappears until I Mouse over it

2006-08-15 Thread Simon Hausmann
*** This bug is a duplicate of bug 55802 ***

It turns out that this is due to ABI breakage in xorg 7.1. The closed
source nvidia driver can be made working by disabling render
acceleration. See also this post for details:

http://www.nvnews.net/vbulletin/showpost.php?s=3e466799eeccaa58e0ed3f24392fffbep=913081postcount=5

as well as

https://launchpad.net/distros/ubuntu/+source/nvidia-kernel-
common/+bug/55802

(which this bug is effectively a duplicate of)

** This bug has been marked a duplicate of bug 55802
   nvidia not compatible with Xorg 7.1 RENDER (Fonts don't appear in edgy)

-- 
Kubuntu Text Disappears until I Mouse over it
https://launchpad.net/bugs/55267

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 55267] Re: Kubuntu Text Disappears until I Mouse over it

2006-08-05 Thread Simon Hausmann
This is in edgy, right? I experience exactly the same with xorg 7.1.1
and the binary nvidia driver. Using the nv driver instead all the KDE
apps work at least, while the Gtk+ ones still show exactly the same
symptons (text not rendered at all or only disappearing quickly after
refresh).

-- 
Kubuntu Text Disappears until I Mouse over it
https://launchpad.net/bugs/55267

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 49490] Re: ia32-libs does not have a grasp on its dependancies - edgy eft

2006-06-28 Thread Simon Hausmann
Is there a workaround available?

Debian unstable's ia32-libs package seems to be already at version 1.12.
Is that where the libc6 dependency comes from?

-- 
ia32-libs does not have a grasp on its dependancies - edgy eft
https://launchpad.net/bugs/49490

--
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 49490] Re: ia32-libs does not have a grasp on its dependancies - edgy eft

2006-06-28 Thread Simon Hausmann
Is there a workaround available?

Debian unstable's ia32-libs package seems to be already at version 1.12.
Is that where the libc6 dependency comes from?

-- 
ia32-libs does not have a grasp on its dependancies - edgy eft
https://launchpad.net/bugs/49490

--
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 50980] not installable in edgy

2006-06-26 Thread Simon Hausmann
Public bug reported:

The following packages have unmet dependencies:
  libc6-i386: Conflicts: ia32-libs (= 1.5) but 1.4ubuntu19 is to be installed

Package: libc6-i386
Version: 2.4-1ubuntu6

** Affects: ia32-libs (Ubuntu)
 Importance: Untriaged
 Status: Unconfirmed

-- 
not installable in edgy
https://launchpad.net/bugs/50980

--
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 50844] dbus-0.62

2006-06-24 Thread Simon Hausmann
Public bug reported:

dbus 0.62 was recently released. It would be nice to have an edgy
package of it :)

** Affects: dbus (Ubuntu)
 Importance: Untriaged
 Status: Unconfirmed

-- 
dbus-0.62
https://launchpad.net/bugs/50844

--
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs