On Wed, Mar 28, 2007 at 09:23:20AM +0200, Brice Goglin wrote: > tags 412069 +wontfix > thank you > > > > Trying to summarize: > > [...] > > So I would personally not enable any of these options by > default (hence tagging as wontfix). It is already very late > in the release cycle, changing the default config now is > too dangerous according to all the above.
Ok. Can we add hooks to permit that unofficial beryl packages for etch add the missing bits in xorg.conf without breaking the debconf-based generation? See attached patch. -- Robert Millan ACK STORM, S.L. - http://www.ackstorm.es/
diff -ur xorg-7.1.0.old/debian/local/dexconf xorg-7.1.0/debian/local/dexconf --- xorg-7.1.0.old/debian/local/dexconf 2007-02-13 11:02:09.000000000 +0100 +++ xorg-7.1.0/debian/local/dexconf 2007-03-28 10:40:00.000000000 +0200 @@ -351,6 +351,7 @@ if [ "$DEVICE_USE_FBDEV" = "true" ]; then printf "\tOption\t\t\"UseFBDev\"\t\t\"$DEVICE_USE_FBDEV\"\n" >&4 fi +(shopt -s nullglob ; for i in /etc/X11/xserver.debconf.d/device/* ; do $i >&4 ; done) printf "EndSection\n" >&4 ### MONITOR @@ -428,6 +429,12 @@ EndSection SECTION +### Extensions +exec 4>"$DEXCONFTMPDIR/Extensions" +echo "Section \"Extensions\"" >&4 +(shopt -s nullglob ; for i in /etc/X11/xserver.debconf.d/extensions/* ; do $i >&4 ; done) +echo "EndSection" >&4 + # Close file descriptor 4 before we delete temporary files exec 4<&- @@ -443,7 +450,7 @@ SPACER= for SECTION in Header Files Module InputDeviceKeyboard InputDeviceMouse \ - Device Monitor Screen ServerLayout DRI; do + Device Monitor Screen ServerLayout DRI Extensions; do if [ -e "$DEXCONFTMPDIR/$SECTION" ]; then eval $SPACER cat "$DEXCONFTMPDIR/$SECTION" >>"$OUTFILE"