You are not logged in.
at-spi is spewing out that warning annoyingly often, mainly when using geany, so here's a replacement PKGBUILD to turn the message off:
pkgname=at-spi
pkgver=1.22.1
pkgrel=1
pkgdesc="Assistive Technology Service Provider Interface"
arch=(i686 x86_64)
url="http://www.gnome.org"
license=('GPL')
depends=('libbonobo>=2.22.0' 'libxevie' 'libxtst' 'libsm' 'gtk2>=2.12.8-2')
makedepends=('perlxml' 'pkgconfig' 'gail>=1.22.0')
options=('!libtool')
source=(http://ftp.gnome.org/pub/gnome/sources/${pkgname}/1.22/${pkgname}-${pkgver}.tar.bz2)
md5sums=('2ee1b35ef25e753e6bac840a418608f5')
build() {
cd ${startdir}/src/${pkgname}-${pkgver}
# Turn the stupid warning off:
# (geany:6335): atk-bridge-WARNING **: failure: no device event controller found.
sed -i -e 's:g_warning (_("failure\: no device event controller found.\n"));::' atk-bridge/bridge.c || return 1
./configure --prefix=/usr --sysconfdir=/etc \
--localstatedir=/var --disable-static \
--libexecdir=/usr/lib/at-spi || return 1
make || return 1
make DESTDIR=${startdir}/pkg install || return 1
}Then restart xorg.
Last edited by brebs (2008-04-12 21:18:25)
Improve your desktop responsiveness and font rendering and ALSA sound and BusyBox init
Offline