Merging XORG-CURRENT into trunk
Showing
with
19766 additions
and
3238 deletions
+19766
-3238
- XpConfig/C/print/models/SPSPARC2/model-config XpConfig/C/print/models/SPSPARC2/model-config +15 -10
- XpConfig/en_US/print/attributes/document XpConfig/en_US/print/attributes/document +13 -0
- Xprint/AttrValid.c Xprint/AttrValid.c +2 -4
- Xprint/AttrValid.h Xprint/AttrValid.h +2 -9
- Xprint/DiPrint.h Xprint/DiPrint.h +0 -2
- Xprint/Init.c Xprint/Init.c +202 -82
- Xprint/Oid.c Xprint/Oid.c +8 -13
- Xprint/Oid.h Xprint/Oid.h +1 -2
- Xprint/OidDefs.h Xprint/OidDefs.h +8 -0
- Xprint/OidStrs.h Xprint/OidStrs.h +136 -132
- Xprint/Util.c Xprint/Util.c +1 -1
- Xprint/ValTree.c Xprint/ValTree.c +1 -1
- Xprint/attributes.c Xprint/attributes.c +102 -35
- Xprint/attributes.h Xprint/attributes.h +24 -25
- Xprint/ddxInit.c Xprint/ddxInit.c +26 -13
- Xprint/etc/Xsession.d/cde_xsessiond_xprint.sh Xprint/etc/Xsession.d/cde_xsessiond_xprint.sh +30 -0
- Xprint/etc/profile.d/xprint.csh Xprint/etc/profile.d/xprint.csh +16 -0
- Xprint/etc/profile.d/xprint.sh Xprint/etc/profile.d/xprint.sh +16 -0
- Xprint/mediaSizes.c Xprint/mediaSizes.c +20 -8
- Xprint/pcl/Pcl.h Xprint/pcl/Pcl.h +1 -1
- Xprint/pcl/PclArc.c Xprint/pcl/PclArc.c +1 -1
- Xprint/pcl/PclArea.c Xprint/pcl/PclArea.c +1 -1
- Xprint/pcl/PclColor.c Xprint/pcl/PclColor.c +1 -1
- Xprint/pcl/PclCursor.c Xprint/pcl/PclCursor.c +1 -1
- Xprint/pcl/PclFonts.c Xprint/pcl/PclFonts.c +1 -1
- Xprint/pcl/PclGC.c Xprint/pcl/PclGC.c +1 -1
- Xprint/pcl/PclInit.c Xprint/pcl/PclInit.c +1 -1
- Xprint/pcl/PclLine.c Xprint/pcl/PclLine.c +1 -1
- Xprint/pcl/PclMisc.c Xprint/pcl/PclMisc.c +1 -1
- Xprint/pcl/PclPixel.c Xprint/pcl/PclPixel.c +1 -1
- Xprint/pcl/PclPixmap.c Xprint/pcl/PclPixmap.c +1 -1
- Xprint/pcl/PclPolygon.c Xprint/pcl/PclPolygon.c +1 -1
- Xprint/pcl/PclPrint.c Xprint/pcl/PclPrint.c +1 -1
- Xprint/pcl/PclSFonts.c Xprint/pcl/PclSFonts.c +1 -1
- Xprint/pcl/PclSpans.c Xprint/pcl/PclSpans.c +1 -1
- Xprint/pcl/PclText.c Xprint/pcl/PclText.c +1 -1
- Xprint/pcl/PclWindow.c Xprint/pcl/PclWindow.c +1 -1
- Xprint/pcl/Pclmap.h Xprint/pcl/Pclmap.h +1 -1
- Xprint/ps/Ps.h Xprint/ps/Ps.h +80 -14
- Xprint/ps/PsArea.c Xprint/ps/PsArea.c +69 -69
- Xprint/ps/PsAttVal.c Xprint/ps/PsAttVal.c +87 -12
- Xprint/ps/PsAttr.c Xprint/ps/PsAttr.c +1 -1
- Xprint/ps/PsCache.c Xprint/ps/PsCache.c +97 -97
- Xprint/ps/PsColor.c Xprint/ps/PsColor.c +1 -1
- Xprint/ps/PsFTFonts.c Xprint/ps/PsFTFonts.c +80 -0
- Xprint/ps/PsFonts.c Xprint/ps/PsFonts.c +690 -6
- Xprint/ps/PsGC.c Xprint/ps/PsGC.c +23 -1
- Xprint/ps/PsInit.c Xprint/ps/PsInit.c +31 -18
- Xprint/ps/PsLine.c Xprint/ps/PsLine.c +0 -1
- Xprint/ps/PsMisc.c Xprint/ps/PsMisc.c +0 -1
- Xprint/ps/PsPixel.c Xprint/ps/PsPixel.c +0 -1
- Xprint/ps/PsPixmap.c Xprint/ps/PsPixmap.c +6 -6
- Xprint/ps/PsPolygon.c Xprint/ps/PsPolygon.c +2 -2
- Xprint/ps/PsPrint.c Xprint/ps/PsPrint.c +35 -8
- Xprint/ps/PsSpans.c Xprint/ps/PsSpans.c +1 -1
- Xprint/ps/PsText.c Xprint/ps/PsText.c +221 -113
- Xprint/ps/PsWindow.c Xprint/ps/PsWindow.c +9 -7
- Xprint/ps/psout.c Xprint/ps/psout.c +229 -150
- Xprint/ps/psout.h Xprint/ps/psout.h +83 -12
- Xprint/ps/psout_ft.c Xprint/ps/psout_ft.c +330 -0
- Xprint/ps/psout_ftpstype1.c Xprint/ps/psout_ftpstype1.c +180 -0
- Xprint/ps/psout_ftpstype3.c Xprint/ps/psout_ftpstype3.c +463 -0
- Xprint/raster/Raster.c Xprint/raster/Raster.c +1 -1
- Xprint/raster/Raster.h Xprint/raster/Raster.h +2 -3
- Xprint/raster/RasterAttVal.c Xprint/raster/RasterAttVal.c +1 -1
- Xprint/spooler.c Xprint/spooler.c +190 -0
- Xprint/spooler.h Xprint/spooler.h +72 -0
- afb/afb.h afb/afb.h +1 -1
- afb/afbbitblt.c afb/afbbitblt.c +1 -1
- afb/afbblt.c afb/afbblt.c +1 -1
- afb/afbbres.c afb/afbbres.c +1 -1
- afb/afbbresd.c afb/afbbresd.c +1 -1
- afb/afbbstore.c afb/afbbstore.c +1 -1
- afb/afbclip.c afb/afbclip.c +1 -1
- afb/afbcmap.c afb/afbcmap.c +1 -1
- afb/afbfillarc.c afb/afbfillarc.c +1 -1
- afb/afbfillrct.c afb/afbfillrct.c +1 -1
- afb/afbfillsp.c afb/afbfillsp.c +1 -1
- afb/afbfont.c afb/afbfont.c +1 -1
- afb/afbgc.c afb/afbgc.c +1 -1
- afb/afbgetsp.c afb/afbgetsp.c +1 -1
- afb/afbhrzvert.c afb/afbhrzvert.c +1 -1
- afb/afbimage.c afb/afbimage.c +1 -1
- afb/afbimggblt.c afb/afbimggblt.c +1 -1
- afb/afbline.c afb/afbline.c +1 -1
- afb/afbmisc.c afb/afbmisc.c +1 -1
- afb/afbpixmap.c afb/afbpixmap.c +1 -1
- afb/afbply1rct.c afb/afbply1rct.c +1 -1
- afb/afbplygblt.c afb/afbplygblt.c +1 -1
- afb/afbpntarea.c afb/afbpntarea.c +1 -1
- afb/afbpntwin.c afb/afbpntwin.c +1 -1
- afb/afbpolypnt.c afb/afbpolypnt.c +1 -1
- afb/afbpushpxl.c afb/afbpushpxl.c +1 -1
- afb/afbscrinit.c afb/afbscrinit.c +1 -1
- afb/afbsetsp.c afb/afbsetsp.c +1 -1
- afb/afbtegblt.c afb/afbtegblt.c +1 -1
- afb/afbtile.c afb/afbtile.c +1 -1
- afb/afbwindow.c afb/afbwindow.c +1 -1
- afb/afbzerarc.c afb/afbzerarc.c +1 -1
- cfb/cfb.h cfb/cfb.h +1 -1
- cfb/cfb8bit.c cfb/cfb8bit.c +1 -1
- cfb/cfb8bit.h cfb/cfb8bit.h +1 -1
- cfb/cfb8line.c cfb/cfb8line.c +1 -1
- cfb/cfballpriv.c cfb/cfballpriv.c +1 -1
- cfb/cfbbitblt.c cfb/cfbbitblt.c +1 -1
- cfb/cfbblt.c cfb/cfbblt.c +1 -1
- cfb/cfbbres.c cfb/cfbbres.c +1 -1
- cfb/cfbbresd.c cfb/cfbbresd.c +1 -1
- cfb/cfbbstore.c cfb/cfbbstore.c +1 -1
- cfb/cfbcmap.c cfb/cfbcmap.c +1 -1
- cfb/cfbcppl.c cfb/cfbcppl.c +1 -1
- cfb/cfbfillarc.c cfb/cfbfillarc.c +1 -1
- cfb/cfbfillrct.c cfb/cfbfillrct.c +1 -1
- cfb/cfbfillsp.c cfb/cfbfillsp.c +1 -1
- cfb/cfbgc.c cfb/cfbgc.c +1 -1
- cfb/cfbgetsp.c cfb/cfbgetsp.c +1 -1
- cfb/cfbglblt8.c cfb/cfbglblt8.c +1 -1
- cfb/cfbhrzvert.c cfb/cfbhrzvert.c +1 -1
- cfb/cfbigblt8.c cfb/cfbigblt8.c +1 -1
- cfb/cfbimage.c cfb/cfbimage.c +1 -1
- cfb/cfbline.c cfb/cfbline.c +1 -1
- cfb/cfbmap.h cfb/cfbmap.h +1 -1
- cfb/cfbmskbits.c cfb/cfbmskbits.c +1 -1
- cfb/cfbmskbits.h cfb/cfbmskbits.h +1 -1
- cfb/cfbpixmap.c cfb/cfbpixmap.c +1 -1
- cfb/cfbply1rct.c cfb/cfbply1rct.c +1 -1
- cfb/cfbpntwin.c cfb/cfbpntwin.c +2 -1
- cfb/cfbpolypnt.c cfb/cfbpolypnt.c +1 -1
- cfb/cfbpush8.c cfb/cfbpush8.c +1 -1
- cfb/cfbrctstp8.c cfb/cfbrctstp8.c +1 -1
- cfb/cfbrrop.c cfb/cfbrrop.c +1 -1
- cfb/cfbrrop.h cfb/cfbrrop.h +1 -1
- cfb/cfbscrinit.c cfb/cfbscrinit.c +1 -1
- cfb/cfbsetsp.c cfb/cfbsetsp.c +1 -1
- cfb/cfbsolid.c cfb/cfbsolid.c +1 -1
- cfb/cfbtab.h cfb/cfbtab.h +1 -1
- cfb/cfbteblt8.c cfb/cfbteblt8.c +1 -1
- cfb/cfbtegblt.c cfb/cfbtegblt.c +1 -1
- cfb/cfbtile32.c cfb/cfbtile32.c +1 -1
- cfb/cfbtileodd.c cfb/cfbtileodd.c +1 -1
- cfb/cfbwindow.c cfb/cfbwindow.c +1 -1
- cfb/cfbzerarc.c cfb/cfbzerarc.c +1 -1
- cfb/stip68kgnu.h cfb/stip68kgnu.h +1 -1
- cfb/stipsparc.s cfb/stipsparc.s +1 -1
- cfb/stipsprc32.s cfb/stipsprc32.s +1 -1
- cfb24/cfbrrop24.h cfb24/cfbrrop24.h +1 -1
- dbe/dbe.c dbe/dbe.c +2 -1
- dbe/dbestruct.h dbe/dbestruct.h +1 -1
- dbe/midbe.c dbe/midbe.c +1 -1
- dbe/midbe.h dbe/midbe.h +1 -1
- dix/atom.c dix/atom.c +1 -1
- dix/colormap.c dix/colormap.c +2 -1
- dix/cursor.c dix/cursor.c +1 -1
- dix/devices.c dix/devices.c +1 -1
- dix/dispatch.c dix/dispatch.c +31 -23
- dix/dispatch.h dix/dispatch.h +1 -1
- dix/dixfonts.c dix/dixfonts.c +29 -2
- dix/dixutils.c dix/dixutils.c +1 -1
- dix/events.c dix/events.c +29 -21
- dix/extension.c dix/extension.c +1 -1
- dix/gc.c dix/gc.c +1 -1
- dix/globals.c dix/globals.c +2 -1
- dix/grabs.c dix/grabs.c +1 -1
- dix/main.c dix/main.c +31 -21
- dix/pixmap.c dix/pixmap.c +1 -1
- dix/privates.c dix/privates.c +1 -1
- dix/property.c dix/property.c +1 -1
- dix/resource.c dix/resource.c +29 -2
- dix/swaprep.c dix/swaprep.c +1 -1
- dix/swapreq.c dix/swapreq.c +1 -1
- dix/tables.c dix/tables.c +1 -1
- dix/window.c dix/window.c +30 -22
- dix/xpstubs.c dix/xpstubs.c +10 -10
- doc/smartsched doc/smartsched +1 -1
- fb/fb.h fb/fb.h +2 -2
- fb/fb24_32.c fb/fb24_32.c +1 -1
- fb/fb24_32.h fb/fb24_32.h +1 -1
- fb/fballpriv.c fb/fballpriv.c +1 -1
- fb/fbarc.c fb/fbarc.c +1 -1
- fb/fbbits.c fb/fbbits.c +1 -1
- fb/fbbits.h fb/fbbits.h +1 -1
- fb/fbblt.c fb/fbblt.c +1 -1
- fb/fbbltone.c fb/fbbltone.c +1 -1
- fb/fbbstore.c fb/fbbstore.c +1 -1
- fb/fbcmap.c fb/fbcmap.c +1 -1
- fb/fbcompose.c fb/fbcompose.c +2 -1
- fb/fbcopy.c fb/fbcopy.c +1 -1
- fb/fbfill.c fb/fbfill.c +1 -1
- fb/fbfillrect.c fb/fbfillrect.c +1 -1
- fb/fbfillsp.c fb/fbfillsp.c +1 -1
- fb/fbgc.c fb/fbgc.c +2 -1
- fb/fbgetsp.c fb/fbgetsp.c +1 -1
- fb/fbglyph.c fb/fbglyph.c +2 -1
- fb/fbimage.c fb/fbimage.c +1 -1
- fb/fbline.c fb/fbline.c +1 -1
- fb/fboverlay.c fb/fboverlay.c +1 -1
- fb/fboverlay.h fb/fboverlay.h +1 -1
- fb/fbpict.c fb/fbpict.c +1 -1
- fb/fbpict.h fb/fbpict.h +1 -1
- fb/fbpixmap.c fb/fbpixmap.c +1 -1
- fb/fbpoint.c fb/fbpoint.c +1 -1
- fb/fbpush.c fb/fbpush.c +1 -1
- fb/fbrop.h fb/fbrop.h +1 -1
- fb/fbscreen.c fb/fbscreen.c +1 -1
- fb/fbseg.c fb/fbseg.c +1 -1
- fb/fbsetsp.c fb/fbsetsp.c +1 -1
- fb/fbsolid.c fb/fbsolid.c +1 -1
- fb/fbstipple.c fb/fbstipple.c +1 -1
- fb/fbtile.c fb/fbtile.c +1 -1
- fb/fbtrap.c fb/fbtrap.c +1 -1
- fb/fbutil.c fb/fbutil.c +1 -1
- fb/fbwindow.c fb/fbwindow.c +2 -1
- hw/darwin/XDarwin.man hw/darwin/XDarwin.man +4 -4
- hw/darwin/bundle/Dutch.lproj/Credits.rtf hw/darwin/bundle/Dutch.lproj/Credits.rtf +11 -1
- hw/darwin/bundle/Dutch.lproj/MainMenu.nib/objects.nib hw/darwin/bundle/Dutch.lproj/MainMenu.nib/objects.nib +0 -0
- hw/darwin/bundle/Dutch.lproj/XDarwinHelp.html.cpp hw/darwin/bundle/Dutch.lproj/XDarwinHelp.html.cpp +103 -1
- hw/darwin/bundle/English.lproj/Credits.rtf hw/darwin/bundle/English.lproj/Credits.rtf +11 -1
- hw/darwin/bundle/English.lproj/InfoPlist.strings.cpp hw/darwin/bundle/English.lproj/InfoPlist.strings.cpp +2 -2
- hw/darwin/bundle/English.lproj/Localizable.strings hw/darwin/bundle/English.lproj/Localizable.strings +1 -1
- hw/darwin/bundle/English.lproj/MainMenu.nib/objects.nib hw/darwin/bundle/English.lproj/MainMenu.nib/objects.nib +0 -0
- hw/darwin/bundle/English.lproj/XDarwinHelp.html.cpp hw/darwin/bundle/English.lproj/XDarwinHelp.html.cpp +10 -17
- hw/darwin/bundle/French.lproj/Credits.rtf hw/darwin/bundle/French.lproj/Credits.rtf +11 -1
- hw/darwin/bundle/French.lproj/MainMenu.nib/objects.nib hw/darwin/bundle/French.lproj/MainMenu.nib/objects.nib +0 -0
- hw/darwin/bundle/French.lproj/XDarwinHelp.html.cpp hw/darwin/bundle/French.lproj/XDarwinHelp.html.cpp +11 -17
- hw/darwin/bundle/German.lproj/Credits.rtf hw/darwin/bundle/German.lproj/Credits.rtf +11 -1
- hw/darwin/bundle/German.lproj/MainMenu.nib/objects.nib hw/darwin/bundle/German.lproj/MainMenu.nib/objects.nib +0 -0
- hw/darwin/bundle/German.lproj/XDarwinHelp.html.cpp hw/darwin/bundle/German.lproj/XDarwinHelp.html.cpp +40 -34
- hw/darwin/bundle/Japanese.lproj/Credits.rtf hw/darwin/bundle/Japanese.lproj/Credits.rtf +100 -82
- hw/darwin/bundle/Japanese.lproj/MainMenu.nib/objects.nib hw/darwin/bundle/Japanese.lproj/MainMenu.nib/objects.nib +0 -0
- hw/darwin/bundle/Japanese.lproj/XDarwinHelp.html.cpp hw/darwin/bundle/Japanese.lproj/XDarwinHelp.html.cpp +141 -149
- hw/darwin/bundle/Portuguese.lproj/Credits.rtf hw/darwin/bundle/Portuguese.lproj/Credits.rtf +11 -1
- hw/darwin/bundle/Portuguese.lproj/MainMenu.nib/objects.nib hw/darwin/bundle/Portuguese.lproj/MainMenu.nib/objects.nib +0 -0
- hw/darwin/bundle/Portuguese.lproj/XDarwinHelp.html.cpp hw/darwin/bundle/Portuguese.lproj/XDarwinHelp.html.cpp +22 -27
- hw/darwin/bundle/Spanish.lproj/Credits.rtf hw/darwin/bundle/Spanish.lproj/Credits.rtf +11 -1
- hw/darwin/bundle/Spanish.lproj/MainMenu.nib/objects.nib hw/darwin/bundle/Spanish.lproj/MainMenu.nib/objects.nib +0 -0
- hw/darwin/bundle/Spanish.lproj/XDarwinHelp.html.cpp hw/darwin/bundle/Spanish.lproj/XDarwinHelp.html.cpp +10 -15
- hw/darwin/bundle/Swedish.lproj/Credits.rtf hw/darwin/bundle/Swedish.lproj/Credits.rtf +11 -1
- hw/darwin/bundle/Swedish.lproj/MainMenu.nib/objects.nib hw/darwin/bundle/Swedish.lproj/MainMenu.nib/objects.nib +0 -0
- hw/darwin/bundle/Swedish.lproj/XDarwinHelp.html.cpp hw/darwin/bundle/Swedish.lproj/XDarwinHelp.html.cpp +11 -16
- hw/darwin/bundle/XDarwin.icns hw/darwin/bundle/XDarwin.icns +0 -0
- hw/darwin/bundle/ko.lproj/Credits.rtf hw/darwin/bundle/ko.lproj/Credits.rtf +11 -1
- hw/darwin/bundle/ko.lproj/MainMenu.nib/objects.nib hw/darwin/bundle/ko.lproj/MainMenu.nib/objects.nib +0 -0
- hw/darwin/bundle/ko.lproj/XDarwinHelp.html.cpp hw/darwin/bundle/ko.lproj/XDarwinHelp.html.cpp +10 -17
- hw/darwin/bundle/startXClients.cpp hw/darwin/bundle/startXClients.cpp +1 -1
- hw/darwin/darwin.c hw/darwin/darwin.c +69 -24
- hw/darwin/darwin.h hw/darwin/darwin.h +1 -1
- hw/darwin/darwinClut8.h hw/darwin/darwinClut8.h +1 -1
- hw/darwin/darwinEvents.c hw/darwin/darwinEvents.c +29 -5
- hw/darwin/darwinKeyboard.c hw/darwin/darwinKeyboard.c +58 -19
- hw/darwin/darwinKeyboard.h hw/darwin/darwinKeyboard.h +1 -1
- hw/darwin/iokit/xfIOKit.c hw/darwin/iokit/xfIOKit.c +2 -1
- hw/darwin/iokit/xfIOKit.h hw/darwin/iokit/xfIOKit.h +1 -1
- hw/darwin/iokit/xfIOKitCursor.c hw/darwin/iokit/xfIOKitCursor.c +1 -1
- hw/darwin/iokit/xfIOKitStartup.c hw/darwin/iokit/xfIOKitStartup.c +1 -1
- hw/darwin/quartz/Preferences.h hw/darwin/quartz/Preferences.h +1 -1
- hw/darwin/quartz/Preferences.m hw/darwin/quartz/Preferences.m +1 -1
- hw/darwin/quartz/XApplication.h hw/darwin/quartz/XApplication.h +1 -1
- hw/darwin/quartz/XApplication.m hw/darwin/quartz/XApplication.m +1 -1
- hw/darwin/quartz/XDarwin.pbproj/project.pbxproj hw/darwin/quartz/XDarwin.pbproj/project.pbxproj +1 -1
- hw/darwin/quartz/XDarwinStartup.c hw/darwin/quartz/XDarwinStartup.c +1 -1
- hw/darwin/quartz/XDarwinStartup.man hw/darwin/quartz/XDarwinStartup.man +1 -1
- hw/darwin/quartz/XServer.h hw/darwin/quartz/XServer.h +2 -1
- hw/darwin/quartz/XServer.m hw/darwin/quartz/XServer.m +2 -1
- hw/darwin/quartz/applewm.c hw/darwin/quartz/applewm.c +1 -1
- hw/darwin/quartz/applewmExt.h hw/darwin/quartz/applewmExt.h +1 -1
- hw/darwin/quartz/cr/XView.h hw/darwin/quartz/cr/XView.h +1 -1
- hw/darwin/quartz/cr/XView.m hw/darwin/quartz/cr/XView.m +1 -1
- hw/darwin/quartz/cr/cr.h hw/darwin/quartz/cr/cr.h +1 -1
- hw/darwin/quartz/cr/crAppleWM.m hw/darwin/quartz/cr/crAppleWM.m +1 -1
- hw/darwin/quartz/cr/crFrame.m hw/darwin/quartz/cr/crFrame.m +23 -1
- hw/darwin/quartz/cr/crScreen.m hw/darwin/quartz/cr/crScreen.m +2 -1
- hw/darwin/quartz/fullscreen/fullscreen.c hw/darwin/quartz/fullscreen/fullscreen.c +2 -1
- hw/darwin/quartz/fullscreen/quartzCursor.c hw/darwin/quartz/fullscreen/quartzCursor.c +1 -1
- hw/darwin/quartz/fullscreen/quartzCursor.h hw/darwin/quartz/fullscreen/quartzCursor.h +1 -1
- hw/darwin/quartz/keysym2ucs.c hw/darwin/quartz/keysym2ucs.c +1 -1
- hw/darwin/quartz/keysym2ucs.h hw/darwin/quartz/keysym2ucs.h +1 -1
- hw/darwin/quartz/pseudoramiX.c hw/darwin/quartz/pseudoramiX.c +1 -1
- hw/darwin/quartz/pseudoramiX.h hw/darwin/quartz/pseudoramiX.h +1 -1
- hw/darwin/quartz/quartz.c hw/darwin/quartz/quartz.c +2 -1
- hw/darwin/quartz/quartz.h hw/darwin/quartz/quartz.h +2 -1
- hw/darwin/quartz/quartzAudio.c hw/darwin/quartz/quartzAudio.c +1 -1
- hw/darwin/quartz/quartzAudio.h hw/darwin/quartz/quartzAudio.h +1 -1
- hw/darwin/quartz/quartzCocoa.m hw/darwin/quartz/quartzCocoa.m +2 -1
- hw/darwin/quartz/quartzCommon.h hw/darwin/quartz/quartzCommon.h +2 -1
- hw/darwin/quartz/quartzCursor.c hw/darwin/quartz/quartzCursor.c +1 -1
- hw/darwin/quartz/quartzCursor.h hw/darwin/quartz/quartzCursor.h +1 -1
- hw/darwin/quartz/quartzKeyboard.c hw/darwin/quartz/quartzKeyboard.c +3 -1
- hw/darwin/quartz/quartzPasteboard.c hw/darwin/quartz/quartzPasteboard.c +1 -1
- hw/darwin/quartz/quartzPasteboard.h hw/darwin/quartz/quartzPasteboard.h +1 -1
- hw/darwin/quartz/quartzStartup.c hw/darwin/quartz/quartzStartup.c +1 -1
- hw/darwin/quartz/xpr/Xplugin.h hw/darwin/quartz/xpr/Xplugin.h +1 -1
- hw/darwin/quartz/xpr/appledri.c hw/darwin/quartz/xpr/appledri.c +1 -1
- hw/darwin/quartz/xpr/dri.c hw/darwin/quartz/xpr/dri.c +1 -1
- hw/darwin/quartz/xpr/dri.h hw/darwin/quartz/xpr/dri.h +1 -1
- hw/darwin/quartz/xpr/dristruct.h hw/darwin/quartz/xpr/dristruct.h +1 -1
- hw/darwin/quartz/xpr/x-hash.c hw/darwin/quartz/xpr/x-hash.c +1 -1
- hw/darwin/quartz/xpr/x-hash.h hw/darwin/quartz/xpr/x-hash.h +1 -1
- hw/darwin/quartz/xpr/x-hook.c hw/darwin/quartz/xpr/x-hook.c +1 -1
- hw/darwin/quartz/xpr/x-hook.h hw/darwin/quartz/xpr/x-hook.h +1 -1
- hw/darwin/quartz/xpr/x-list.c hw/darwin/quartz/xpr/x-list.c +1 -1
- hw/darwin/quartz/xpr/x-list.h hw/darwin/quartz/xpr/x-list.h +1 -1
- hw/darwin/quartz/xpr/xpr.h hw/darwin/quartz/xpr/xpr.h +2 -1
- hw/darwin/quartz/xpr/xprAppleWM.c hw/darwin/quartz/xpr/xprAppleWM.c +1 -1
- hw/darwin/quartz/xpr/xprCursor.c hw/darwin/quartz/xpr/xprCursor.c +1 -1
- hw/darwin/quartz/xpr/xprFrame.c hw/darwin/quartz/xpr/xprFrame.c +2 -1
- hw/darwin/quartz/xpr/xprScreen.c hw/darwin/quartz/xpr/xprScreen.c +2 -1
- hw/darwin/utils/README.txt hw/darwin/utils/README.txt +1 -1
- hw/darwin/utils/dumpkeymap.c hw/darwin/utils/dumpkeymap.c +1 -1
- hw/darwin/utils/dumpkeymap.man hw/darwin/utils/dumpkeymap.man +1 -1
- hw/vfb/InitInput.c hw/vfb/InitInput.c +1 -1
- hw/vfb/InitOutput.c hw/vfb/InitOutput.c +9 -63
- hw/vfb/Xvfb.man.pre hw/vfb/Xvfb.man.pre +16 -17
- hw/xfree86/common/compiler.h hw/xfree86/common/compiler.h +6 -2
- hw/xfree86/common/extramodes hw/xfree86/common/extramodes +1 -1
- hw/xfree86/common/modeline2c.pl hw/xfree86/common/modeline2c.pl +1 -1
- hw/xfree86/common/vesamodes hw/xfree86/common/vesamodes +1 -1
- hw/xfree86/common/xf86AutoConfig.c hw/xfree86/common/xf86AutoConfig.c +1 -1
- hw/xfree86/common/xf86Config.c hw/xfree86/common/xf86Config.c +3 -2
- hw/xfree86/common/xf86Configure.c hw/xfree86/common/xf86Configure.c +26 -12
- hw/xfree86/common/xf86DGA.c hw/xfree86/common/xf86DGA.c +2 -1
- hw/xfree86/common/xf86Date.h hw/xfree86/common/xf86Date.h +1 -0
- hw/xfree86/common/xf86DefModes.c hw/xfree86/common/xf86DefModes.c +1 -1
- hw/xfree86/common/xf86Events.c hw/xfree86/common/xf86Events.c +2 -1
- hw/xfree86/common/xf86Init.c hw/xfree86/common/xf86Init.c +40 -30
- hw/xfree86/common/xf86KbdMach.c hw/xfree86/common/xf86KbdMach.c +1 -1
- hw/xfree86/common/xf86Mode.c hw/xfree86/common/xf86Mode.c +1 -0
- hw/xfree86/common/xf86Module.h hw/xfree86/common/xf86Module.h +11 -11
- hw/xfree86/common/xf86RandR.c hw/xfree86/common/xf86RandR.c +2 -1
- hw/xfree86/common/xf86Version.h hw/xfree86/common/xf86Version.h +2 -0
- hw/xfree86/common/xf86cmap.c hw/xfree86/common/xf86cmap.c +3 -1
- hw/xfree86/common/xf86pciBus.c hw/xfree86/common/xf86pciBus.c +7 -2
- hw/xfree86/common/xf86sbusBus.c hw/xfree86/common/xf86sbusBus.c +1 -1
- hw/xfree86/common/xf86sbusBus.h hw/xfree86/common/xf86sbusBus.h +1 -1
- hw/xfree86/common/xf86xv.c hw/xfree86/common/xf86xv.c +1 -1
- hw/xfree86/common/xisb.c hw/xfree86/common/xisb.c +1 -1
- hw/xfree86/common/xisb.h hw/xfree86/common/xisb.h +1 -1
- hw/xfree86/common/xorgHelper.c hw/xfree86/common/xorgHelper.c +20 -0
- hw/xfree86/common/xorgVersion.h hw/xfree86/common/xorgVersion.h +51 -0
- hw/xfree86/ddc/DDC.HOWTO hw/xfree86/ddc/DDC.HOWTO +1 -1
- hw/xfree86/ddc/ddcProperty.c hw/xfree86/ddc/ddcProperty.c +1 -1
- hw/xfree86/ddc/edid.c hw/xfree86/ddc/edid.c +1 -1
- hw/xfree86/ddc/edid.h hw/xfree86/ddc/edid.h +1 -1
- hw/xfree86/ddc/interpret_edid.c hw/xfree86/ddc/interpret_edid.c +1 -1
- hw/xfree86/ddc/interpret_vdif.c hw/xfree86/ddc/interpret_vdif.c +1 -1
- hw/xfree86/ddc/print_edid.c hw/xfree86/ddc/print_edid.c +1 -1
- hw/xfree86/ddc/print_vdif.c hw/xfree86/ddc/print_vdif.c +1 -1
- hw/xfree86/ddc/vdif.h hw/xfree86/ddc/vdif.h +1 -1
- hw/xfree86/ddc/xf86DDC.c hw/xfree86/ddc/xf86DDC.c +2 -2
- hw/xfree86/ddc/xf86DDC.h hw/xfree86/ddc/xf86DDC.h +1 -1
- hw/xfree86/dixmods/afbmodule.c hw/xfree86/dixmods/afbmodule.c +1 -1
- hw/xfree86/dixmods/cfb16module.c hw/xfree86/dixmods/cfb16module.c +1 -1
- hw/xfree86/dixmods/cfb24module.c hw/xfree86/dixmods/cfb24module.c +1 -1
- hw/xfree86/dixmods/cfb32module.c hw/xfree86/dixmods/cfb32module.c +1 -1
- hw/xfree86/dixmods/cfbmodule.c hw/xfree86/dixmods/cfbmodule.c +1 -1
- hw/xfree86/dixmods/dbemodule.c hw/xfree86/dixmods/dbemodule.c +2 -2
- hw/xfree86/dixmods/fbmodule.c hw/xfree86/dixmods/fbmodule.c +1 -1
- hw/xfree86/dixmods/laymodule.c hw/xfree86/dixmods/laymodule.c +2 -2
- hw/xfree86/dixmods/mfbmodule.c hw/xfree86/dixmods/mfbmodule.c +1 -1
- hw/xfree86/dixmods/recordmod.c hw/xfree86/dixmods/recordmod.c +2 -2
- hw/xfree86/dixmods/shmodule.c hw/xfree86/dixmods/shmodule.c +2 -2
- hw/xfree86/doc/README.DRI hw/xfree86/doc/README.DRI +2 -3
- hw/xfree86/doc/README.fonts hw/xfree86/doc/README.fonts +50 -50
- hw/xfree86/doc/README.rapidaccess hw/xfree86/doc/README.rapidaccess +1 -1
- hw/xfree86/doc/changelogs/CHANGELOG hw/xfree86/doc/changelogs/CHANGELOG +1 -39
- hw/xfree86/doc/changelogs/CHANGELOG.ND hw/xfree86/doc/changelogs/CHANGELOG.ND +1 -1
- hw/xfree86/doc/devel/Domain.note hw/xfree86/doc/devel/Domain.note +1 -1
- hw/xfree86/doc/devel/README.DRIcomp hw/xfree86/doc/devel/README.DRIcomp +2 -3
- hw/xfree86/doc/devel/Registry hw/xfree86/doc/devel/Registry +1 -1
- hw/xfree86/doc/man/Xorg.man.pre hw/xfree86/doc/man/Xorg.man.pre +691 -0
- hw/xfree86/doc/man/xorg.conf.man.pre hw/xfree86/doc/man/xorg.conf.man.pre +1872 -0
- hw/xfree86/doc/sgml/DESIGN.sgml hw/xfree86/doc/sgml/DESIGN.sgml +17 -15
- hw/xfree86/dummylib/README hw/xfree86/dummylib/README +1 -1
- hw/xfree86/dummylib/dummylib.h hw/xfree86/dummylib/dummylib.h +1 -1
- hw/xfree86/dummylib/fatalerror.c hw/xfree86/dummylib/fatalerror.c +1 -1
- hw/xfree86/dummylib/getvalidbios.c hw/xfree86/dummylib/getvalidbios.c +1 -1
- hw/xfree86/dummylib/logvwrite.c hw/xfree86/dummylib/logvwrite.c +1 -1
- hw/xfree86/dummylib/pcitestmulti.c hw/xfree86/dummylib/pcitestmulti.c +1 -1
- hw/xfree86/dummylib/verrorf.c hw/xfree86/dummylib/verrorf.c +1 -1
- hw/xfree86/dummylib/xalloc.c hw/xfree86/dummylib/xalloc.c +1 -1
- hw/xfree86/dummylib/xf86addrestolist.c hw/xfree86/dummylib/xf86addrestolist.c +1 -1
- hw/xfree86/dummylib/xf86allocscripi.c hw/xfree86/dummylib/xf86allocscripi.c +1 -1
- hw/xfree86/dummylib/xf86drvmsg.c hw/xfree86/dummylib/xf86drvmsg.c +1 -1
- hw/xfree86/dummylib/xf86drvmsgverb.c hw/xfree86/dummylib/xf86drvmsgverb.c +1 -1
- hw/xfree86/dummylib/xf86errorf.c hw/xfree86/dummylib/xf86errorf.c +1 -1
- hw/xfree86/dummylib/xf86errorfverb.c hw/xfree86/dummylib/xf86errorfverb.c +1 -1
- hw/xfree86/dummylib/xf86getpagesize.c hw/xfree86/dummylib/xf86getpagesize.c +1 -1
- hw/xfree86/dummylib/xf86getverb.c hw/xfree86/dummylib/xf86getverb.c +1 -1
- hw/xfree86/dummylib/xf86info.c hw/xfree86/dummylib/xf86info.c +1 -1
- hw/xfree86/dummylib/xf86msg.c hw/xfree86/dummylib/xf86msg.c +1 -1
- hw/xfree86/dummylib/xf86msgverb.c hw/xfree86/dummylib/xf86msgverb.c +1 -1
- hw/xfree86/dummylib/xf86opt.c hw/xfree86/dummylib/xf86opt.c +1 -1
- hw/xfree86/dummylib/xf86screens.c hw/xfree86/dummylib/xf86screens.c +1 -1
- hw/xfree86/dummylib/xf86servisinit.c hw/xfree86/dummylib/xf86servisinit.c +1 -1
- hw/xfree86/dummylib/xf86verbose.c hw/xfree86/dummylib/xf86verbose.c +1 -1
- hw/xfree86/fbdevhw/fbdevhw.c hw/xfree86/fbdevhw/fbdevhw.c +2 -2
- hw/xfree86/fbdevhw/fbdevhw.h hw/xfree86/fbdevhw/fbdevhw.h +1 -1
- hw/xfree86/fbdevhw/fbdevhw.man.pre hw/xfree86/fbdevhw/fbdevhw.man.pre +3 -2
- hw/xfree86/fbdevhw/fbdevhwstub.c hw/xfree86/fbdevhw/fbdevhwstub.c +1 -1
- hw/xfree86/fbdevhw/fbpriv.h hw/xfree86/fbdevhw/fbpriv.h +1 -1
- hw/xfree86/getconfig/cfg.man.pre hw/xfree86/getconfig/cfg.man.pre +18 -19
- hw/xfree86/getconfig/cfg.sample hw/xfree86/getconfig/cfg.sample +12 -13
- hw/xfree86/getconfig/getconfig hw/xfree86/getconfig/getconfig +1 -3
- hw/xfree86/getconfig/getconfig.man.pre hw/xfree86/getconfig/getconfig.man.pre +13 -13
- hw/xfree86/getconfig/getconfig.pl hw/xfree86/getconfig/getconfig.pl +15 -16
- hw/xfree86/getconfig/xorg.cfg hw/xfree86/getconfig/xorg.cfg +50 -0
- hw/xfree86/i2c/xf86i2c.c hw/xfree86/i2c/xf86i2c.c +1 -1
- hw/xfree86/i2c/xf86i2c.h hw/xfree86/i2c/xf86i2c.h +1 -1
- hw/xfree86/i2c/xf86i2cmodule.c hw/xfree86/i2c/xf86i2cmodule.c +2 -2
- hw/xfree86/int10/INT10.HOWTO hw/xfree86/int10/INT10.HOWTO +1 -1
- hw/xfree86/int10/generic.c hw/xfree86/int10/generic.c +1 -1
- hw/xfree86/int10/helper_exec.c hw/xfree86/int10/helper_exec.c +1 -1
- hw/xfree86/int10/helper_mem.c hw/xfree86/int10/helper_mem.c +1 -1
- hw/xfree86/int10/pci.c hw/xfree86/int10/pci.c +1 -1
- hw/xfree86/int10/stub.c hw/xfree86/int10/stub.c +1 -1
- hw/xfree86/int10/xf86int10.c hw/xfree86/int10/xf86int10.c +1 -1
- hw/xfree86/int10/xf86int10.h hw/xfree86/int10/xf86int10.h +1 -1
- hw/xfree86/int10/xf86int10module.c hw/xfree86/int10/xf86int10module.c +2 -2
- hw/xfree86/int10/xf86x86emu.c hw/xfree86/int10/xf86x86emu.c +1 -1
- hw/xfree86/int10/xf86x86emu.h hw/xfree86/int10/xf86x86emu.h +1 -1
- hw/xfree86/loader/SparcMulDiv.S hw/xfree86/loader/SparcMulDiv.S +1 -1
- hw/xfree86/loader/aout.h hw/xfree86/loader/aout.h +1 -1
- hw/xfree86/loader/aoutloader.c hw/xfree86/loader/aoutloader.c +1 -1
- hw/xfree86/loader/aoutloader.h hw/xfree86/loader/aoutloader.h +1 -1
- hw/xfree86/loader/ar.h hw/xfree86/loader/ar.h +1 -1
- hw/xfree86/loader/coff.h hw/xfree86/loader/coff.h +1 -1
- hw/xfree86/loader/coffloader.c hw/xfree86/loader/coffloader.c +1 -1
- hw/xfree86/loader/coffloader.h hw/xfree86/loader/coffloader.h +1 -1
- hw/xfree86/loader/dixsym.c hw/xfree86/loader/dixsym.c +4 -1
- hw/xfree86/loader/dlloader.h hw/xfree86/loader/dlloader.h +1 -1
- hw/xfree86/loader/elf.h hw/xfree86/loader/elf.h +1 -1
- hw/xfree86/loader/elfloader.c hw/xfree86/loader/elfloader.c +38 -17
- hw/xfree86/loader/elfloader.h hw/xfree86/loader/elfloader.h +1 -1
- hw/xfree86/loader/extsym.c hw/xfree86/loader/extsym.c +1 -0
- hw/xfree86/loader/hash.c hw/xfree86/loader/hash.c +2 -1
- hw/xfree86/loader/hash.h hw/xfree86/loader/hash.h +1 -1
- hw/xfree86/loader/loader.c hw/xfree86/loader/loader.c +4 -4
- hw/xfree86/loader/loadmod.c hw/xfree86/loader/loadmod.c +1 -1
- hw/xfree86/loader/misym.c hw/xfree86/loader/misym.c +1 -0
- hw/xfree86/loader/sym.h hw/xfree86/loader/sym.h +1 -1
- hw/xfree86/os-support/README.OS-lib hw/xfree86/os-support/README.OS-lib +1 -1
- hw/xfree86/os-support/bsd/alpha_video.c hw/xfree86/os-support/bsd/alpha_video.c +1 -1
- hw/xfree86/os-support/bsd/arm_video.c hw/xfree86/os-support/bsd/arm_video.c +1 -1
- hw/xfree86/os-support/bsd/bsdResource.c hw/xfree86/os-support/bsd/bsdResource.c +1 -1
- hw/xfree86/os-support/bsd/bsd_KbdMap.c hw/xfree86/os-support/bsd/bsd_KbdMap.c +1 -1
- hw/xfree86/os-support/bsd/bsd_VTsw.c hw/xfree86/os-support/bsd/bsd_VTsw.c +1 -1
- hw/xfree86/os-support/bsd/bsd_apm.c hw/xfree86/os-support/bsd/bsd_apm.c +1 -1
- hw/xfree86/os-support/bsd/bsd_axp.c hw/xfree86/os-support/bsd/bsd_axp.c +1 -1
- hw/xfree86/os-support/bsd/bsd_ev56.c hw/xfree86/os-support/bsd/bsd_ev56.c +1 -1
- hw/xfree86/os-support/bsd/bsd_init.c hw/xfree86/os-support/bsd/bsd_init.c +1 -1
- hw/xfree86/os-support/bsd/bsd_io.c hw/xfree86/os-support/bsd/bsd_io.c +1 -1
- hw/xfree86/os-support/bsd/bsd_jstk.c hw/xfree86/os-support/bsd/bsd_jstk.c +1 -1
- hw/xfree86/os-support/bsd/bsd_kbd.c hw/xfree86/os-support/bsd/bsd_kbd.c +1 -1
- hw/xfree86/os-support/bsd/bsd_kbd.h hw/xfree86/os-support/bsd/bsd_kbd.h +1 -1
- hw/xfree86/os-support/bsd/bsd_kmod.c hw/xfree86/os-support/bsd/bsd_kmod.c +1 -1
- hw/xfree86/os-support/bsd/i386_video.c hw/xfree86/os-support/bsd/i386_video.c +1 -1
- hw/xfree86/os-support/bsd/libusb/data.c hw/xfree86/os-support/bsd/libusb/data.c +1 -1
- hw/xfree86/os-support/bsd/libusb/descr.c hw/xfree86/os-support/bsd/libusb/descr.c +1 -1
- hw/xfree86/os-support/bsd/libusb/parse.c hw/xfree86/os-support/bsd/libusb/parse.c +1 -1
- hw/xfree86/os-support/bsd/libusb/usage.c hw/xfree86/os-support/bsd/libusb/usage.c +1 -1
- hw/xfree86/os-support/bsd/libusb/usb.3 hw/xfree86/os-support/bsd/libusb/usb.3 +1 -1
- hw/xfree86/os-support/bsd/libusb/usb.h hw/xfree86/os-support/bsd/libusb/usb.h +1 -1
- hw/xfree86/os-support/bsd/libusb/usb_hid_usages hw/xfree86/os-support/bsd/libusb/usb_hid_usages +1 -1
- hw/xfree86/os-support/bsd/libusb/usbvar.h hw/xfree86/os-support/bsd/libusb/usbvar.h +1 -1
- hw/xfree86/os-support/bsd/memrange.h hw/xfree86/os-support/bsd/memrange.h +1 -1
- hw/xfree86/os-support/bsd/ppc_video.c hw/xfree86/os-support/bsd/ppc_video.c +1 -1
- hw/xfree86/os-support/bsd/sparc64_video.c hw/xfree86/os-support/bsd/sparc64_video.c +1 -1
- hw/xfree86/os-support/bus/Pci.c hw/xfree86/os-support/bus/Pci.c +4 -4
- hw/xfree86/os-support/bus/Pci.h hw/xfree86/os-support/bus/Pci.h +2 -2
- hw/xfree86/os-support/bus/Sbus.c hw/xfree86/os-support/bus/Sbus.c +1 -1
- hw/xfree86/os-support/bus/axpPci.c hw/xfree86/os-support/bus/axpPci.c +1 -1
- hw/xfree86/os-support/bus/freebsdPci.c hw/xfree86/os-support/bus/freebsdPci.c +1 -1
- hw/xfree86/os-support/bus/linuxPci.c hw/xfree86/os-support/bus/linuxPci.c +1 -1
- hw/xfree86/os-support/bus/ppcPci.c hw/xfree86/os-support/bus/ppcPci.c +1 -1
- hw/xfree86/os-support/bus/xf86Sbus.h hw/xfree86/os-support/bus/xf86Sbus.h +7 -10
- hw/xfree86/os-support/drm/drmmodule.c hw/xfree86/os-support/drm/drmmodule.c +2 -2
- hw/xfree86/os-support/linux/int10/linux.c hw/xfree86/os-support/linux/int10/linux.c +2 -2
- hw/xfree86/os-support/linux/int10/vm86/linux_vm86.c hw/xfree86/os-support/linux/int10/vm86/linux_vm86.c +1 -1
- hw/xfree86/os-support/linux/lnx.h hw/xfree86/os-support/linux/lnx.h +1 -1
- hw/xfree86/os-support/linux/lnxResource.c hw/xfree86/os-support/linux/lnxResource.c +1 -1
- hw/xfree86/os-support/linux/lnx_KbdMap.c hw/xfree86/os-support/linux/lnx_KbdMap.c +1 -1
- hw/xfree86/os-support/linux/lnx_agp.c hw/xfree86/os-support/linux/lnx_agp.c +1 -1
- hw/xfree86/os-support/linux/lnx_apm.c hw/xfree86/os-support/linux/lnx_apm.c +1 -1
- hw/xfree86/os-support/linux/lnx_axp.c hw/xfree86/os-support/linux/lnx_axp.c +1 -1
- hw/xfree86/os-support/linux/lnx_ev56.c hw/xfree86/os-support/linux/lnx_ev56.c +1 -1
- hw/xfree86/os-support/linux/lnx_init.c hw/xfree86/os-support/linux/lnx_init.c +2 -1
- hw/xfree86/os-support/linux/lnx_io.c hw/xfree86/os-support/linux/lnx_io.c +8 -9
- hw/xfree86/os-support/linux/lnx_jstk.c hw/xfree86/os-support/linux/lnx_jstk.c +1 -1
- hw/xfree86/os-support/linux/lnx_kbd.c hw/xfree86/os-support/linux/lnx_kbd.c +9 -8
- hw/xfree86/os-support/linux/lnx_kbd.h hw/xfree86/os-support/linux/lnx_kbd.h +1 -1
- hw/xfree86/os-support/linux/lnx_kmod.c hw/xfree86/os-support/linux/lnx_kmod.c +1 -1
- hw/xfree86/os-support/linux/lnx_pci.c hw/xfree86/os-support/linux/lnx_pci.c +1 -1
- hw/xfree86/os-support/linux/lnx_video.c hw/xfree86/os-support/linux/lnx_video.c +1 -1
- hw/xfree86/os-support/lynxos/lynx_init.c hw/xfree86/os-support/lynxos/lynx_init.c +1 -1
- hw/xfree86/os-support/lynxos/lynx_io.c hw/xfree86/os-support/lynxos/lynx_io.c +1 -1
- hw/xfree86/os-support/lynxos/lynx_mmap.c hw/xfree86/os-support/lynxos/lynx_mmap.c +1 -1
- hw/xfree86/os-support/lynxos/lynx_noinline.c hw/xfree86/os-support/lynxos/lynx_noinline.c +1 -1
- hw/xfree86/os-support/lynxos/lynx_ppc.c hw/xfree86/os-support/lynxos/lynx_ppc.c +1 -1
- hw/xfree86/os-support/lynxos/lynx_video.c hw/xfree86/os-support/lynxos/lynx_video.c +1 -1
- hw/xfree86/os-support/misc/BUSmemcpy.S hw/xfree86/os-support/misc/BUSmemcpy.S +1 -1
- hw/xfree86/os-support/misc/BUSmemcpy.c hw/xfree86/os-support/misc/BUSmemcpy.c +1 -1
- hw/xfree86/os-support/misc/Delay.c hw/xfree86/os-support/misc/Delay.c +1 -1
- hw/xfree86/os-support/misc/IODelay.S hw/xfree86/os-support/misc/IODelay.S +1 -1
- hw/xfree86/os-support/misc/IODelay.c hw/xfree86/os-support/misc/IODelay.c +1 -1
- hw/xfree86/os-support/misc/PortIO.S hw/xfree86/os-support/misc/PortIO.S +1 -61
- hw/xfree86/os-support/misc/SlowBcopy.S hw/xfree86/os-support/misc/SlowBcopy.S +1 -1
- hw/xfree86/os-support/misc/SlowBcopy.c hw/xfree86/os-support/misc/SlowBcopy.c +1 -1
- hw/xfree86/os-support/misc/xf86_IlHack.c hw/xfree86/os-support/misc/xf86_IlHack.c +1 -1
- hw/xfree86/os-support/misc/xf86_Util.c hw/xfree86/os-support/misc/xf86_Util.c +1 -1
- hw/xfree86/os-support/sco/VTsw_sco.c hw/xfree86/os-support/sco/VTsw_sco.c +1 -1
- hw/xfree86/os-support/sco/sco_init.c hw/xfree86/os-support/sco/sco_init.c +1 -1
- hw/xfree86/os-support/sco/sco_io.c hw/xfree86/os-support/sco/sco_io.c +1 -1
- hw/xfree86/os-support/sco/sco_iop.c hw/xfree86/os-support/sco/sco_iop.c +1 -1
- hw/xfree86/os-support/sco/sco_mouse.c hw/xfree86/os-support/sco/sco_mouse.c +1 -1
- hw/xfree86/os-support/sco/sco_video.c hw/xfree86/os-support/sco/sco_video.c +1 -1
- hw/xfree86/os-support/shared/VTsw_noop.c hw/xfree86/os-support/shared/VTsw_noop.c +1 -1
- hw/xfree86/os-support/shared/VTsw_usl.c hw/xfree86/os-support/shared/VTsw_usl.c +1 -1
- hw/xfree86/os-support/shared/bios_devmem.c hw/xfree86/os-support/shared/bios_devmem.c +1 -1
- hw/xfree86/os-support/shared/bios_mmap.c hw/xfree86/os-support/shared/bios_mmap.c +1 -1
- hw/xfree86/os-support/shared/inout.S hw/xfree86/os-support/shared/inout.S +1 -1
- hw/xfree86/os-support/shared/ioperm_noop.c hw/xfree86/os-support/shared/ioperm_noop.c +1 -1
- hw/xfree86/os-support/shared/libc_wrapper.c hw/xfree86/os-support/shared/libc_wrapper.c +1 -1
- hw/xfree86/os-support/shared/std_kbdEv.c hw/xfree86/os-support/shared/std_kbdEv.c +1 -1
- hw/xfree86/os-support/shared/sysv_kbd.c hw/xfree86/os-support/shared/sysv_kbd.c +1 -1
- hw/xfree86/os-support/shared/xf86Axp.h hw/xfree86/os-support/shared/xf86Axp.h +1 -1
- hw/xfree86/os-support/solaris/apSolaris.shar hw/xfree86/os-support/solaris/apSolaris.shar +1 -1
- hw/xfree86/os-support/solaris/solaris-ia32.S hw/xfree86/os-support/solaris/solaris-ia32.S +73 -0
- hw/xfree86/os-support/solaris/sun_bios.c hw/xfree86/os-support/solaris/sun_bios.c +26 -8
- hw/xfree86/os-support/solaris/sun_init.c hw/xfree86/os-support/solaris/sun_init.c +17 -4
- hw/xfree86/os-support/solaris/sun_inout.s hw/xfree86/os-support/solaris/sun_inout.s +1 -1
- hw/xfree86/os-support/solaris/sun_io.c hw/xfree86/os-support/solaris/sun_io.c +1 -1
- hw/xfree86/os-support/solaris/sun_kbd.c hw/xfree86/os-support/solaris/sun_kbd.c +1 -1
- hw/xfree86/os-support/solaris/sun_kbdEv.c hw/xfree86/os-support/solaris/sun_kbdEv.c +1 -1
- hw/xfree86/os-support/solaris/sun_mouse.c hw/xfree86/os-support/solaris/sun_mouse.c +234 -9
- hw/xfree86/os-support/solaris/sun_vid.c hw/xfree86/os-support/solaris/sun_vid.c +41 -6
- hw/xfree86/os-support/sysv/sysv_init.c hw/xfree86/os-support/sysv/sysv_init.c +1 -1
- hw/xfree86/os-support/sysv/sysv_io.c hw/xfree86/os-support/sysv/sysv_io.c +1 -1
- hw/xfree86/os-support/sysv/sysv_video.c hw/xfree86/os-support/sysv/sysv_video.c +1 -1
- hw/xfree86/os-support/sysv/xqueue.c hw/xfree86/os-support/sysv/xqueue.c +1 -1
- hw/xfree86/os-support/sysv/xqueue.h hw/xfree86/os-support/sysv/xqueue.h +1 -1
- hw/xfree86/os-support/xf86OSKbd.h hw/xfree86/os-support/xf86OSKbd.h +1 -1
- hw/xfree86/os-support/xf86_OSlib.h hw/xfree86/os-support/xf86_OSlib.h +1 -1
- hw/xfree86/os-support/xf86_OSproc.h hw/xfree86/os-support/xf86_OSproc.h +1 -1
- hw/xfree86/os-support/xf86_libc.h hw/xfree86/os-support/xf86_libc.h +1 -0
- hw/xfree86/parser/DRI.c hw/xfree86/parser/DRI.c +1 -1
- hw/xfree86/parser/Monitor.c hw/xfree86/parser/Monitor.c +4 -2
- hw/xfree86/parser/cpconfig.c hw/xfree86/parser/cpconfig.c +1 -1
- hw/xfree86/parser/scan.c hw/xfree86/parser/scan.c +36 -9
- hw/xfree86/rac/xf86RAC.c hw/xfree86/rac/xf86RAC.c +1 -1
- hw/xfree86/rac/xf86RAC.h hw/xfree86/rac/xf86RAC.h +1 -1
- hw/xfree86/rac/xf86RACmodule.c hw/xfree86/rac/xf86RACmodule.c +2 -2
- hw/xfree86/ramdac/BT.c hw/xfree86/ramdac/BT.c +1 -1
- hw/xfree86/ramdac/BT.h hw/xfree86/ramdac/BT.h +1 -1
- hw/xfree86/ramdac/BTPriv.h hw/xfree86/ramdac/BTPriv.h +1 -1
- hw/xfree86/ramdac/CURSOR.NOTES hw/xfree86/ramdac/CURSOR.NOTES +1 -1
- hw/xfree86/ramdac/IBM.c hw/xfree86/ramdac/IBM.c +1 -1
- hw/xfree86/ramdac/IBM.h hw/xfree86/ramdac/IBM.h +1 -1
- hw/xfree86/ramdac/IBMPriv.h hw/xfree86/ramdac/IBMPriv.h +1 -1
- hw/xfree86/ramdac/TI.c hw/xfree86/ramdac/TI.c +1 -1
- hw/xfree86/ramdac/TI.h hw/xfree86/ramdac/TI.h +1 -1
- hw/xfree86/ramdac/TIPriv.h hw/xfree86/ramdac/TIPriv.h +1 -1
- hw/xfree86/ramdac/xf86Cursor.c hw/xfree86/ramdac/xf86Cursor.c +1 -1
- hw/xfree86/ramdac/xf86Cursor.h hw/xfree86/ramdac/xf86Cursor.h +1 -1
- hw/xfree86/ramdac/xf86CursorPriv.h hw/xfree86/ramdac/xf86CursorPriv.h +1 -1
- hw/xfree86/ramdac/xf86HWCurs.c hw/xfree86/ramdac/xf86HWCurs.c +1 -1
- hw/xfree86/ramdac/xf86RamDac.c hw/xfree86/ramdac/xf86RamDac.c +1 -1
- hw/xfree86/ramdac/xf86RamDac.h hw/xfree86/ramdac/xf86RamDac.h +1 -1
- hw/xfree86/ramdac/xf86RamDacCmap.c hw/xfree86/ramdac/xf86RamDacCmap.c +1 -1
- hw/xfree86/ramdac/xf86RamDacMod.c hw/xfree86/ramdac/xf86RamDacMod.c +2 -2
- hw/xfree86/ramdac/xf86RamDacPriv.h hw/xfree86/ramdac/xf86RamDacPriv.h +1 -1
- hw/xfree86/scanpci/extrapci.ids hw/xfree86/scanpci/extrapci.ids +2 -1
- hw/xfree86/scanpci/pciid2c.pl hw/xfree86/scanpci/pciid2c.pl +1 -1
- hw/xfree86/scanpci/xf86PciStdIds.h hw/xfree86/scanpci/xf86PciStdIds.h +5198 -375
- hw/xfree86/scanpci/xf86ScanPci.c hw/xfree86/scanpci/xf86ScanPci.c +3 -3
- hw/xfree86/shadowfb/sfbmodule.c hw/xfree86/shadowfb/sfbmodule.c +2 -2
- hw/xfree86/shadowfb/shadow.c hw/xfree86/shadowfb/shadow.c +1 -1
- hw/xfree86/shadowfb/shadowfb.h hw/xfree86/shadowfb/shadowfb.h +1 -1
- hw/xfree86/utils/gtf/gtf.c hw/xfree86/utils/gtf/gtf.c +15 -13
- hw/xfree86/utils/gtf/gtf.man.pre hw/xfree86/utils/gtf/gtf.man.pre +7 -7
- hw/xfree86/utils/ioport/ioport.c hw/xfree86/utils/ioport/ioport.c +1 -1
- hw/xfree86/utils/kbd_mode/bsd-kbd_mode.c hw/xfree86/utils/kbd_mode/bsd-kbd_mode.c +1 -1
- hw/xfree86/utils/kbd_mode/bsd-kbd_mode.man.pre hw/xfree86/utils/kbd_mode/bsd-kbd_mode.man.pre +1 -1
- hw/xfree86/utils/kbd_mode/sun-kbd_mode.c hw/xfree86/utils/kbd_mode/sun-kbd_mode.c +1 -1
- hw/xfree86/utils/kbd_mode/sun-kbd_mode.man.pre hw/xfree86/utils/kbd_mode/sun-kbd_mode.man.pre +1 -1
- hw/xfree86/utils/pcitweak/pcitweak.man.pre hw/xfree86/utils/pcitweak/pcitweak.man.pre +1 -1
- hw/xfree86/utils/scanpci/scanpci.c hw/xfree86/utils/scanpci/scanpci.c +6 -23
- hw/xfree86/utils/scanpci/scanpci.man.pre hw/xfree86/utils/scanpci/scanpci.man.pre +1 -1
- hw/xfree86/utils/xorgcfg/TODO hw/xfree86/utils/xorgcfg/TODO +5 -5
- hw/xfree86/utils/xorgcfg/XOrgCfg.pre hw/xfree86/utils/xorgcfg/XOrgCfg.pre +1851 -0
- hw/xfree86/utils/xorgcfg/accessx.c hw/xfree86/utils/xorgcfg/accessx.c +1 -1
- hw/xfree86/utils/xorgcfg/card-cfg.c hw/xfree86/utils/xorgcfg/card-cfg.c +1 -1
- hw/xfree86/utils/xorgcfg/card-cfg.h hw/xfree86/utils/xorgcfg/card-cfg.h +1 -1
- hw/xfree86/utils/xorgcfg/card.xbm hw/xfree86/utils/xorgcfg/card.xbm +1 -1
- hw/xfree86/utils/xorgcfg/card.xpm hw/xfree86/utils/xorgcfg/card.xpm +1 -1
- hw/xfree86/utils/xorgcfg/cards.c hw/xfree86/utils/xorgcfg/cards.c +1 -1
- hw/xfree86/utils/xorgcfg/cards.h hw/xfree86/utils/xorgcfg/cards.h +1 -1
- hw/xfree86/utils/xorgcfg/computer.xpm hw/xfree86/utils/xorgcfg/computer.xpm +1 -1
- hw/xfree86/utils/xorgcfg/config.c hw/xfree86/utils/xorgcfg/config.c +1 -1
- hw/xfree86/utils/xorgcfg/config.h hw/xfree86/utils/xorgcfg/config.h +1 -1
- hw/xfree86/utils/xorgcfg/expert.c hw/xfree86/utils/xorgcfg/expert.c +2 -2
- hw/xfree86/utils/xorgcfg/help.c hw/xfree86/utils/xorgcfg/help.c +1 -1
- hw/xfree86/utils/xorgcfg/help.h hw/xfree86/utils/xorgcfg/help.h +1 -1
- hw/xfree86/utils/xorgcfg/interface.c hw/xfree86/utils/xorgcfg/interface.c +14 -12
- hw/xfree86/utils/xorgcfg/keyboard-cfg.c hw/xfree86/utils/xorgcfg/keyboard-cfg.c +2 -2
- hw/xfree86/utils/xorgcfg/keyboard-cfg.h hw/xfree86/utils/xorgcfg/keyboard-cfg.h +1 -1
- hw/xfree86/utils/xorgcfg/keyboard.xbm hw/xfree86/utils/xorgcfg/keyboard.xbm +1 -1
- hw/xfree86/utils/xorgcfg/keyboard.xpm hw/xfree86/utils/xorgcfg/keyboard.xpm +1 -1
- hw/xfree86/utils/xorgcfg/loader.c hw/xfree86/utils/xorgcfg/loader.c +4 -4
- hw/xfree86/utils/xorgcfg/loader.h hw/xfree86/utils/xorgcfg/loader.h +2 -2
- hw/xfree86/utils/xorgcfg/loadmod.c hw/xfree86/utils/xorgcfg/loadmod.c +2 -2
- hw/xfree86/utils/xorgcfg/monitor-cfg.c hw/xfree86/utils/xorgcfg/monitor-cfg.c +1 -1
- hw/xfree86/utils/xorgcfg/monitor-cfg.h hw/xfree86/utils/xorgcfg/monitor-cfg.h +1 -1
- hw/xfree86/utils/xorgcfg/monitor.xbm hw/xfree86/utils/xorgcfg/monitor.xbm +1 -1
- hw/xfree86/utils/xorgcfg/monitor.xpm hw/xfree86/utils/xorgcfg/monitor.xpm +1 -1
- hw/xfree86/utils/xorgcfg/mouse-cfg.c hw/xfree86/utils/xorgcfg/mouse-cfg.c +1 -1
- hw/xfree86/utils/xorgcfg/mouse-cfg.h hw/xfree86/utils/xorgcfg/mouse-cfg.h +1 -1
- hw/xfree86/utils/xorgcfg/mouse.xbm hw/xfree86/utils/xorgcfg/mouse.xbm +1 -1
- hw/xfree86/utils/xorgcfg/mouse.xpm hw/xfree86/utils/xorgcfg/mouse.xpm +1 -1
- hw/xfree86/utils/xorgcfg/options.c hw/xfree86/utils/xorgcfg/options.c +1 -1
- hw/xfree86/utils/xorgcfg/options.h hw/xfree86/utils/xorgcfg/options.h +1 -1
- hw/xfree86/utils/xorgcfg/screen-cfg.c hw/xfree86/utils/xorgcfg/screen-cfg.c +1 -1
- hw/xfree86/utils/xorgcfg/screen-cfg.h hw/xfree86/utils/xorgcfg/screen-cfg.h +1 -1
- hw/xfree86/utils/xorgcfg/screen.c hw/xfree86/utils/xorgcfg/screen.c +1 -1
- hw/xfree86/utils/xorgcfg/screen.h hw/xfree86/utils/xorgcfg/screen.h +1 -1
- hw/xfree86/utils/xorgcfg/startx.c hw/xfree86/utils/xorgcfg/startx.c +7 -7
- hw/xfree86/utils/xorgcfg/stubs.c hw/xfree86/utils/xorgcfg/stubs.c +1 -1
- hw/xfree86/utils/xorgcfg/stubs.h hw/xfree86/utils/xorgcfg/stubs.h +1 -1
- hw/xfree86/utils/xorgcfg/text-mode.c hw/xfree86/utils/xorgcfg/text-mode.c +14 -14
- hw/xfree86/utils/xorgcfg/vidmode.c hw/xfree86/utils/xorgcfg/vidmode.c +1 -1
- hw/xfree86/utils/xorgcfg/vidmode.h hw/xfree86/utils/xorgcfg/vidmode.h +1 -1
- hw/xfree86/utils/xorgcfg/xf86config.c hw/xfree86/utils/xorgcfg/xf86config.c +2 -2
- hw/xfree86/utils/xorgcfg/xf86config.h hw/xfree86/utils/xorgcfg/xf86config.h +1 -1
- hw/xfree86/utils/xorgcfg/xorgcfg.man.pre hw/xfree86/utils/xorgcfg/xorgcfg.man.pre +152 -0
- hw/xfree86/utils/xorgconfig/Cards hw/xfree86/utils/xorgconfig/Cards +2 -2
- hw/xfree86/utils/xorgconfig/Cards98 hw/xfree86/utils/xorgconfig/Cards98 +1 -1
- hw/xfree86/utils/xorgconfig/cards.c hw/xfree86/utils/xorgconfig/cards.c +1 -1
- hw/xfree86/utils/xorgconfig/cards.h hw/xfree86/utils/xorgconfig/cards.h +1 -1
- hw/xfree86/utils/xorgconfig/xorgconfig.c hw/xfree86/utils/xorgconfig/xorgconfig.c +2906 -0
- hw/xfree86/utils/xorgconfig/xorgconfig.man.pre hw/xfree86/utils/xorgconfig/xorgconfig.man.pre +22 -0
- hw/xfree86/vbe/vbe.c hw/xfree86/vbe/vbe.c +1 -1
- hw/xfree86/vbe/vbe.h hw/xfree86/vbe/vbe.h +1 -1
- hw/xfree86/vbe/vbeModes.c hw/xfree86/vbe/vbeModes.c +1 -1
- hw/xfree86/vbe/vbeModes.h hw/xfree86/vbe/vbeModes.h +1 -1
- hw/xfree86/vbe/vbe_module.c hw/xfree86/vbe/vbe_module.c +2 -2
- hw/xfree86/vgahw/vgaCmap.c hw/xfree86/vgahw/vgaCmap.c +1 -1
- hw/xfree86/vgahw/vgaHWmodule.c hw/xfree86/vgahw/vgaHWmodule.c +1 -1
- hw/xfree86/xaa/XAA.HOWTO hw/xfree86/xaa/XAA.HOWTO +1 -1
- hw/xfree86/xaa/xaa.h hw/xfree86/xaa/xaa.h +1 -1
- hw/xfree86/xaa/xaaBitBlt.c hw/xfree86/xaa/xaaBitBlt.c +1 -1
- hw/xfree86/xaa/xaaBitOrder.c hw/xfree86/xaa/xaaBitOrder.c +1 -1
- hw/xfree86/xaa/xaaBitmap.c hw/xfree86/xaa/xaaBitmap.c +1 -1
- hw/xfree86/xaa/xaaCpyArea.c hw/xfree86/xaa/xaaCpyArea.c +1 -1
- hw/xfree86/xaa/xaaCpyPlane.c hw/xfree86/xaa/xaaCpyPlane.c +1 -1
- hw/xfree86/xaa/xaaCpyWin.c hw/xfree86/xaa/xaaCpyWin.c +1 -1
- hw/xfree86/xaa/xaaDashLine.c hw/xfree86/xaa/xaaDashLine.c +1 -1
- hw/xfree86/xaa/xaaFallback.c hw/xfree86/xaa/xaaFallback.c +1 -1
- hw/xfree86/xaa/xaaFillArc.c hw/xfree86/xaa/xaaFillArc.c +1 -1
- hw/xfree86/xaa/xaaFillPoly.c hw/xfree86/xaa/xaaFillPoly.c +1 -1
- hw/xfree86/xaa/xaaFillRect.c hw/xfree86/xaa/xaaFillRect.c +1 -1
- hw/xfree86/xaa/xaaGC.c hw/xfree86/xaa/xaaGC.c +1 -1
- hw/xfree86/xaa/xaaGCmisc.c hw/xfree86/xaa/xaaGCmisc.c +1 -1
- hw/xfree86/xaa/xaaImage.c hw/xfree86/xaa/xaaImage.c +1 -1
- hw/xfree86/xaa/xaaInit.c hw/xfree86/xaa/xaaInit.c +1 -1
- hw/xfree86/xaa/xaaInitAccel.c hw/xfree86/xaa/xaaInitAccel.c +2 -2
- hw/xfree86/xaa/xaaLine.c hw/xfree86/xaa/xaaLine.c +1 -1
- hw/xfree86/xaa/xaaLineMisc.c hw/xfree86/xaa/xaaLineMisc.c +1 -1
- hw/xfree86/xaa/xaaNonTEGlyph.c hw/xfree86/xaa/xaaNonTEGlyph.c +1 -1
- hw/xfree86/xaa/xaaNonTEText.c hw/xfree86/xaa/xaaNonTEText.c +1 -1
- hw/xfree86/xaa/xaaOffscreen.c hw/xfree86/xaa/xaaOffscreen.c +1 -1
- hw/xfree86/xaa/xaaOverlay.c hw/xfree86/xaa/xaaOverlay.c +2 -1
- hw/xfree86/xaa/xaaOverlayDF.c hw/xfree86/xaa/xaaOverlayDF.c +1 -1
- hw/xfree86/xaa/xaaPCache.c hw/xfree86/xaa/xaaPCache.c +1 -1
- hw/xfree86/xaa/xaaPaintWin.c hw/xfree86/xaa/xaaPaintWin.c +2 -1
- hw/xfree86/xaa/xaaPict.c hw/xfree86/xaa/xaaPict.c +1 -1
- hw/xfree86/xaa/xaaROP.c hw/xfree86/xaa/xaaROP.c +1 -1
- hw/xfree86/xaa/xaaRect.c hw/xfree86/xaa/xaaRect.c +1 -1
- hw/xfree86/xaa/xaaSpans.c hw/xfree86/xaa/xaaSpans.c +1 -1
- hw/xfree86/xaa/xaaStateChange.c hw/xfree86/xaa/xaaStateChange.c +1 -1
- hw/xfree86/xaa/xaaStipple.c hw/xfree86/xaa/xaaStipple.c +1 -1
- hw/xfree86/xaa/xaaTEGlyph.c hw/xfree86/xaa/xaaTEGlyph.c +1 -1
- hw/xfree86/xaa/xaaTEGlyphBlt.S hw/xfree86/xaa/xaaTEGlyphBlt.S +1 -1
- hw/xfree86/xaa/xaaTEText.c hw/xfree86/xaa/xaaTEText.c +1 -1
- hw/xfree86/xaa/xaaTables.c hw/xfree86/xaa/xaaTables.c +1 -1
- hw/xfree86/xaa/xaaWideLine.c hw/xfree86/xaa/xaaWideLine.c +1 -1
- hw/xfree86/xaa/xaacexp.h hw/xfree86/xaa/xaacexp.h +1 -1
- hw/xfree86/xaa/xaalocal.h hw/xfree86/xaa/xaalocal.h +1 -1
- hw/xfree86/xaa/xaarop.h hw/xfree86/xaa/xaarop.h +1 -1
- hw/xfree86/xaa/xaawrap.h hw/xfree86/xaa/xaawrap.h +1 -1
- hw/xfree86/xf1bpp/mfbmap.h hw/xfree86/xf1bpp/mfbmap.h +1 -1
- hw/xfree86/xf1bpp/mfbmap.sh hw/xfree86/xf1bpp/mfbmap.sh +1 -1
- hw/xfree86/xf1bpp/mfbmodule.c hw/xfree86/xf1bpp/mfbmodule.c +1 -1
- hw/xfree86/xf1bpp/mfbunmap.h hw/xfree86/xf1bpp/mfbunmap.h +1 -1
- hw/xfree86/xf1bpp/mfbunmap.sh hw/xfree86/xf1bpp/mfbunmap.sh +1 -1
- hw/xfree86/xf4bpp/NOTES hw/xfree86/xf4bpp/NOTES +1 -1
- hw/xfree86/xf4bpp/OScompiler.h hw/xfree86/xf4bpp/OScompiler.h +1 -1
- hw/xfree86/xf4bpp/emulOpStip.c hw/xfree86/xf4bpp/emulOpStip.c +1 -1
- hw/xfree86/xf4bpp/emulRepAre.c hw/xfree86/xf4bpp/emulRepAre.c +1 -1
- hw/xfree86/xf4bpp/emulTile.c hw/xfree86/xf4bpp/emulTile.c +1 -1
- hw/xfree86/xf4bpp/ibmTrace.h hw/xfree86/xf4bpp/ibmTrace.h +1 -1
- hw/xfree86/xf4bpp/mfbbres.c hw/xfree86/xf4bpp/mfbbres.c +1 -1
- hw/xfree86/xf4bpp/mfbbresd.c hw/xfree86/xf4bpp/mfbbresd.c +1 -1
- hw/xfree86/xf4bpp/mfbfillarc.c hw/xfree86/xf4bpp/mfbfillarc.c +1 -1
- hw/xfree86/xf4bpp/mfbhrzvert.c hw/xfree86/xf4bpp/mfbhrzvert.c +1 -1
- hw/xfree86/xf4bpp/mfbimggblt.c hw/xfree86/xf4bpp/mfbimggblt.c +1 -1
- hw/xfree86/xf4bpp/mfbline.c hw/xfree86/xf4bpp/mfbline.c +1 -1
- hw/xfree86/xf4bpp/mfbzerarc.c hw/xfree86/xf4bpp/mfbzerarc.c +1 -1
- hw/xfree86/xf4bpp/offscreen.c hw/xfree86/xf4bpp/offscreen.c +1 -1
- hw/xfree86/xf4bpp/ppcArea.c hw/xfree86/xf4bpp/ppcArea.c +1 -1
- hw/xfree86/xf4bpp/ppcBStore.c hw/xfree86/xf4bpp/ppcBStore.c +1 -1
- hw/xfree86/xf4bpp/ppcCReduce.c hw/xfree86/xf4bpp/ppcCReduce.c +1 -1
- hw/xfree86/xf4bpp/ppcClip.c hw/xfree86/xf4bpp/ppcClip.c +1 -1
- hw/xfree86/xf4bpp/ppcCpArea.c hw/xfree86/xf4bpp/ppcCpArea.c +1 -1
- hw/xfree86/xf4bpp/ppcDepth.c hw/xfree86/xf4bpp/ppcDepth.c +1 -1
- hw/xfree86/xf4bpp/ppcFillRct.c hw/xfree86/xf4bpp/ppcFillRct.c +1 -1
- hw/xfree86/xf4bpp/ppcGC.c hw/xfree86/xf4bpp/ppcGC.c +1 -1
- hw/xfree86/xf4bpp/ppcGCstr.h hw/xfree86/xf4bpp/ppcGCstr.h +1 -1
- hw/xfree86/xf4bpp/ppcGetSp.c hw/xfree86/xf4bpp/ppcGetSp.c +1 -1
- hw/xfree86/xf4bpp/ppcIO.c hw/xfree86/xf4bpp/ppcIO.c +1 -1
- hw/xfree86/xf4bpp/ppcImg.c hw/xfree86/xf4bpp/ppcImg.c +1 -1
- hw/xfree86/xf4bpp/ppcPixFS.c hw/xfree86/xf4bpp/ppcPixFS.c +1 -1
- hw/xfree86/xf4bpp/ppcPixmap.c hw/xfree86/xf4bpp/ppcPixmap.c +1 -1
- hw/xfree86/xf4bpp/ppcPntWin.c hw/xfree86/xf4bpp/ppcPntWin.c +1 -1
- hw/xfree86/xf4bpp/ppcPolyPnt.c hw/xfree86/xf4bpp/ppcPolyPnt.c +1 -1
- hw/xfree86/xf4bpp/ppcPolyRec.c hw/xfree86/xf4bpp/ppcPolyRec.c +1 -1
- hw/xfree86/xf4bpp/ppcQuery.c hw/xfree86/xf4bpp/ppcQuery.c +1 -1
- hw/xfree86/xf4bpp/ppcRslvC.c hw/xfree86/xf4bpp/ppcRslvC.c +1 -1
- hw/xfree86/xf4bpp/ppcSetSp.c hw/xfree86/xf4bpp/ppcSetSp.c +1 -1
- hw/xfree86/xf4bpp/ppcSpMcro.h hw/xfree86/xf4bpp/ppcSpMcro.h +1 -1
- hw/xfree86/xf4bpp/ppcWinFS.c hw/xfree86/xf4bpp/ppcWinFS.c +1 -1
- hw/xfree86/xf4bpp/ppcWindow.c hw/xfree86/xf4bpp/ppcWindow.c +1 -1
- hw/xfree86/xf4bpp/vgaBitBlt.c hw/xfree86/xf4bpp/vgaBitBlt.c +1 -1
- hw/xfree86/xf4bpp/vgaGC.c hw/xfree86/xf4bpp/vgaGC.c +1 -1
- hw/xfree86/xf4bpp/vgaImages.c hw/xfree86/xf4bpp/vgaImages.c +1 -1
- hw/xfree86/xf4bpp/vgaReg.h hw/xfree86/xf4bpp/vgaReg.h +1 -1
- hw/xfree86/xf4bpp/vgaSolid.c hw/xfree86/xf4bpp/vgaSolid.c +1 -1
- hw/xfree86/xf4bpp/vgaStipple.c hw/xfree86/xf4bpp/vgaStipple.c +1 -1
- hw/xfree86/xf4bpp/vgaVideo.h hw/xfree86/xf4bpp/vgaVideo.h +1 -1
- hw/xfree86/xf4bpp/vgamodule.c hw/xfree86/xf4bpp/vgamodule.c +1 -1
- hw/xfree86/xf4bpp/wm3.c hw/xfree86/xf4bpp/wm3.c +1 -1
- hw/xfree86/xf4bpp/wm3.h hw/xfree86/xf4bpp/wm3.h +1 -1
- hw/xfree86/xf4bpp/xf4bpp.h hw/xfree86/xf4bpp/xf4bpp.h +1 -1
- hw/xfree86/xf8_16bpp/cfb8_16.h hw/xfree86/xf8_16bpp/cfb8_16.h +1 -1
- hw/xfree86/xf8_16bpp/cfb8_16module.c hw/xfree86/xf8_16bpp/cfb8_16module.c +2 -2
- hw/xfree86/xf8_16bpp/cfbscrinit.c hw/xfree86/xf8_16bpp/cfbscrinit.c +1 -1
- hw/xfree86/xf8_16bpp/cfbwindow.c hw/xfree86/xf8_16bpp/cfbwindow.c +1 -1
- hw/xfree86/xf8_32bpp/cfb8_32.h hw/xfree86/xf8_32bpp/cfb8_32.h +1 -1
- hw/xfree86/xf8_32bpp/cfb8_32module.c hw/xfree86/xf8_32bpp/cfb8_32module.c +2 -2
- hw/xfree86/xf8_32bpp/cfbbstore.c hw/xfree86/xf8_32bpp/cfbbstore.c +1 -1
- hw/xfree86/xf8_32bpp/cfbcpyarea.c hw/xfree86/xf8_32bpp/cfbcpyarea.c +1 -1
- hw/xfree86/xf8_32bpp/cfbcpyplane.c hw/xfree86/xf8_32bpp/cfbcpyplane.c +1 -1
- hw/xfree86/xf8_32bpp/cfbgc.c hw/xfree86/xf8_32bpp/cfbgc.c +1 -1
- hw/xfree86/xf8_32bpp/cfbgcmisc.c hw/xfree86/xf8_32bpp/cfbgcmisc.c +1 -1
- hw/xfree86/xf8_32bpp/cfbgcunder.c hw/xfree86/xf8_32bpp/cfbgcunder.c +1 -1
- hw/xfree86/xf8_32bpp/cfbimage.c hw/xfree86/xf8_32bpp/cfbimage.c +1 -1
- hw/xfree86/xf8_32bpp/cfbpntwin.c hw/xfree86/xf8_32bpp/cfbpntwin.c +2 -1
- hw/xfree86/xf8_32bpp/cfbscrinit.c hw/xfree86/xf8_32bpp/cfbscrinit.c +1 -1
- hw/xfree86/xf8_32bpp/cfbwindow.c hw/xfree86/xf8_32bpp/cfbwindow.c +1 -1
- hw/xfree86/xf8_32bpp/xf86overlay.c hw/xfree86/xf8_32bpp/xf86overlay.c +1 -1
- hw/xfree86/xf8_32wid/cfb8_32wid.h hw/xfree86/xf8_32wid/cfb8_32wid.h +1 -1
- hw/xfree86/xf8_32wid/cfb8_32widmodule.c hw/xfree86/xf8_32wid/cfb8_32widmodule.c +2 -2
- hw/xfree86/xf8_32wid/cfbscrinit.c hw/xfree86/xf8_32wid/cfbscrinit.c +1 -1
- hw/xfree86/xf8_32wid/cfbwid.c hw/xfree86/xf8_32wid/cfbwid.c +1 -1
- hw/xfree86/xf8_32wid/cfbwindow.c hw/xfree86/xf8_32wid/cfbwindow.c +1 -1
- hw/xfree86/xorgconf.cpp hw/xfree86/xorgconf.cpp +626 -0
- hw/xnest/Args.c hw/xnest/Args.c +6 -1
- hw/xnest/Args.h hw/xnest/Args.h +1 -1
- hw/xnest/Color.c hw/xnest/Color.c +1 -1
- hw/xnest/Color.h hw/xnest/Color.h +1 -1
- hw/xnest/Cursor.c hw/xnest/Cursor.c +1 -1
- hw/xnest/Display.c hw/xnest/Display.c +1 -1
- hw/xnest/Display.h hw/xnest/Display.h +1 -1
- hw/xnest/Drawable.h hw/xnest/Drawable.h +1 -1
- hw/xnest/Events.c hw/xnest/Events.c +1 -1
- hw/xnest/Events.h hw/xnest/Events.h +1 -1
- hw/xnest/Font.c hw/xnest/Font.c +1 -1
- hw/xnest/GC.c hw/xnest/GC.c +1 -1
- hw/xnest/GCOps.c hw/xnest/GCOps.c +1 -1
- hw/xnest/GCOps.h hw/xnest/GCOps.h +1 -1
- hw/xnest/GetTime.c hw/xnest/GetTime.c +1 -1
- hw/xnest/Handlers.c hw/xnest/Handlers.c +1 -1
- hw/xnest/Handlers.h hw/xnest/Handlers.h +1 -1
- hw/xnest/Init.c hw/xnest/Init.c +1 -1
- hw/xnest/Keyboard.c hw/xnest/Keyboard.c +3 -2
- hw/xnest/Keyboard.h hw/xnest/Keyboard.h +1 -1
- hw/xnest/Pixmap.c hw/xnest/Pixmap.c +1 -1
- hw/xnest/Pointer.c hw/xnest/Pointer.c +1 -1
- hw/xnest/Pointer.h hw/xnest/Pointer.h +1 -1
- hw/xnest/Screen.c hw/xnest/Screen.c +1 -1
- hw/xnest/Screen.h hw/xnest/Screen.h +1 -1
- hw/xnest/TestExt.c hw/xnest/TestExt.c +1 -1
- hw/xnest/Visual.c hw/xnest/Visual.c +1 -1
- hw/xnest/Visual.h hw/xnest/Visual.h +1 -1
- hw/xnest/Window.c hw/xnest/Window.c +1 -1
- hw/xnest/XNCursor.h hw/xnest/XNCursor.h +1 -1
- hw/xnest/XNFont.h hw/xnest/XNFont.h +1 -1
- hw/xnest/XNGC.h hw/xnest/XNGC.h +1 -1
- hw/xnest/XNPixmap.h hw/xnest/XNPixmap.h +1 -1
- hw/xnest/XNWindow.h hw/xnest/XNWindow.h +1 -1
- hw/xnest/Xnest.h hw/xnest/Xnest.h +1 -1
- hw/xnest/Xnest.man.pre hw/xnest/Xnest.man.pre +1 -1
- hw/xnest/os2Stub.c hw/xnest/os2Stub.c +1 -1
- hw/xwin/InitInput.c hw/xwin/InitInput.c +1 -1
- hw/xwin/InitOutput.c hw/xwin/InitOutput.c +11 -6
- hw/xwin/XWin.man hw/xwin/XWin.man +9 -9
- hw/xwin/XWin.rc hw/xwin/XWin.rc +5 -5
- hw/xwin/ddraw.h hw/xwin/ddraw.h +0 -1
- hw/xwin/win.h hw/xwin/win.h +1 -1
- hw/xwin/winallpriv.c hw/xwin/winallpriv.c +1 -1
- hw/xwin/winblock.c hw/xwin/winblock.c +1 -1
- hw/xwin/winclip.c hw/xwin/winclip.c +1 -1
- hw/xwin/winclipboard.h hw/xwin/winclipboard.h +1 -1
- hw/xwin/winclipboardinit.c hw/xwin/winclipboardinit.c +1 -1
- hw/xwin/winclipboardtextconv.c hw/xwin/winclipboardtextconv.c +1 -1
- hw/xwin/winclipboardthread.c hw/xwin/winclipboardthread.c +1 -1
- hw/xwin/winclipboardunicode.c hw/xwin/winclipboardunicode.c +1 -1
- hw/xwin/winclipboardwndproc.c hw/xwin/winclipboardwndproc.c +1 -1
- hw/xwin/winclipboardxevents.c hw/xwin/winclipboardxevents.c +1 -1
- hw/xwin/wincmap.c hw/xwin/wincmap.c +1 -1
- hw/xwin/winconfig.c hw/xwin/winconfig.c +7 -2
- hw/xwin/winconfig.h hw/xwin/winconfig.h +0 -1
- hw/xwin/wincreatewnd.c hw/xwin/wincreatewnd.c +1 -1
- hw/xwin/wincursor.c hw/xwin/wincursor.c +1 -1
- hw/xwin/windialogs.c hw/xwin/windialogs.c +1 -1
- hw/xwin/winengine.c hw/xwin/winengine.c +1 -1
- hw/xwin/winerror.c hw/xwin/winerror.c +1 -1
- hw/xwin/winfillsp.c hw/xwin/winfillsp.c +1 -1
- hw/xwin/winfont.c hw/xwin/winfont.c +1 -1
- hw/xwin/wingc.c hw/xwin/wingc.c +1 -1
- hw/xwin/wingetsp.c hw/xwin/wingetsp.c +1 -1
- hw/xwin/winkeybd.c hw/xwin/winkeybd.c +1 -1
- hw/xwin/winkeybd.h hw/xwin/winkeybd.h +2 -2
- hw/xwin/winmisc.c hw/xwin/winmisc.c +1 -1
- hw/xwin/winmouse.c hw/xwin/winmouse.c +1 -1
- hw/xwin/winms.h hw/xwin/winms.h +1 -1
- hw/xwin/winmsg.c hw/xwin/winmsg.c +1 -1
- hw/xwin/winmsg.h hw/xwin/winmsg.h +1 -1
- hw/xwin/winmultiwindowclass.c hw/xwin/winmultiwindowclass.c +1 -1
- hw/xwin/winmultiwindowclass.h hw/xwin/winmultiwindowclass.h +1 -1
- hw/xwin/winmultiwindowicons.c hw/xwin/winmultiwindowicons.c +1 -1
- hw/xwin/winmultiwindowshape.c hw/xwin/winmultiwindowshape.c +1 -1
- hw/xwin/winmultiwindowwindow.c hw/xwin/winmultiwindowwindow.c +1 -1
- hw/xwin/winmultiwindowwm.c hw/xwin/winmultiwindowwm.c +1 -1
- hw/xwin/winmultiwindowwndproc.c hw/xwin/winmultiwindowwndproc.c +1 -1
- hw/xwin/winnativegdi.c hw/xwin/winnativegdi.c +1 -1
- hw/xwin/winpfbdd.c hw/xwin/winpfbdd.c +1 -1
- hw/xwin/winpixmap.c hw/xwin/winpixmap.c +1 -1
- hw/xwin/winpntwin.c hw/xwin/winpntwin.c +1 -1
- hw/xwin/winpolyline.c hw/xwin/winpolyline.c +1 -1
- hw/xwin/winprefs.c hw/xwin/winprefs.c +1 -1
- hw/xwin/winprefs.h hw/xwin/winprefs.h +1 -1
- hw/xwin/winprefslex.l hw/xwin/winprefslex.l +1 -1
- hw/xwin/winprefsyacc.y hw/xwin/winprefsyacc.y +1 -1
- hw/xwin/winpushpxl.c hw/xwin/winpushpxl.c +1 -1
- hw/xwin/winregistry.c hw/xwin/winregistry.c +1 -1
- hw/xwin/winrop.c hw/xwin/winrop.c +1 -1
- hw/xwin/winscrinit.c hw/xwin/winscrinit.c +1 -1
- hw/xwin/winsetsp.c hw/xwin/winsetsp.c +1 -1
- hw/xwin/winshaddd.c hw/xwin/winshaddd.c +2 -2
- hw/xwin/winshadddnl.c hw/xwin/winshadddnl.c +1 -1
- hw/xwin/winshadgdi.c hw/xwin/winshadgdi.c +1 -1
- hw/xwin/wintrayicon.c hw/xwin/wintrayicon.c +2 -2
- hw/xwin/winvideo.c hw/xwin/winvideo.c +2 -2
- hw/xwin/winwakeup.c hw/xwin/winwakeup.c +1 -1
- hw/xwin/winwindow.c hw/xwin/winwindow.c +1 -1
- hw/xwin/winwindow.h hw/xwin/winwindow.h +6 -6
- hw/xwin/winwndproc.c hw/xwin/winwndproc.c +1 -1
- ilbm/ilbm.h ilbm/ilbm.h +1 -1
- ilbm/ilbmbitblt.c ilbm/ilbmbitblt.c +1 -1
- ilbm/ilbmblt.c ilbm/ilbmblt.c +1 -1
- ilbm/ilbmbres.c ilbm/ilbmbres.c +1 -1
- ilbm/ilbmbresd.c ilbm/ilbmbresd.c +1 -1
- ilbm/ilbmbstore.c ilbm/ilbmbstore.c +1 -1
- ilbm/ilbmclip.c ilbm/ilbmclip.c +1 -1
- ilbm/ilbmcmap.c ilbm/ilbmcmap.c +1 -1
- ilbm/ilbmfillarc.c ilbm/ilbmfillarc.c +1 -1
- ilbm/ilbmfillrct.c ilbm/ilbmfillrct.c +1 -1
- ilbm/ilbmfillsp.c ilbm/ilbmfillsp.c +1 -1
- ilbm/ilbmfont.c ilbm/ilbmfont.c +1 -1
- ilbm/ilbmgc.c ilbm/ilbmgc.c +1 -1
- ilbm/ilbmgetsp.c ilbm/ilbmgetsp.c +1 -1
- ilbm/ilbmhrzvert.c ilbm/ilbmhrzvert.c +1 -1
- ilbm/ilbmimage.c ilbm/ilbmimage.c +1 -1
- ilbm/ilbmimggblt.c ilbm/ilbmimggblt.c +1 -1
- ilbm/ilbmline.c ilbm/ilbmline.c +1 -1
- ilbm/ilbmmisc.c ilbm/ilbmmisc.c +1 -1
- ilbm/ilbmpixmap.c ilbm/ilbmpixmap.c +1 -1
- ilbm/ilbmply1rct.c ilbm/ilbmply1rct.c +1 -1
- ilbm/ilbmplygblt.c ilbm/ilbmplygblt.c +1 -1
- ilbm/ilbmpntarea.c ilbm/ilbmpntarea.c +1 -1
- ilbm/ilbmpntwin.c ilbm/ilbmpntwin.c +1 -1
- ilbm/ilbmpolypnt.c ilbm/ilbmpolypnt.c +1 -1
- ilbm/ilbmpushpxl.c ilbm/ilbmpushpxl.c +1 -1
- ilbm/ilbmscrinit.c ilbm/ilbmscrinit.c +1 -1
- ilbm/ilbmsetsp.c ilbm/ilbmsetsp.c +1 -1
- ilbm/ilbmtegblt.c ilbm/ilbmtegblt.c +1 -1
- ilbm/ilbmtile.c ilbm/ilbmtile.c +1 -1
- ilbm/ilbmwindow.c ilbm/ilbmwindow.c +1 -1
- ilbm/ilbmzerarc.c ilbm/ilbmzerarc.c +1 -1
- include/XIstubs.h include/XIstubs.h +1 -1
- include/bstore.h include/bstore.h +1 -1
- include/bstorestr.h include/bstorestr.h +1 -1
- include/closestr.h include/closestr.h +1 -1
- include/colormap.h include/colormap.h +1 -1
- include/cursor.h include/cursor.h +2 -1
- include/cursorstr.h include/cursorstr.h +1 -1
- include/dix.h include/dix.h +1 -1
- include/dixevents.h include/dixevents.h +1 -1
- include/dixfont.h include/dixfont.h +1 -1
- include/dixgrabs.h include/dixgrabs.h +1 -1
- include/dixstruct.h include/dixstruct.h +1 -1
- include/exevents.h include/exevents.h +1 -1
- include/extension.h include/extension.h +1 -1
- include/extinit.h include/extinit.h +1 -1
- include/extnsionst.h include/extnsionst.h +1 -1
- include/gc.h include/gc.h +1 -1
- include/gcstruct.h include/gcstruct.h +1 -1
- include/globals.h include/globals.h +2 -1
- include/input.h include/input.h +1 -1
- include/inputstr.h include/inputstr.h +1 -1
- include/misc.h include/misc.h +1 -1
- include/miscstruct.h include/miscstruct.h +1 -1
- include/opaque.h include/opaque.h +1 -1
- include/os.h include/os.h +5 -1
- include/pixmap.h include/pixmap.h +1 -1
- include/pixmapstr.h include/pixmapstr.h +1 -1
- include/property.h include/property.h +1 -1
- include/propertyst.h include/propertyst.h +1 -1
- include/regionstr.h include/regionstr.h +2 -1
- include/resource.h include/resource.h +1 -1
- include/screenint.h include/screenint.h +1 -1
- include/scrnintstr.h include/scrnintstr.h +1 -1
- include/servermd.h include/servermd.h +2 -2
- include/site.h include/site.h +1 -1
- include/swaprep.h include/swaprep.h +1 -1
- include/swapreq.h include/swapreq.h +1 -1
- include/validate.h include/validate.h +1 -1
- include/window.h include/window.h +1 -1
- include/windowstr.h include/windowstr.h +1 -1
- iplan2p4/ipl.h iplan2p4/ipl.h +1 -1
- iplan2p4/iplallpriv.c iplan2p4/iplallpriv.c +1 -1
- iplan2p4/iplbitblt.c iplan2p4/iplbitblt.c +1 -1
- iplan2p4/iplblt.c iplan2p4/iplblt.c +1 -1
- iplan2p4/iplbres.c iplan2p4/iplbres.c +1 -1
- iplan2p4/iplbresd.c iplan2p4/iplbresd.c +1 -1
- iplan2p4/iplbstore.c iplan2p4/iplbstore.c +1 -1
- iplan2p4/iplcmap.c iplan2p4/iplcmap.c +1 -1
- iplan2p4/iplfillarc.c iplan2p4/iplfillarc.c +1 -1
- iplan2p4/iplfillrct.c iplan2p4/iplfillrct.c +1 -1
- iplan2p4/iplfillsp.c iplan2p4/iplfillsp.c +1 -1
- iplan2p4/iplgc.c iplan2p4/iplgc.c +1 -1
- iplan2p4/iplgetsp.c iplan2p4/iplgetsp.c +1 -1
- iplan2p4/iplhrzvert.c iplan2p4/iplhrzvert.c +1 -1
- iplan2p4/iplimage.c iplan2p4/iplimage.c +1 -1
- iplan2p4/iplline.c iplan2p4/iplline.c +1 -1
- iplan2p4/iplmap.h iplan2p4/iplmap.h +1 -1
- iplan2p4/iplmergerop.h iplan2p4/iplmergerop.h +1 -1
- iplan2p4/iplmskbits.c iplan2p4/iplmskbits.c +1 -1
- iplan2p4/iplmskbits.h iplan2p4/iplmskbits.h +1 -1
- iplan2p4/iplpack.c iplan2p4/iplpack.c +1 -1
- iplan2p4/iplpack.h iplan2p4/iplpack.h +1 -1
- iplan2p4/iplpixmap.c iplan2p4/iplpixmap.c +1 -1
- iplan2p4/iplply1rct.c iplan2p4/iplply1rct.c +1 -1
- iplan2p4/iplpntwin.c iplan2p4/iplpntwin.c +1 -1
- iplan2p4/iplpolypnt.c iplan2p4/iplpolypnt.c +1 -1
- iplan2p4/iplrrop.c iplan2p4/iplrrop.c +1 -1
- iplan2p4/iplrrop.h iplan2p4/iplrrop.h +1 -1
- iplan2p4/iplscrinit.c iplan2p4/iplscrinit.c +1 -1
- iplan2p4/iplsetsp.c iplan2p4/iplsetsp.c +1 -1
- iplan2p4/iplsolid.c iplan2p4/iplsolid.c +1 -1
- iplan2p4/ipltegblt.c iplan2p4/ipltegblt.c +1 -1
- iplan2p4/ipltile32.c iplan2p4/ipltile32.c +1 -1
- iplan2p4/ipltileodd.c iplan2p4/ipltileodd.c +1 -1
- iplan2p4/iplwindow.c iplan2p4/iplwindow.c +1 -1
- lbx/lbxcmap.c lbx/lbxcmap.c +1 -1
- lbx/lbxdix.c lbx/lbxdix.c +1 -1
- lbx/lbxexts.c lbx/lbxexts.c +1 -1
- lbx/lbxgfx.c lbx/lbxgfx.c +1 -1
- lbx/lbxmain.c lbx/lbxmain.c +1 -1
- lbx/lbxopts.c lbx/lbxopts.c +1 -1
- lbx/lbxprop.c lbx/lbxprop.c +1 -1
- lbx/lbxserve.h lbx/lbxserve.h +1 -1
- lbx/lbxsquish.c lbx/lbxsquish.c +1 -1
- lbx/lbxsrvopts.h lbx/lbxsrvopts.h +1 -1
- lbx/lbxswap.c lbx/lbxswap.c +1 -1
- lbx/lbxtables.c lbx/lbxtables.c +1 -1
- lbx/lbxtags.c lbx/lbxtags.c +1 -1
- lbx/lbxtags.h lbx/lbxtags.h +1 -1
- lbx/lbxzerorep.c lbx/lbxzerorep.c +1 -1
- mfb/fastblt.h mfb/fastblt.h +1 -1
- mfb/maskbits.c mfb/maskbits.c +1 -1
- mfb/maskbits.h mfb/maskbits.h +1 -1
- mfb/mergerop.h mfb/mergerop.h +1 -1
- mfb/mfb.h mfb/mfb.h +1 -1
- mfb/mfbbitblt.c mfb/mfbbitblt.c +1 -1
- mfb/mfbblt.c mfb/mfbblt.c +1 -1
- mfb/mfbbres.c mfb/mfbbres.c +1 -1
- mfb/mfbbresd.c mfb/mfbbresd.c +1 -1
- mfb/mfbclip.c mfb/mfbclip.c +1 -1
- mfb/mfbcmap.c mfb/mfbcmap.c +1 -1
- mfb/mfbfillarc.c mfb/mfbfillarc.c +1 -1
- mfb/mfbfillrct.c mfb/mfbfillrct.c +1 -1
- No files found.
Too many changes to show.
To preserve performance only 1000 of 1000+ files are displayed.