Re: solution to the problem of orca and gecko not working in non-gnome environment

2014-03-11 Thread Halim Sahin
Hi, I would prefer to fix it in debian's directory structure and not in iceweasel package. It should be possible to use an upstream firefox without recompiling it under debian when using xfce etc. Just my two cents. MfG. Halim -- To UNSUBSCRIBE, email to

Re: solution to the problem of orca and gecko not working in non-gnome environment

2014-03-10 Thread Jarek Czekalski
It's reported as Mozilla bug under #743580, but seems like Multiarch is a Debian invention and a Debian only problem for now. So debian-accessibility list looks like the best place to develop a solution to this bug. The workaround with ln -s was posted on orca list quite a while ago [2]. The

solution to the problem of orca and gecko not working in non-gnome environment

2014-03-09 Thread am_dxer
In my XFCE environment, It appears that the problem is occurring from a Gtk module import path issue. I coppied the /usr/lib/x86_64-linux-gnu/gtk-2.0/modules directory to /usr/lib/gtk-2.0 and things work for me in the Mozilla apps. -- To UNSUBSCRIBE, email to

Re: solution to the problem of orca and gecko not working in non-gnome environment

2014-03-09 Thread Jason White
I think I've found it with a quick search of the Mozilla repository. mozilla/accessible/src/atk/Platform.cpp, line 81: 81 #if defined(LINUX) defined(__x86_64__) 82 libPath.Append(:/usr/lib64:/usr/lib); If you change line 82 to

Re: solution to the problem of orca and gecko not working in non-gnome environment

2014-03-09 Thread Cyril Brulebois
Jason White ja...@jasonjgw.net (2014-03-10): I think I've found it with a quick search of the Mozilla repository. mozilla/accessible/src/atk/Platform.cpp, line 81: 81 #if defined(LINUX) defined(__x86_64__) 82 libPath.Append(:/usr/lib64:/usr/lib); If you change line 82 to

Re: solution to the problem of orca and gecko not working in non-gnome environment

2014-03-09 Thread am_dxer
On Sun, Mar 9, 2014, at 07:21 PM, Cyril Brulebois wrote: Jason White ja...@jasonjgw.net (2014-03-10): I think I've found it with a quick search of the Mozilla repository. mozilla/accessible/src/atk/Platform.cpp, line 81: 81 #if defined(LINUX) defined(__x86_64__) 82

Re: solution to the problem of orca and gecko not working in non-gnome environment

2014-03-09 Thread Luke Yelavich
On Mon, Mar 10, 2014 at 10:34:00AM EST, am_d...@fastmail.fm wrote: On Sun, Mar 9, 2014, at 07:21 PM, Cyril Brulebois wrote: Jason White ja...@jasonjgw.net (2014-03-10): I think I've found it with a quick search of the Mozilla repository. mozilla/accessible/src/atk/Platform.cpp, line