Difference between revisions of "Fast User Switch Applet"
From CBLFS
Jump to navigationJump to search (→Multilib) |
|||
Line 18: | Line 18: | ||
./configure --prefix=${GNOME_PREFIX} --sysconfdir=/etc/gnome \ | ./configure --prefix=${GNOME_PREFIX} --sysconfdir=/etc/gnome \ | ||
− | --libexecdir=${GNOME_PREFIX}/lib/ | + | --libexecdir=${GNOME_PREFIX}/lib/fast-user-switch-applet \ |
--with-gdm-config=/etc/gnome/gdm/custom.conf && | --with-gdm-config=/etc/gnome/gdm/custom.conf && | ||
make | make |
Revision as of 12:23, 18 March 2007
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
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