Difference between revisions of "Fast User Switch Applet"
From CBLFS
Jump to navigationJump to search (→Multilib) |
(→Required) |
||
(3 intermediate revisions by 2 users not shown) | |||
Line 6: | Line 6: | ||
---- | ---- | ||
+ | |||
+ | {{Blank-Package-Introduction}} | ||
== Dependencies == | == Dependencies == | ||
Line 12: | Line 14: | ||
* [[GNOME Panel]] | * [[GNOME Panel]] | ||
* [[GDM]] | * [[GDM]] | ||
+ | === Optional === | ||
+ | * [[GNOME System Tools]] (For users/groups admin program) | ||
+ | |||
+ | == 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 == | == Non-Multilib == | ||
Line 18: | Line 28: | ||
./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 |
Latest revision as of 06:51, 19 August 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 |
---|
Contents
Introduction to Fast User Switch Applet
Project Homepage: Unknown
Dependencies
Required
Optional
- GNOME System Tools (For users/groups admin program)
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