Fast User Switch Applet

From CBLFS
Revision as of 16:19, 25 March 2007 by Jciccone (talk | contribs)
Jump to navigationJump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.
Download Source: http://ftp.gnome.org/pub/GNOME/sources/fast-user-switch-applet/2.22/fast-user-switch-applet-2.22.0.tar.bz2

Dependencies

Required

Configuration Information

If you build GDM with usermode support then you need to pass the following to configure:

--with-gdm-setup="${GNOME_PREFIX}/bin/gdmsetup"

Non-Multilib

Compile the package:

./configure --prefix=${GNOME_PREFIX} --sysconfdir=/etc/gnome \
    --libexecdir=${GNOME_PREFIX}/lib/fast-user-switch-applet \
    --with-gdm-config=/etc/gnome/gdm/custom.conf &&
make

Install the package

make install

Multilib

32Bit

Compile the package:

export PKG_CONFIG_PATH="${PKG_CONFIG_PATH32}" &&
CC="gcc ${BUILD32}" USE_ARCH=32 \
./configure --prefix=${GNOME_PREFIX} --sysconfdir=/etc/gnome \
    --libexecdir=${GNOME_PREFIX}/lib/fast-user-switch-applet \
    --with-gdm-config=/etc/gnome/gdm/custom.conf &&
make

Install the package

make install &&
unset PKG_CONFIG_PATH

N32

Compile the package:

export PKG_CONFIG_PATH="${PKG_CONFIG_PATHN32}" &&
CC="gcc ${BUILDN32}" USE_ARCH=n32 \
./configure --prefix=${GNOME_PREFIX} --libdir=${GNOME_PREFIX}/lib32 \
     --sysconfdir=/etc/gnome --with-gdm-config=/etc/gnome/gdm/custom.conf \
    --libexecdir=${GNOME_PREFIX}/lib32/fast-user-switch-applet &&
make

Install the package

make install &&
unset PKG_CONFIG_PATH

64Bit

Compile the package:

export PKG_CONFIG_PATH="${PKG_CONFIG_PATH64}" &&
CC="gcc ${BUILD64}" USE_ARCH=64 \
./configure --prefix=${GNOME_PREFIX} --libdir=${GNOME_PREFIX}/lib64 \
     --sysconfdir=/etc/gnome --with-gdm-config=/etc/gnome/gdm/custom.conf \
    --libexecdir=${GNOME_PREFIX}/lib64/fast-user-switch-applet &&
make

Install the package

make install &&
unset PKG_CONFIG_PATH