Bug#1020227: libgcc_s.so.1 must be installed for pthread_cancel to work

2022-09-18 Thread koos vriezen
Package: apache2
Version: 2.4.54-2

After updating a debian/testing amd64 an apache based https front-end
for a local http server (non-apache) failed to work. The error log
showed lines like

[core:notice] [pid 817:tid 140108209478976] AH00052: child pid 427563
exit signal Aborted (6)
libgcc_s.so.1 must be installed for pthread_cancel to work

With some search I solved the issue by purging  lib32gcc-12-dev and
libx32gcc-11-dev, followed by an autoremove. So I think the bug is
that apache found the wrong libgcc_s.so.1, i.e. the 32bit one.

Cheers,
Koos Vriezen



Bug#1017397: High cpu load after unplugging headphones

2022-08-15 Thread koos vriezen
Package: wireplumber
Version: 0.4.11-2

After ending a teams meeting, when I unplug my headphones the
wireplumber process goes up to 100%. Only after closing teams, the cpu
usage goes down.
I wonder whether it's related to
https://gitlab.freedesktop.org/pipewire/wireplumber/-/issues/152
My journald shows this line, though not certain whether it's the end
of the meeting or ear-unpluggin
 1 of 1 PipeWire links failed to activate

Cheers,

Koos Vriezen



Bug#955415: Compile fix with kernel 5.6.0

2020-03-31 Thread koos vriezen
Package: broadcom-sta-source
Version: 6.30.223.271-11

I use the attached patch to get this module compiled with 5.6.0. Works
fine for me the last few days.

Based on these two patches here
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/log/?h=linux-5.6.y

4bdc0d676a643140bdf17dbf7eafedee3d496a3c remove ioremap_nocache and
devm_ioremap_nocache
d56c0d45f0e27f814e87a1676b6bdbc252e9 proc: decouple proc from VFS
with "struct proc_ops"

According the first patch log message, this ioremap renaming could be done for
much earlier kernels. So I didn't bother to ifdef these changes.

Cheers,
Koos Vriezen
--- src/wl/sys/wl_linux.c.orig	2020-03-30 13:45:58.062809026 +0200
+++ src/wl/sys/wl_linux.c	2020-03-31 14:34:29.111418503 +0200
@@ -590,7 +590,7 @@ wl_attach(uint16 vendor, uint16 device,
 	}
 	wl->bcm_bustype = bustype;
 
-	if ((wl->regsva = ioremap_nocache(dev->base_addr, PCI_BAR0_WINSZ)) == NULL) {
+	if ((wl->regsva = ioremap(dev->base_addr, PCI_BAR0_WINSZ)) == NULL) {
 		WL_ERROR(("wl%d: ioremap() failed\n", unit));
 		goto fail;
 	}
@@ -780,7 +780,7 @@ wl_pci_probe(struct pci_dev *pdev, const
 	if ((val & 0xff00) != 0)
 		pci_write_config_dword(pdev, 0x40, val & 0x00ff);
 		bar1_size = pci_resource_len(pdev, 2);
-		bar1_addr = (uchar *)ioremap_nocache(pci_resource_start(pdev, 2),
+		bar1_addr = (uchar *)ioremap(pci_resource_start(pdev, 2),
 			bar1_size);
 	wl = wl_attach(pdev->vendor, pdev->device, pci_resource_start(pdev, 0), PCI_BUS, pdev,
 		pdev->irq, bar1_addr, bar1_size);
@@ -3353,8 +3353,13 @@ wl_proc_write(struct file *filp, const c
 	return length;
 }
 
-#if LINUX_VERSION_CODE >= KERNEL_VERSION(3, 10, 0)
-static const struct file_operations wl_fops = {
+#if LINUX_VERSION_CODE >= KERNEL_VERSION(5, 6, 0)
+static const struct proc_ops wl_ops = {
+	.proc_read	= wl_proc_read,
+	.proc_write	= wl_proc_write,
+};
+#elif LINUX_VERSION_CODE >= KERNEL_VERSION(3, 10, 0)
+static const struct proc_ops wl_ops = {
 	.owner	= THIS_MODULE,
 	.read	= wl_proc_read,
 	.write	= wl_proc_write,
@@ -3370,7 +3375,7 @@ wl_reg_proc_entry(wl_info_t *wl)
 	if ((wl->proc_entry = create_proc_entry(tmp, 0644, NULL)) == NULL) {
 		WL_ERROR(("%s: create_proc_entry %s failed\n", __FUNCTION__, tmp));
 #else
-	if ((wl->proc_entry = proc_create_data(tmp, 0644, NULL, _fops, wl)) == NULL) {
+	if ((wl->proc_entry = proc_create_data(tmp, 0644, NULL, _ops, wl)) == NULL) {
 		WL_ERROR(("%s: proc_create_data %s failed\n", __FUNCTION__, tmp));
 #endif
 		ASSERT(0);
--- src/shared/linux_osl.c.orig	2019-08-15 17:06:31.0 +0200
+++ src/shared/linux_osl.c	2020-03-30 13:45:22.203692455 +0200
@@ -946,7 +946,7 @@ osl_getcycles(void)
 void *
 osl_reg_map(uint32 pa, uint size)
 {
-	return (ioremap_nocache((unsigned long)pa, (unsigned long)size));
+	return (ioremap((unsigned long)pa, (unsigned long)size));
 }
 
 void


Bug#928754: Compile fix with kernel 5.1

2019-05-10 Thread koos vriezen
Package: broadcom-sta-source
Version:  6.30.223.271-10

I use the attached patch to get this module compiled with 5.1.0. Works
fine for me the last few days.
Judging the kernel patch-5.1.xz, everywhere get_ds() got replaced with
KERNEL_DS.

Cheers,
Koos Vriezen
--- src/wl/sys/wl_cfg80211_hybrid.c.orig	2019-05-07 16:52:35.903359637 +0200
+++ src/wl/sys/wl_cfg80211_hybrid.c	2019-05-10 13:40:54.327109866 +0200
@@ -457,7 +457,11 @@ wl_dev_ioctl(struct net_device *dev, u32
 	ifr.ifr_data = (caddr_t)
 
 	fs = get_fs();
+#if LINUX_VERSION_CODE < KERNEL_VERSION(5, 1, 0)
 	set_fs(get_ds());
+#else
+	set_fs(KERNEL_DS);
+#endif
 #if defined(WL_USE_NETDEV_OPS)
 	err = dev->netdev_ops->ndo_do_ioctl(dev, , SIOCDEVPRIVATE);
 #else


Bug#888740: Compile fix with kernel 4.15

2018-01-29 Thread koos vriezen
Package: broadcom-sta-source
Version:  6.30.223.271-7

The attached patch is for the timer_setup/from_timer changes in kernel
4.14. The new 4.15 kernel required this.

Cheers,
Koos Vriezen
--- a/wl/sys/wl_linux.c 2017-07-08 15:19:56.0 +0200
+++ b/wl/sys/wl_linux.c 2018-01-29 10:45:34.356850675 +0100
@@ -93,7 +93,11 @@ struct iw_statistics *wl_get_wireless_st
 
 #include 
 
+#if LINUX_VERSION_CODE < KERNEL_VERSION(4, 15, 0)
 static void wl_timer(ulong data);
+#else
+static void wl_timer(struct timer_list *tl);
+#endif
 static void _wl_timer(wl_timer_t *t);
 static struct net_device *wl_alloc_linux_if(wl_if_t *wlif);
 
@@ -2295,9 +2299,17 @@ wl_timer_task(wl_task_t *task)
 }
 
 static void
+#if LINUX_VERSION_CODE < KERNEL_VERSION(4, 15, 0)
 wl_timer(ulong data)
+#else
+wl_timer(struct timer_list *tl)
+#endif
 {
+#if LINUX_VERSION_CODE < KERNEL_VERSION(4, 15, 0)
wl_timer_t *t = (wl_timer_t *)data;
+#else
+   wl_timer_t *t = from_timer(t, tl, timer);
+#endif
 
if (!WL_ALL_PASSIVE_ENAB(t->wl))
_wl_timer(t);
@@ -2349,9 +2361,13 @@ wl_init_timer(wl_info_t *wl, void (*fn)(
 
bzero(t, sizeof(wl_timer_t));
 
+#if LINUX_VERSION_CODE < KERNEL_VERSION(4, 15, 0)
init_timer(>timer);
t->timer.data = (ulong) t;
t->timer.function = wl_timer;
+#else
+   timer_setup(>timer, wl_timer, 0);
+#endif
t->wl = wl;
t->fn = fn;
t->arg = arg;


Bug#867258: Compile fix with kernel 4.12

2017-07-05 Thread koos vriezen
Package: broadcom-sta-source
Version:  6.30.223.271-6

I use the attached patch to get this module compiled with 4.12. Works
fine for me the last few days.

Note, https://aur.archlinux.org/cgit/aur.git/tree/linux412.patch?h=broadcom-wl
patch is different. It calculates the bss field, as my patch only sets
the bssid field.
Please refer to
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=29ce6ecbb83c9185d76e3a7c340c9702d2a54961
all other driver fixes seem to be also setting bssid when bss not
already in scope. Also note that in the linux patch there where bss is
set when NULL (search for "info->bss = cfg80211_get_bss") the flags
differ.

Cheers,
Koos Vriezen
--- src/wl/sys/wl_cfg80211_hybrid.c.orig2017-06-26 11:04:47.204814029 
+0200
+++ src/wl/sys/wl_cfg80211_hybrid.c 2017-07-03 09:57:21.343667706 +0200
@@ -53,7 +53,11 @@ u32 wl_dbg_level = WL_DBG_ERR;
 #endif
 
 static s32 wl_cfg80211_change_iface(struct wiphy *wiphy, struct net_device 
*ndev,
-   enum nl80211_iftype type, u32 *flags, struct vif_params *params);
+   enum nl80211_iftype type,
+#if LINUX_VERSION_CODE < KERNEL_VERSION(4, 12, 0)
+   u32 *flags,
+#endif
+  struct vif_params *params);
 #if LINUX_VERSION_CODE >= KERNEL_VERSION(3, 6, 0)
 static s32
 wl_cfg80211_scan(struct wiphy *wiphy,
@@ -466,8 +470,11 @@ wl_dev_ioctl(struct net_device *dev, u32
 
 static s32
 wl_cfg80211_change_iface(struct wiphy *wiphy, struct net_device *ndev,
- enum nl80211_iftype type, u32 *flags,
-   struct vif_params *params)
+ enum nl80211_iftype type,
+#if LINUX_VERSION_CODE < KERNEL_VERSION(4, 12, 0)
+ u32 *flags,
+#endif
+ struct vif_params *params)
 {
struct wl_cfg80211_priv *wl = wiphy_to_wl(wiphy);
struct wireless_dev *wdev;
@@ -2387,6 +2394,15 @@ wl_bss_roaming_done(struct wl_cfg80211_p
 const wl_event_msg_t *e, void *data)
 {
struct wl_cfg80211_connect_info *conn_info = wl_to_conn(wl);
+#if LINUX_VERSION_CODE >= KERNEL_VERSION(4, 12, 0)
+   struct cfg80211_roam_info roam_info = {
+   .bssid = wl->profile->bssid,
+   .req_ie = conn_info->req_ie,
+   .req_ie_len = conn_info->req_ie_len,
+   .resp_ie = conn_info->resp_ie,
+   .resp_ie_len = conn_info->resp_ie_len,
+   };
+#endif
s32 err = 0;
 
err = wl_get_assoc_ies(wl);
@@ -2401,12 +2417,17 @@ wl_bss_roaming_done(struct wl_cfg80211_p
return err;
 
cfg80211_roamed(ndev,
+#if LINUX_VERSION_CODE >= KERNEL_VERSION(4, 12, 0)
+   _info,
+#else
 #if LINUX_VERSION_CODE > KERNEL_VERSION(2, 6, 39)
>conf->channel,  
 #endif
(u8 *)>bssid,
conn_info->req_ie, conn_info->req_ie_len,
-   conn_info->resp_ie, conn_info->resp_ie_len, GFP_KERNEL);
+   conn_info->resp_ie, conn_info->resp_ie_len,
+#endif
+   GFP_KERNEL);
WL_DBG(("Report roaming result\n"));
 
set_bit(WL_STATUS_CONNECTED, >status);


Bug#861807: Compile fix with kernel 4.11

2017-05-04 Thread koos vriezen
Package: broadcom-sta-source
Version:  6.30.223.271-5

I use the attached patch to get this module compiled with 4.11. Works
for me since last sunday.

Apparently 
https://aur.archlinux.org/cgit/aur.git/tree/linux411.patch?h=broadcom-wl
has come with a different patch for the removed last_rx field in
netdevice. But judging the commit log
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/patch/include/linux/netdevice.h?id=4a7c972644c1151f6dd34ff4b5f7eacb239e22ee
and the fact that last_rx isn't used elsewhere I came up with just
ifdef it out.

Cheers,
Koos Vriezen
--- a/src/wl/sys/wl_linux.c 2016-12-20 23:11:53.0 +0100
+++ b/src/wl/sys/wl_linux.c 2017-05-01 18:28:01.796506879 +0200
@@ -2912,7 +2912,9 @@ wl_monitor(wl_info_t *wl, wl_rxsts_t *rx
if (skb == NULL) return;
 
skb->dev = wl->monitor_dev;
+#if LINUX_VERSION_CODE < KERNEL_VERSION(4, 11, 0)
skb->dev->last_rx = jiffies;
+#endif
 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 22)
skb_reset_mac_header(skb);
 #else
--- a/src/wl/sys/wl_cfg80211_hybrid.c   2016-12-20 23:11:53.0 +0100
+++ b/src/wl/sys/wl_cfg80211_hybrid.c   2017-05-04 11:02:00.528227486 +0200
@@ -30,6 +30,9 @@
 #include 
 #include 
 #include 
+#if LINUX_VERSION_CODE >= KERNEL_VERSION(4, 11, 0)
+#include 
+#endif
 #include 
 #include 
 #include 


Bug#846940: org.kde.KScreen floods journal log with RRNotify_OutputProperty (ignored)

2016-12-04 Thread koos vriezen
Package: libkf5screen-bin
Version:  4:5.8.4-1

On KDE startup and then periodically I get a huge burst of

org.kde.KScreen[1167]: kscreen.xcb.helper: RRNotify_OutputProperty (ignored)
org.kde.KScreen[1167]: kscreen.xcb.helper: Output:  67
org.kde.KScreen[1167]: kscreen.xcb.helper: Property:  Backlight
org.kde.KScreen[1167]: kscreen.xcb.helper: State (newValue, Deleted):  0

messages in the user journal log. The severity is warn and the PID is
from dbus-daemon -session

I couldn't find a way to limit these logs w/o also limiting system
messages. In the dbus sources though I saw that the stdio from the
spawned processes is apparently forwarded to the syslog. So I ended up
changing the
/usr/share/dbus-1/services/org.kde.kscreen.service
to

[D-BUS Service]
Name=org.kde.KScreen
Exec=/bin/sh -c
'/usr/lib/x86_64-linux-gnu/libexec/kf5/kscreen_backend_launcher
>/dev/null 2>/dev/null'

which indeed helps.
IMHO kscreen should log these warnings once.


Best regards,

Koos Vriezen



Bug#839629: kernel NULL pointer dereference at cfg80211_scan_done with kernel 4.8.0

2016-10-03 Thread koos vriezen
Package: broadcom-sta-source
Version:  6.30.223.271-3

Looking at the patch for kernel 4.8, I came up with the attached patch
(and I send this mail while running it :)


Thanks,
Koos Vriezen
--- modules/broadcom-sta/src/wl/sys/wl_cfg80211_hybrid.c.orig   2016-10-03 
10:53:55.588036464 +0200
+++ modules/broadcom-sta/src/wl/sys/wl_cfg80211_hybrid.c2016-10-03 
10:54:11.911695944 +0200
@@ -2386,8 +2386,15 @@
s32 err = 0;
 
if (wl->scan_request) {
+#if LINUX_VERSION_CODE >= KERNEL_VERSION(4, 8, 0)
+   struct cfg80211_scan_info info = {
+   .aborted = true
+   };
WL_DBG(("%s: Aborting scan\n", __FUNCTION__));
-   cfg80211_scan_done(wl->scan_request, true); 
+   cfg80211_scan_done(wl->scan_request, );
+#else
+   cfg80211_scan_done(wl->scan_request, true);
+#endif
wl->scan_request = NULL;
}
 
@@ -2488,7 +2495,14 @@
 
 scan_done_out:
if (wl->scan_request) {
+#if LINUX_VERSION_CODE >= KERNEL_VERSION(4, 8, 0)
+   struct cfg80211_scan_info info = {
+   .aborted = false
+   };
+   cfg80211_scan_done(wl->scan_request, );
+#else
cfg80211_scan_done(wl->scan_request, false);
+#endif
wl->scan_request = NULL;
}
rtnl_unlock();
@@ -2913,7 +2927,14 @@
s32 err = 0;
 
if (wl->scan_request) {
-   cfg80211_scan_done(wl->scan_request, true); 
+#if LINUX_VERSION_CODE >= KERNEL_VERSION(4, 8, 0)
+   struct cfg80211_scan_info info = {
+   .aborted = true
+   };
+   cfg80211_scan_done(wl->scan_request, );
+#else
+   cfg80211_scan_done(wl->scan_request, true);
+#endif
wl->scan_request = NULL;
}
 


Bug#799466: Please package 0.11.4

2016-07-12 Thread koos vriezen
Hi,

2015-09-19 15:08 GMT+02:00 koos vriezen <koos.vrie...@gmail.com>:

> Before, I could upload tar balls to kmplayer.kde.org. Due to many
> changes  at kde.org, I give up on maintaining this page. Git tags are
> fine too IMHO.

Now full packages are available https://kmplayer.kde.org/download.php
for 0.11.5b (kde4) and 0.12.0a (kde5)
I forgot that tag links don't have the po/doc directories included.

> Note, I'm porting to kde5 in the 0.12 branch. I think it might make
> sense to keep the kde4 version as long as konqueror is kde4 based.
> Tjhe 0.12 branch works fine too, except thus embedded in konqueror.

Still true, but 0.12.0a has HiDPI fixes that aren't in 0.11.5b.

Thanks,
Koos Vriezen



Bug#799466: Please package 0.11.4

2015-09-19 Thread koos vriezen
Package: kmplayer
Version: 1:0.11.3d-2

Version 0.11.4 tagged at https://quickgit.kde.org/?p=kmplayer.git

Before, I could upload tar balls to kmplayer.kde.org. Due to many
changes  at kde.org, I give up on maintaining this page. Git tags are
fine too IMHO.

Note, I'm porting to kde5 in the 0.12 branch. I think it might make
sense to keep the kde4 version as long as konqueror is kde4 based.
Tjhe 0.12 branch works fine too, except thus embedded in konqueror.

Thanks,
Koos Vriezen



Bug#719493: libqt5gui5:i386 uninstallable

2013-08-13 Thread Koos Vriezen
On Mon, Aug 12, 2013 at 03:40:56PM +0200, Pino Toscano wrote:
 reassign 719493 xkb-data
 forcemerge 677884 719493
 thanks

Are you sure that an importand (or is it grave) bug like uninstallable
deb file should be merged with a normal bug report?

Thanks,

Koos


 
 Hi,
 
 Alle lunedì 12 agosto 2013, Koos Vriezen ha scritto:
  Package: libqt5gui5:i386
  Version: 5.1.0+dfsg-3
  
  When installing like
  
  apt-get install libqt5gui5:i386
  
  the output is
  
  libqt5gui5:i386 : Depends: libxkbcommon0:i386 (= 0.2.0) but it is
  not going to be installed
  
  when I then do
  
  apt-get install libqt5gui5:i386 libxkbcommon0:i386
  
  I get
  
  libxkbcommon0:i386 : Depends: xkb-data:i386 but it is not installable
  
  and finally that last one gives
  
  Package xkb-data:i386 is not available, but is referred to by another
  package.
 
 Another case of #677884.
 
 -- 
 Pino Toscano


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#719493: libqt5gui5:i386 uninstallable

2013-08-13 Thread Koos Vriezen
On Tue, Aug 13, 2013 at 02:54:32PM +0200, Pino Toscano wrote:
 Alle martedì 13 agosto 2013, Koos Vriezen ha scritto:
  On Mon, Aug 12, 2013 at 03:40:56PM +0200, Pino Toscano wrote:
   reassign 719493 xkb-data
   forcemerge 677884 719493
   thanks
  
  Are you sure that an importand (or is it grave) bug like
  uninstallable deb file should be merged with a normal bug report?
 
 Surely this is not grave at all not any other kind of release critical.
 Considering this is another case of #677884, merging is just the right 
 thing to do. If you want to argue for a severity=important for #677884 
 (or ask for a fix), please followup on that bug report.

I already had rebuilt xkd-data myself because I needed to test this
setup. It's more that I noticed that merged bug reports don't show up in
the appriopriate mailing lists, and thus unnoticed. #677884 is more or
less in a 'who needs it' state.


Anyhow, maybe I can use this correspondence to mention another problem
we have with qtbase5-dev in Jessie, it's missing
qplatformmenu.h, qplatformnativeinterface.h and qplatformintegration.h
/usr/include/qt5/QtGui/5.1.0/QtGui/qpa/ for our product.
Do you have any suggestion how this is handled, e.g. should I file a br
or is this deliberate left out?

Thanks,

Koos


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#719493: libqt5gui5:i386 uninstallable

2013-08-13 Thread Koos Vriezen
On Tue, Aug 13, 2013 at 03:32:01PM +0200, Pino Toscano wrote:

 You want qtbase5-private-dev, since you are asking for such private 
 headers.

Thanks, I missed that package somehow.

Koos


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#719493: libqt5gui5:i386 uninstallable

2013-08-12 Thread Koos Vriezen
Package: libqt5gui5:i386
Version: 5.1.0+dfsg-3

When installing like

apt-get install libqt5gui5:i386

the output is

libqt5gui5:i386 : Depends: libxkbcommon0:i386 (= 0.2.0) but it is not
going to be installed

when I then do

apt-get install libqt5gui5:i386 libxkbcommon0:i386

I get

libxkbcommon0:i386 : Depends: xkb-data:i386 but it is not installable

and finally that last one gives

Package xkb-data:i386 is not available, but is referred to by another
package.


Cheers,
Koos Vriezen


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#584214: Connect to Solaris, input blocks after a few clicks

2010-06-02 Thread koos vriezen
Package: xserver-xorg
Version:1:7.5+6

Upstream br http://bugs.freedesktop.org/show_bug.cgi?id=25400
This is fixed in xorg 7.7 too
http://cgit.freedesktop.org/xorg/xserver/commit/?h=server-1.7-branchid=e7154e9375e6b624db01a787d9ec6c8cedc2eb81

Would be really nice if this could make it to Squeeze.

Br
Koos Vriezen



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#584214: Seem to be BR27295

2010-06-02 Thread koos vriezen
Now that I quietly read the br at home, I see that the upstream bug is
http://bugs.freedesktop.org/show_bug.cgi?id=27295
I probably was mislead by 1:7.5+6 vs 2:1.7.7-1 of xserver-xorg-core.

Anyhow, have set up a chroot'ed lenny to connect to our Solaris system
with Xehpyr.

Koos



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#552336: N900/SIP session-timer problem

2009-10-25 Thread koos vriezen
Package: asterisk
Version: 1:1.6.2.0~dfsg~rc1-1

Problem is described here https://bugs.maemo.org/show_bug.cgi?id=5614
Bug looks like issue https://issues.asterisk.org/view.php?id=15403 so
it might be fixed upstream in rc3



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#552336: N900/SIP session-timer problem

2009-10-25 Thread koos vriezen
2009/10/25 Faidon Liambotis parav...@debian.org:
 koos vriezen wrote:
 Problem is described here https://bugs.maemo.org/show_bug.cgi?id=5614
 Bug looks like issue https://issues.asterisk.org/view.php?id=15403 so
 it might be fixed upstream in rc3
 Thanks. We'll wait until -rc3 gets released and get back to you.

Okay, btw I got the asterisk issue from
http://www.asterisk.org/node/49846 where rc3 is announced (from 21
oct).

Br
Koos



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#535772: Fixed upstream

2009-07-05 Thread koos vriezen
Downloaded 
http://cgit.freedesktop.org/xorg/driver/xf86-video-intel/snapshot/xf86-video-intel-master.tar.bz2
and applied 
http://ftp.de.debian.org/debian/pool/main/x/xserver-xorg-video-intel/xserver-xorg-video-intel_2.7.99.901-2.diff.gz
and the crash is gone.  Debian diff had some pre-applied conflicts in
xvmc area, that I removed from the diff.

I don't have the time to bisect this, looking at
http://cgit.freedesktop.org/xorg/driver/xf86-video-intel/log/, there
are a few fixes in there.
(my first guess, but who cares, is
http://cgit.freedesktop.org/xorg/driver/xf86-video-intel/commit/?id=cdbf84f20295c8a78624318aa6fdfff3f5c8ce27
)



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#535772: intel:crash in drm_intel_gem_bo_unreference_locked

2009-07-04 Thread koos vriezen
Package: libdrm-intel1
Version: 2.4.11+git+20090630+de1ed01-1

After startx, the server starts, shows the KDE4 animated mouse and
then crashes. Console isn't restored properly, cursor hangs in the top
left corner.

Backtrace with:

libdrm2/experimental uptodate 2.4.11+git+20090630+de1ed01-1
libdrm2-dbg/experimental uptodate 2.4.11+git+20090630+de1ed01-1
libgl1-mesa-dev/experimental uptodate 7.5~rc4-1
libgl1-mesa-dri/experimental uptodate 7.5~rc4-1
libgl1-mesa-glx/experimental uptodate 7.5~rc4-1
mesa-common-dev/experimental uptodate 7.5~rc4-1
xserver-xorg-video-intel/experimental uptodate 2:2.7.99.901-2
xserver-xorg/unstable uptodate 1:7.4+3
xserver-xorg-core/unstable uptodate 2:1.6.1.901-3
xserver-xorg-core-dbg/unstable uptodate 2:1.6.1.901-3
xserver-xorg-dev/unstable uptodate 2:1.6.1.901-3
xserver-xorg-input-evdev/unstable uptodate 1:2.2.2-1
xserver-xorg-input-kbd/unstable uptodate 1:1.3.2-3
xserver-xorg-input-mouse/unstable uptodate 1:1.4.0-2
xserver-xorg-input-synaptics/unstable uptodate 1.1.2-1
xserver-xorg-video-ark/unstable uptodate 1:0.7.1-2
xserver-xorg-video-fbdev/unstable uptodate 1:0.4.0-4
xserver-xorg-video-intel/experimental uptodate 2:2.7.99.901-2
xserver-xorg-video-vesa/unstable uptodate 1:2.2.0-1

but same crash happened with everything from unstable.

Kernel is 2.6.30.1
#0  drm_intel_gem_bo_unreference_locked (bo=0x5311440)
at ../../../libdrm/intel/intel_bufmgr_gem.c:595
bucket = (struct drm_intel_gem_bo_bucket *) 0x2460c48
tiling_mode = 0
__PRETTY_FUNCTION__ = drm_intel_gem_bo_unreference_locked
#1  0x7fe5ce73e1f5 in drm_intel_gem_bo_unreference_locked (bo=0x5a9d290)
at ../../../libdrm/intel/intel_bufmgr_gem.c:571
i = 2
bucket = value optimized out
tiling_mode = value optimized out
__PRETTY_FUNCTION__ = drm_intel_gem_bo_unreference_locked
#2  0x7fe5ce73e6dc in drm_intel_gem_bo_unreference (bo=0x5a9d290)
at ../../../libdrm/intel/intel_bufmgr_gem.c:609
No locals.
#3  0x7fe5ce9617af in intel_batch_flush ()
   from /usr/lib/xorg/modules/drivers//intel_drv.so
No symbol table info available.
#4  0x7fe5ce96e87a in ?? ()
   from /usr/lib/xorg/modules/drivers//intel_drv.so
No symbol table info available.
#5  0x00531058 in AnimCurScreenBlockHandler (screenNum=0, 
blockData=0x0, pTimeout=0x7fff8bf32ad8, pReadmask=0x7d6640)
at ../../render/animcur.c:222
pScreen = (ScreenPtr) 0x24615e0
as = (AnimCurScreenPtr) 0x51ed520
dev = (DeviceIntPtr) 0x0
now = 0
soonest = 4294967295
#6  0x004fd31e in compBlockHandler (i=0, blockData=0x0, 
pTimeout=0x7fff8bf32ad8, pReadmask=0x7d6640)
at ../../composite/compinit.c:158
pScreen = (ScreenPtr) 0x24615e0
cs = (CompScreenPtr) 0x51e3620
#7  0x00450a30 in BlockHandler (pTimeout=0x7fff8bf32ad8, 
pReadmask=0x7d6640) at ../../dix/dixutils.c:384
i = 1
#8  0x004eb9d1 in WaitForSomething (pClientsReady=0x5319130)
at ../../os/WaitFor.c:215
i = 87093152
waittime = {tv_sec = 562, tv_usec = 393000}
wt = (struct timeval *) 0x7fff8bf32ac0
timeout = value optimized out
clientsReadable = {fds_bits = {0 repeats 16 times}}
clientsWritable = {fds_bits = {87093152, 86686880, 512, 12884901888, 
32, 32, 0, 32, 87205600, 5196188, 140735541357088, 5176967, 9, 
140735541357168, 0, 87205600}}
curclient = value optimized out
selecterr = 0
nready = value optimized out
devicesReadable = {fds_bits = {0, 0, 256, 0, 99303344, 87093616, 
140735541356928, 1, 87093152, 0, 140624963670108, 140735541357012, 16, 
86686592, 87134512, 5333713}}
now = 87093152
someReady = 0
#9  0x0044cdc0 in Dispatch () at ../../dix/dispatch.c:367
result = 0
client = (ClientPtr) 0x530efa0
nready = -1
start_tick = value optimized out
#10 0x0043320a in main (argc=3, argv=0x7fff8bf32cb8, 
envp=value optimized out) at ../../dix/main.c:397
i = 1
alwaysCheckForInput = {0, 1}


file
Description: Binary data


Bug#535772: intel:crash in drm_intel_gem_bo_unreference_locked

2009-07-04 Thread koos vriezen
Hi Chris,

2009/7/4 Chris Lamb la...@debian.org:
 Hi koos,

 After startx, the server starts, shows the KDE4 animated mouse and
 then crashes.
 [..]
 but same crash happened with everything from unstable.

 Firstly, can you check #535300 to see whether this is a duplicate.

 Secondly, please *always* file X bugs with reportbug so we get all the right
 info - without this stuff, reporting the bug is pretty much a waste of
 everyones time. Thanks for understanding.

 A traceback of the crash would also be nice (if this isn't a dup of the
 above).

Actually I followed http://wiki.debian.org/XStrikeForce/XserverDebugging
gdb.txt and output from
   bash -c /usr/share/bug/xserver-xorg-core/script 31  file
are attached.
(link to 'Reporting Bugs in Debian' on that page is broken though)

#535300 mentioned that downgrading xserver-xorg-video-intel helped. I
did that (2:2.7.1-1), same crash.

Regards,

Koos



 Regards,

 --
      ,''`.
     : :'  :     Chris Lamb
     `. `'`      la...@debian.org
       `-




--
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#485042: undefined symbol: decor_blend_border_picture

2008-06-07 Thread koos vriezen
Package: compiz
Version: 0.7.6-1

Installing this version in Lenny, both gtk-window-decorator and
kde-window-decorator give a symbol lookup error: gtk-window-decorator:
undefined symbol: decor_blend_border_picture.
Is there a dependency problem?



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#485042: it's libdecoration0

2008-06-07 Thread koos vriezen
dpkg -l |grep libdecoration0
ii  libdecoration0  0.6.3~git20080115.0ea58487-1
  Compiz window decoration library

so there is the dependency bug



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#456420: Please add libdbus-glib-1

2007-12-15 Thread koos vriezen
Package: ia32-libs-gtk
Version: 2.1

I have a little netscape plugin loader program that links against gtk,
X and dbus-glib. As the Adobe flash plugin is only in 32bit, I've
running it in a 32 chroot. Running against ia32-libs-gtk/ia32-libs
gives two unresolved libraries:

libXcomposite.so.1 = not found
libdbus-glib-1.so.2 = not found

symlinking these from the chroot to /emul/ia32-linux/usr/lib works
just fine. So it seems these two belong to resp. ia32-libs and
ia32-libs-gtk.

Best regards,

Koos Vriezen



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#441548: ftbfs with g++-4.3/gcc-snapshot

2007-09-26 Thread koos vriezen
This should be fixed in upstream 0.10.0-pre3. Actually gcc-4.2 had
problems compiling this version.



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#435262: uic3 and lib missing in QTDIR

2007-07-30 Thread koos vriezen
Package: libqt4-dev
Version: 4.3.0-4

I assume the /usr/share/qt4 dir is there to mimic the original qt sources.
i needed such a dir for a --with-qtdir option, but had to manually add
a link to /usr/lib and /usr/bin/uic3.
If my assumption is correct, than I thing this is missing in this directory.

Best regards,

Koos Vriezen


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#427384: compiz broken in lenny after libc6 upgrade

2007-06-05 Thread koos vriezen

Hi,

2007/6/5, Brice Goglin [EMAIL PROTECTED]:

Thanks for finding out that libxrandr causes the breakage. It's kind of
surprising, there are very few calls to xrandr functions in compiz. Do
you by chance see any error/warning in the terminal where you start
compiz (or in .xsession-errors)?


Not checked this time, but when a few weeks ago this occurred while
pulled in via some unstable package, I spent quite some time debugging
it. AFAIR, the was no error message at the console or
/var/log/Xorg.0.log.


Did any of you guys try with xserver-xorg-core 1.3 (currently in
unstable)? It would be good to know whether using the latest libxrandr
without latest xserver-xorg-core may cause problems.


It would really help if the nvidia-glx package would apply the 1.3 fix
:-) suggested by nvidia ...

Btw. I read this on gmane.comp.freedesktop.xorg (don't know if it's
important or not)

From: Andy Ritger [EMAIL PROTECTED]
 Date:
Sunday 03 June 2007 22:56:07
 To: Alberto Milone t
 Groups: gmane.comp.freedesktop.xorg

That's correct -- the NVIDIA driver doesn't support RandR 1.2, yet
(hopefully soon...).  However, the NVIDIA driver should interact properly
with the RandR 1.1 compatibility layer in place in the X server, and the
display configuration page in nvidia-settings should provide comparable
functionality to RandR 1.2.

I hope that helps,
- Andy Ritger



Brice





--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#427384: compiz broken in lenny after libc6 upgrade

2007-06-04 Thread koos vriezen

It's libxrandr2 preventing windows update. Noticed this already some
time ago on two different machines having different Nvidia cards, when
.I pulled something from unstable that upgraded this package.
Today I got again this effect when updating testing on yet another
machine but having a Nvidia card.
All cases with compiz/testing and nvidia-glx/unstable.

Regards,
Koos Vriezen


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#422431: libcairo is missing in dependency

2007-05-05 Thread koos vriezen

Package: kmplayer
Version: 1:0.9.4-1

KMPlayer ability to play smil files is broken in this version due to
the missing libcairo-dev at configure time.
Link to test with is eg.
http://homepages.cwi.nl/~media/SMIL/EUROshow/EUROshowB.ram

Best regards,

Koos Vriezen


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#348499: tls:// urls don't work anymore since last upgrade in testing

2006-01-18 Thread Koos Vriezen
On Tue, Jan 17, 2006 at 06:49:31PM -0800, Steve Langasek wrote:
 block 348499 by 338006
 thanks
 
 On Tue, Jan 17, 2006 at 12:09:01PM +0100, Koos Vriezen wrote:
  The php version entering testing at 4.4.0-4, broken code like (from
  squirrelmail):
 
  //$imap_server_address = 192.168.2.200;
  $imap_server_address = tls://192.168.2.200;
  //$imap_port  = 143; // imap2
  $imap_port  = 993; // imaps
  $imap_stream = @fsockopen($imap_server_address, $imap_port, $error_number, 
  $error_string, 15);
  if (!$imap_stream)
 // error
 
  in case the imaps lines are in use, there is no $imap_stream. On the
  imaps server side, I see:
 
  Command stream end of file, while reading line user=??? host=narobi.dmz 
  [192.168.2.2]
 
  Like said, this used to work with previous version in testing. Google
  give me this link: http://bugs.php.net/bug.php?id=29934edit=1 which
  suggests that openssl should be static linked for php4.
 
 A bug with an error message which is *not* present in your example (because
 for some reason you decided to suppress the error output from fsockopen(),
 even though that's what would tell us the real nature of your problem).
 
 So please take out this '@' from in front of 'fsockopen', and get us an
 error message we can use.  Or get us something from a PHP log file that
 shows what error fsockopen is throwing.

I'm sorry, I didn't know that. Anyhow, this is w/o the '@', when running
'php xxx.php' from the commandline:

  Warning: fsockopen(): php_stream_sock_ssl_activate_with_method: failed
  to create an SSL context in xxx.php on line 29
  
  Warning: fsockopen(): failed to activate SSL mode 2 in
  xxx.php on line 29

 In the meantime, I'm going to assume this is caused by 338006, like most
 current ssl problems.

Both systems have 'openssl/testing uptodate 0.9.8a-5', so that might be
the cause.

Thanks,

Koos Vriezen



***DISCLAIMER***
Bewijs van Afstand:
Dit emailbericht is slechts bestemd voor de personen aan wie het is gericht
en kan informatie bevatten die persoonlijk of vertrouwelijk is en niet
openbaar mag worden gemaakt zonder goedkeuring van de auteur.
Indien u dit bericht per vergissing heeft ontvangen, verzoeken wij u ons op
de hoogte te stellen en het bericht te vernietigen zonder het te kopiëren of
te distribueren.
Ons bedrijf staat niet in voor juiste en volledige overbrenging van de inhoud
van een verzonden bericht, noch voor de tijdige ontvangst daarvan.
Disclaimer:
This E-mail is for use of the intended recipient(s) only and can contain
information that is personal or confidential. It is prohibited to distribute
the content of this message without the author's prior permission.
If you have received it in error, please notify the sender and immediately
delete this message without distributing or retaining copies hereof.
Our company is not responsible for the comprehensiveness of this message nor
it's time of delivery.
*


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#348499: tls:// urls don't work anymore since last upgrade in testing

2006-01-17 Thread Koos Vriezen
Package: php4-cgi
Version: 4.4.0-4

Hi,

The php version entering testing at 4.4.0-4, broken code like (from
squirrelmail):

//$imap_server_address = 192.168.2.200;
$imap_server_address = tls://192.168.2.200;
//$imap_port  = 143; // imap2
$imap_port  = 993; // imaps
$imap_stream = @fsockopen($imap_server_address, $imap_port, $error_number, 
$error_string, 15);
if (!$imap_stream)
   // error

in case the imaps lines are in use, there is no $imap_stream. On the
imaps server side, I see:

Command stream end of file, while reading line user=??? host=narobi.dmz 
[192.168.2.2]

Like said, this used to work with previous version in testing. Google
give me this link: http://bugs.php.net/bug.php?id=29934edit=1 which
suggests that openssl should be static linked for php4.

Thanks,

Koos Vriezen

***DISCLAIMER***
Bewijs van Afstand:
Dit emailbericht is slechts bestemd voor de personen aan wie het is gericht
en kan informatie bevatten die persoonlijk of vertrouwelijk is en niet
openbaar mag worden gemaakt zonder goedkeuring van de auteur.
Indien u dit bericht per vergissing heeft ontvangen, verzoeken wij u ons op
de hoogte te stellen en het bericht te vernietigen zonder het te kopiëren of
te distribueren.
Ons bedrijf staat niet in voor juiste en volledige overbrenging van de inhoud
van een verzonden bericht, noch voor de tijdige ontvangst daarvan.
Disclaimer:
This E-mail is for use of the intended recipient(s) only and can contain
information that is personal or confidential. It is prohibited to distribute
the content of this message without the author's prior permission.
If you have received it in error, please notify the sender and immediately
delete this message without distributing or retaining copies hereof.
Our company is not responsible for the comprehensiveness of this message nor
it's time of delivery.
*


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#342555: Hang on connecting

2005-12-08 Thread Koos Vriezen
Package: kphone
Version: 4.2-3

Using an asterisk server and kphone as client, kphone hangs when
connecting to another SIP client on the same internal network. This only
seem to happen when having extensions written like:
  exten = 110,1, Dial(SIP/kv,30)
in asterisk's extensions.conf and not when written as
  exten = 110,1, Dial(SIP/kv,30,t)

I've tracked down the bug in kphone and kphone opens the input twice
and then hangs in QThread::Start() in pthread_cond_wait (done when this
method is called while already running)

#0  CallAudio::audioIn (this=0x824cf28) at callaudio.cpp:199
#1  0x08092c17 in CallAudio::memberStatusUpdated (this=0x824cf28,
member=0x828a968) at callaudio.cpp:663
#2  0x08093739 in CallAudio::qt_invoke (this=0x824cf28, _id=2, _o=0xbfd127dc)
at callaudio.moc.cpp:103
#3  0xb78271f9 in QObject::activate_signal () from /usr/lib/libqt-mt.so.3
#4  0x080ca60a in SipCallMember::statusUpdated (this=0x828a968, t0=0x828a968)
at sipcall.moc.cpp:103
#5  0x080c22d0 in SipCallMember::acceptInvite (this=0x828a968,
[EMAIL PROTECTED], [EMAIL PROTECTED]) at sipcall.cpp:572
#6  0x08092a7c in CallAudio::memberStatusUpdated (this=0x824cf28,
member=0x828a968) at callaudio.cpp:655
#7  0x08093739 in CallAudio::qt_invoke (this=0x824cf28, _id=2, _o=0xbfd1297c)
at callaudio.moc.cpp:103
#8  0xb78271f9 in QObject::activate_signal () from /usr/lib/libqt-mt.so.3
#9  0x080ca60a in SipCallMember::statusUpdated (this=0x828a968, t0=0x828a968)
at sipcall.moc.cpp:103
#10 0x080c2d3f in SipCallMember::incomingTransaction (this=0x828a968,
newtrans=0x82e36b8) at sipcall.cpp:663
#11 0x080c849c in SipCall::incomingRequest (this=0x8240670, message=0x82d8180)
at sipcall.cpp:994
#12 0x080c8b75 in SipCall::incomingMessage (this=0x8240670, message=0x82d8180)
at sipcall.cpp:862
#13 0x080d3884 in SipClient::parseMessage (this=0x821c8b0,
[EMAIL PROTECTED]) at sipclient.cpp:653
#14 0x080d5ba4 in SipClient::incomingMessage (this=0x821c8b0, socketfd=8)
at sipclient.cpp:484
#15 0x080d5d83 in SipClient::doSelect (this=0x821c8b0, block=false)
at sipclient.cpp:283
#16 0x0805a476 in KPhone::timerTick (this=0x820f0d8) at kphone.cpp:145
#17 0x08061364 in KPhone::qt_invoke (this=0x820f0d8, _id=64, _o=0xbfd153d8)
at kphone.moc.cpp:122

#0  CallAudio::audioIn (this=0x824cf28) at callaudio.cpp:199
#1  0x08092c17 in CallAudio::memberStatusUpdated (this=0x824cf28,
member=0x828a968) at callaudio.cpp:663
#2  0x08093739 in CallAudio::qt_invoke (this=0x824cf28, _id=2, _o=0xbfd1297c)
at callaudio.moc.cpp:103
#3  0xb78271f9 in QObject::activate_signal () from /usr/lib/libqt-mt.so.3
#4  0x080ca60a in SipCallMember::statusUpdated (this=0x828a968, t0=0x828a968)
at sipcall.moc.cpp:103
#5  0x080c2d3f in SipCallMember::incomingTransaction (this=0x828a968,
newtrans=0x82e36b8) at sipcall.cpp:663
#6  0x080c849c in SipCall::incomingRequest (this=0x8240670, message=0x82d8180)
at sipcall.cpp:994
#7  0x080c8b75 in SipCall::incomingMessage (this=0x8240670, message=0x82d8180)
at sipcall.cpp:862
#8  0x080d3884 in SipClient::parseMessage (this=0x821c8b0,
[EMAIL PROTECTED]) at sipclient.cpp:653
#9  0x080d5ba4 in SipClient::incomingMessage (this=0x821c8b0, socketfd=8)
at sipclient.cpp:484
#10 0x080d5d83 in SipClient::doSelect (this=0x821c8b0, block=false)
at sipclient.cpp:283
#11 0x0805a476 in KPhone::timerTick (this=0x820f0d8) at kphone.cpp:145
#12 0x08061364 in KPhone::qt_invoke (this=0x820f0d8, _id=64, _o=0xbfd153d8)
at kphone.moc.cpp:122

This patch fixes it for me (and I believe it's either right or there is 
a memory leak in kphone :-)

--- kphone/callaudio.cpp-old2005-12-08 16:11:02.0 +0100
+++ kphone/callaudio.cpp2005-12-08 16:11:09.0 +0100
@@ -635,9 +635,12 @@
if( !sdpm.isOnHold() ) {
if( output ) {
output-setCodec( getRtpCodec(), 
getRtpCodecNum() );
-   audioIn();
-   output-start();
-   input-start();
+   if (!input)
+   audioIn();
+   if (!input-running ()) {
+   output-start();
+   input-start();
+   }
} else if( jack_audioout ) {

 // jack_audioout-setCodec( getRtpCodec(), 
getRtpCodecNum() );


Thanks,

Koos Vriezen

***DISCLAIMER***
Bewijs van Afstand:
Dit emailbericht is slechts bestemd voor de personen aan wie het is gericht
en kan informatie bevatten die persoonlijk of vertrouwelijk is en niet
openbaar mag worden gemaakt zonder goedkeuring van de auteur.
Indien u dit bericht per vergissing heeft ontvangen, verzoeken wij u

Bug#329388: usb-storage module not auto loaded

2005-09-21 Thread Koos Vriezen
Package: hotplug
Version: 0.0.20040329-25

When I plugin my Kingston DataTraveler 2.0 USB Stick, the autoloading
stops with a
   usb 1-1.1: new full speed USB device using uhci_hcd and address 5
kernel message. If I run 
   usbmodules --device /proc/bus/usb/001/005
it returns usb-storage but this doesn't get loaded. Only after manual
modprobe usb-storage this and scsi_mod, sd_mod are pulled in and
everything seems to work fine.

For the sd_mod I have created a /etc/modprobe.d/usb file with contents
   install usb-storage modprobe -i usb-storage ; modprobe sd_mod ; true
This according the /usr/share/doc/hotplug/README.modules docu, which
also claims usb-storage should be detectable because modinfo list a
lot of usb:... aliases.

I've also used update-usbids to update the id file, and this type
device is listed.

Other packages I have installed, that may be important are:
- linux-image-2.6.12-1-686/testing uptodate 2.6.12-6
- udev/testing uptodate 0.068-2
- hal/testing uptodate 0.4.8-7
- usbutils/testing uptodate 0.70-8

I've also tried a custom kernel, to make sure the auto-load-modules is
turned on. But there is no difference.
Also attached the lspci -vv output.

Regards,

Koos Vriezen


***DISCLAIMER***
Bewijs van Afstand:
Dit emailbericht is slechts bestemd voor de personen aan wie het is gericht
en kan informatie bevatten die persoonlijk of vertrouwelijk is en niet
openbaar mag worden gemaakt zonder goedkeuring van de auteur.
Indien u dit bericht per vergissing heeft ontvangen, verzoeken wij u ons op
de hoogte te stellen en het bericht te vernietigen zonder het te kopiëren of
te distribueren.
Ons bedrijf staat niet in voor juiste en volledige overbrenging van de inhoud
van een verzonden bericht, noch voor de tijdige ontvangst daarvan.
Disclaimer:
This E-mail is for use of the intended recipient(s) only and can contain
information that is personal or confidential. It is prohibited to distribute
the content of this message without the author's prior permission.
If you have received it in error, please notify the sender and immediately
delete this message without distributing or retaining copies hereof.
Our company is not responsible for the comprehensiveness of this message nor
it's time of delivery.
*

Bus 001 Device 004: ID 046d:c309 Logitech, Inc. Internet Keyboard
Device Descriptor:
  bLength18
  bDescriptorType 1
  bcdUSB   1.10
  bDeviceClass0 (Defined at Interface level)
  bDeviceSubClass 0 
  bDeviceProtocol 0 
  bMaxPacketSize0 8
  idVendor   0x046d Logitech, Inc.
  idProduct  0xc309 Internet Keyboard
  bcdDevice   15.00
  iManufacturer   1 Logitech
  iProduct2 Logitech USB Keyboard
  iSerial 0 
  bNumConfigurations  1
  Configuration Descriptor:
bLength 9
bDescriptorType 2
wTotalLength   59
bNumInterfaces  2
bConfigurationValue 1
iConfiguration  0 
bmAttributes 0xa0
  Remote Wakeup
MaxPower  100mA
Interface Descriptor:
  bLength 9
  bDescriptorType 4
  bInterfaceNumber0
  bAlternateSetting   0
  bNumEndpoints   1
  bInterfaceClass 3 Human Interface Devices
  bInterfaceSubClass  1 Boot Interface Subclass
  bInterfaceProtocol  1 Keyboard
  iInterface  0 
HID Device Descriptor:
  bLength 9
  bDescriptorType33
  bcdHID   1.10
  bCountryCode0 Not supported
  bNumDescriptors 1
  bDescriptorType34 Report
  wDescriptorLength  64
 Report Descriptors: 
   ** UNAVAILABLE **
  Endpoint Descriptor:
bLength 7
bDescriptorType 5
bEndpointAddress 0x81  EP 1 IN
bmAttributes3
  Transfer TypeInterrupt
  Synch Type   None
  Usage Type   Data
wMaxPacketSize 0x0008  1x 8 bytes
bInterval  10
Interface Descriptor:
  bLength 9
  bDescriptorType 4
  bInterfaceNumber1
  bAlternateSetting   0
  bNumEndpoints   1
  bInterfaceClass 3 Human Interface Devices
  bInterfaceSubClass  0 No Subclass
  bInterfaceProtocol  0 None
  iInterface  0 
HID Device Descriptor:
  bLength 9
  bDescriptorType33
  bcdHID   1.10
  bCountryCode0 Not supported
  bNumDescriptors 1
  bDescriptorType34 Report
  wDescriptorLength 156
 Report Descriptors

Bug#328157: libqt3-mt: Qt's Q_EXPORT macro does not support gcc's -fvisibility

2005-09-14 Thread Koos Vriezen
http://bugs.kde.org/show_bug.cgi?id=101542 is closed. What exact issues
still remain for the 3.4 branch? Note that this is important for KDE,
since it solves more or less the slow application start up performance.
Better to have as much testing now and have a possibility to revert than
the other way around IMHO (unless you own Intel shares of course :-)).

Other than that, it's also for users own compilings that can't use
visiblity w/o that patch. Eg. I've some debian pkgs for KMPlayer on my
site for SID as well, and those unfortunately suffers from slower startup
due to this bug in Qt and I know that there is no problem with
-fvisibility=hidden. You could also fix Qt and comment out the checks
in the KDE admin dirs (like kubuntu does IIRC), though I don't recommend
it.

Regards,

Koos Vriezen


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#308745: Tomcat 4 fails to start with Kaffe; Security Manager issue

2005-05-15 Thread Koos Vriezen
Hi,

FWIW, using kaffe for kjas, the KDE applet server for konqueror, I get
this same error:

java -Djava.version=1.3 -classpath /opt/kde-cvs/kde3/share/apps/kjava/kjava.jar 
-Djava.security.manager=org.kde.kjas.server.KJASSecurityManager -Dkjas.debug=1 
-Dkjas.useKio org.kde.kjas.server.Main
Internal error: caught an unexpected exception.
Please check your CLASSPATH and your installation.
java/lang/ArrayIndexOutOfBoundsException
at java.lang.ClassLoader.getSystemClassLoader(ClassLoader.java:766)

W/o the security manager it somewhat works on simple applets (that is not
on sites like map24.com).
Note the -Djava.version=1.3 switch (which can be set in the 'Additional
java arguments' edit box), that prevents a Frame.setUndecorated(true)
call. Kaffe claims v1.4.2, but doesn't support this (error is
   java.awt.IllegalComponentStateException
   at java.awt.Frame.setUndecorated (Frame.java:596)
)

Thanks,
Koos


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#301007: wxTextCtrl::LoadFile has unicode to utf8 problem

2005-03-23 Thread Koos Vriezen
Package: libwxgtk2.5-dev
Version: 2.5.3.2

Hi,

From one of the tutorials referenced from the wxWidget site, there is
this example of using wxTextCtrl to load a text file with LoadFile. Now,
I seem to need to pass a wchar arg. otherwise I get 

text_edit.cpp: In member function `void BasicFrame::OnOpenFile(wxCommandEvent)
   ':
text_edit.cpp:77: error: conversion from `char[32]' to `const wxString' is
   ambiguous
/usr/include/wx-2.5/wx/string.h:646: error: candidates are:
   wxString::wxString(wchar_t, unsigned int) near match
/usr/include/wx-2.5/wx/string.h:635: error:
   wxString::wxString(int) near match

However if I do that (like Lmyfile.txt), I get this runtime error from gtk:

(text_edit:28235): Gtk-CRITICAL **: gtk_text_buffer_emit_insert: assertion 
`g_utf8_validate (text, len, NULL)' failed

So gtk wants utf8, but I can't pass it because of the wchar.

Thanks,
Koos

***DISCLAIMER***
Bewijs van Afstand:
Dit emailbericht is slechts bestemd voor de personen aan wie het is gericht
en kan informatie bevatten die persoonlijk of vertrouwelijk is en niet
openbaar mag worden gemaakt zonder goedkeuring van de auteur.
Indien u dit bericht per vergissing heeft ontvangen, verzoeken wij u ons op
de hoogte te stellen en het bericht te vernietigen zonder het te kopiëren of
te distribueren.
Ons bedrijf staat niet in voor juiste en volledige overbrenging van de inhoud
van een verzonden bericht, noch voor de tijdige ontvangst daarvan.
Disclaimer:
This E-mail is for use of the intended recipient(s) only and can contain
information that is personal or confidential. It is prohibited to distribute
the content of this message without the author's prior permission.
If you have received it in error, please notify the sender and immediately
delete this message without distributing or retaining copies hereof.
Our company is not responsible for the comprehensiveness of this message nor
it's time of delivery.
*


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]