ac39221672
Release notes are available at http://www.x.org/X11R6.8.2/doc/RELNOTES.html Thanks to kris and krion for running several cluster test builds, maintainers of GNOME for prompt responses, portmgr for postponing ports freeze for this update, testers on FreeBSD-X11@ list and others that I might have mised here. Also included: - fix for ATI Mobility on Dell Inspiron 7500 (obtained from Marc Aurele La France; obtained and tested by julian) - fix for kbd driver on Sparc64 (tested by Aaron Dudek, Michael G. Jung and Matthias Muthmann), which still appears to have problems with some keyboards - so - fix for kbd driver on PC98 (reported and tested by NAKAJI Hiroyuki; PR ports/77217) - fix for i810 on HP D530 (obtained from Egbert Eich; obtained and tested by Anders Nor Berle; PR ports/74757)
15 lines
512 B
Bash
15 lines
512 B
Bash
#!/bin/sh
|
|
|
|
LOCALDEF=$WRKDIR/.config
|
|
|
|
rm -f $LOCALDEF
|
|
echo "#define BuildServer NO" >> $LOCALDEF
|
|
echo "#define BuildLBX NO" >> $LOCALDEF
|
|
echo "#define BuildXterm NO" >> $LOCALDEF
|
|
echo "#define BuildFontServer NO" >> $LOCALDEF
|
|
echo "#define BuildPlugin NO" >> $LOCALDEF
|
|
echo "#define UseInstalledPrograms YES" >> $LOCALDEF
|
|
echo "#define UseInstalledLibraries YES" >> $LOCALDEF
|
|
echo "#define StandardIncludes -I${PREFIX}/include" >> $LOCALDEF
|
|
|
|
sh $PORTSDIR/x11-servers/xorg-server/scripts/configure.gen
|