Browse Source

Added xinerama option to xfree86:

[*]    Enable Xinerama support globally


git-svn-id: http://www.rocklinux.org/svn/rock-linux/trunk@1349 c5f82cb5-29bc-0310-9cd0-bff59a50e3bc
rocklinux
Rene Rebe 21 years ago
parent
commit
8e3f74c89a
3 changed files with 16 additions and 6 deletions
  1. +1
    -0
      Documentation/Developers/CHANGELOG-RENE
  2. +7
    -2
      package/x11/xfree86/config.hlp
  3. +8
    -4
      package/x11/xfree86/config.in

+ 1
- 0
Documentation/Developers/CHANGELOG-RENE

@ -5,6 +5,7 @@
build style
- Dennis Wecker: sylpheed
- Piotr Esden-Tempski: curl dietlibc fix V2
- added xinerama option to xfree86
*) 2003-09-07 (2.0.0-rc1 - 2.0.0-rc2)

package/x11/xfree86-cvs/config.hlp → package/x11/xfree86/config.hlp

@ -24,5 +24,10 @@ MENU_PKG_XFREE86
Here you'll find options for XFree86.
ROCKCFG_PKG_XFREE86_CVS
Please check here if you want to use a current CVS-Snapshot instead
of a release.
This options enables the build a current CVS-Snapshot instead
of a release/snapshot package.
ROCKCFG_PKG_XFREE86_XINERAMA
This options enables support for Xinerama globally - so many packages
are build with special multi-head support.

package/x11/xfree86-cvs/config.in → package/x11/xfree86/config.in

@ -20,16 +20,20 @@
#
# --- ROCK-COPYRIGHT-NOTE-END ---
if pkgcheck xfree86 X ; then
menu_begin MENU_PKG_XFREE86 'XFree86 Options'
menu_begin MENU_PKG_XFREE86 'XFree86 Options'
bool 'Use a CVS checkout instead of last stable release' \
ROCKCFG_PKG_XFREE86_CVS 0
if [ "$ROCKCFG_PKG_XFREE86_CVS" = 1 ] ; then
pkgenable xfree86-cvs
pkgremove xfree86
else
pkgenable xfree86
pkgremove xfree86-cvs
fi
menu_end
fi
bool 'Enable Xinerama support globally' \
ROCKCFG_PKG_XFREE86_XINERAMA 1
menu_end

Loading…
Cancel
Save