Difference between revisions of "Fast User Switch Applet"

From CBLFS
Jump to navigationJump to search
(Required)
 
(2 intermediate revisions by the same user 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 ==

Latest revision as of 07: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

Introduction to Fast User Switch Applet

Project Homepage: Unknown

Dependencies

Required

Optional

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