You are not logged in.
Using thegnu's PKGBUILD, updated to download the latest version of rox-session:
gcc -march=i686 -O2 -pipe -Wl,-O1 -Wall -Wmissing-prototypes -I/usr/X11R6/include `pkg-config --cflags gtk+-2.0 libxml-2.0 dbus-1 dbus-glib-1` -I. -c -o dbus.o dbus.c
dbus.c: In function `connect_to_bus':
dbus.c:298: warning: implicit declaration of function `dbus_bus_service_exists'
dbus.c:311: warning: implicit declaration of function `dbus_bus_acquire_service'
dbus.c:325: error: `DBUS_PATH_ORG_FREEDESKTOP_LOCAL' undeclared (first use in this function)
dbus.c:325: error: (Each undeclared identifier is reported only once
dbus.c:325: error: for each function it appears in.)
dbus.c:326: error: `DBUS_INTERFACE_ORG_FREEDESKTOP_LOCAL' undeclared (first use in this function)
make: *** [dbus.o] Error 1
Compile failed
Press Return...
(Bizarrely, ABS will create a package even if the compile fails, and install it if the -i option is used. :? )
Offline
is it possible that you don't have all the deps installed?
Offline
could you post the PKGBUILD? maybe appending || return 1 to make install would have stopped it from completing the build after the error...
Offline
is it possible that you don't have all the deps installed?
Nope, checked, and used the -s option.
could you post the PKGBUILD? maybe appending || return 1 to make install would have stopped it from completing the build after the error...
# $Id$
# Contributor: Nathan Curry <thegnu@gmail.com>
pkgname=rox-session
pkgver=0.1.25
pkgrel=1
groups=('rox-desktop')
pkgdesc="Session manager for the ROX desktop environment"
url="http://dl.sourceforge.net/sourceforge/rox/$_srcname-$pkgver.tgz"
depends=('rox-lib' 'glib2>=2.4' 'dbus' 'python')
source=(http://dl.sourceforge.net/sourceforge/rox/ROX-Session-$pkgver.tgz)
build() {
cd $startdir/src/ROX-Session-$pkgver/ROX-Session
./AppRun --compile
cd ..
mkdir -p $startdir/pkg/usr/apps/
cp -rp ROX-Session $startdir/pkg/usr/apps/
mkdir -p $startdir/pkg/usr/bin
echo "#!/bin/sh" > "$startdir/pkg/usr/bin/$pkgname"
echo "exec /usr/apps/ROX-Session/AppRun "$@"" >> "$startdir/pkg/usr/bin/$pkgname"
chmod a+x $startdir/pkg/usr/bin/$pkgname
}
Offline
could be that rox-session hasnt updated to the new dbus api?
Offline
New dbus api? Is the copy of dbus in the repo out of date?
Offline
New dbus api? Is the copy of dbus in the repo out of date?
No, its fine its up to date, rox-session isnt.
Offline
Rats.
Offline
is there a cvs version of rox-session? if so, that may be your answer.
Offline