summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2010-08-31Don't even attempt to establish a SIGIO handler for DRI1.Owain Ainsworth
This hasn't been used for a very, very, very long time, (since before OpenBSD had dri support, for example) and it causes segfaults on dri drivers when sigio is disabled. Now we don't need to do context swaps on sigio nor are we trying to do interrupts in userland (thank fuck for that) this function can die the death that I intended it to die about two years ago, may it burn. The kernel support the the sigio ioctl will be removed in a couple of weeks to give people time to update (right now it accepts it, then ignores it). ok kettenis@, matthieu@.
2010-08-29Use the KERN_CONSDEV ioctl to figure out what the console device is andMark Kettenis
attempt to open that first before trying /dev/ttyC[0-7]. This makes X autoconfiguration a tad bit more intuitive on machines with multiple SBus or UPA framebuffers, where wsdisplay0 isn't the console. PCI framebuffers are still busted though. ok matthieu@
2010-08-29remove checks for xf1bpp and xf4bpp support, since they are not used.Matthieu Herrb
2010-08-29Add missing headers for ioctl() and getpagesize() prototypes.Matthieu Herrb
2010-08-29XFree86(1) -> __xservername__(1). __xservername__ is a macro thatMatthieu Herrb
gets replaced by the actual X server (Xorg currently) by the build system.
2010-08-29Sync the build system of xf86-video-{wildcatfb,wsfb,wsudl} with upstreams.Matthieu Herrb
No functionnal change.
2010-08-29Update after module loader simplification upstreams. Fixes loadingMatthieu Herrb
in xserver 1.8. ok miod@.
2010-08-28Fix autoconfiguration for accelerated drivers on sparc/sparc64. CurrentlyMark Kettenis
limited to sunffb; others will need to be added to bsd_sbus.c if we start shipping them. ok matthieu@, oga@
2010-08-26We no longer link nawk to awk. OK oga@ matthieu@Todd C. Miller
2010-08-25remove annoying is lvds / is crt errorf callsMartynas Venckus
ok fgs@ matthieu@ oga@
2010-08-25enable pixman (with a workaround from miod@) for m68k, fixes hp300 and mvme68kTodd T. Fries
2010-08-25make 'make release' work on vaxTodd T. Fries
2010-08-23updateMatthieu Herrb
2010-08-22Update to xterm 261. Tested by krw@, jcs@.Matthieu Herrb
2010-08-22Update to xf86-video-nv 2.1.18.Matthieu Herrb
Tested at least by krw@, benoit@ and giovanni@.
2010-08-22Update to xf86-video-mga 1.4.13.Matthieu Herrb
2010-08-22Update to xf86-video-vmware 11.0.2. No functionnal change.Matthieu Herrb
2010-08-22Update to xf86-input-vmmouse 12.6.10. No functionnal change.Matthieu Herrb
2010-08-22Update to libXvMC 1.0.6. No functionnal change.Matthieu Herrb
2010-08-21Update to util-macros 1.10.0Matthieu Herrb
2010-08-21Update to final X.Org xset 1.2.0. No functional change.Matthieu Herrb
2010-08-21Update to libXau 1.0.6. No functional change.Matthieu Herrb
2010-08-21Update to x11proto 7.0.18. no functional change.Matthieu Herrb
2010-08-21Merge commits 838 and 840 from trunk:Matthieu Herrb
Fix bug with suspend and VT switch on VX800 and 64bit systems (tested by jakemsr@) Fix segfaults with EXA and XV (Ticket #359) Tested on K8M890 and VN800
2010-08-21Update to kbproto 1.0.5Matthieu Herrb
2010-08-21updateMatthieu Herrb
2010-08-18Fix autoconfiguration on sparc and sparc64.Owain Ainsworth
The code to add sunffb unconditionally on !solaris for __sparc__ systems is incorrect for openbsd. More specifically, due to interactions between hardware drivers and wsfb in preinit we can't unconditionally add wsfb to the list of fallbacks, so we only add wsfb if no other option was found. Additionally sunffb does not need to be unconditionally added because the bus probing code will find these devices already. So, long story short: make that code chunk conditional on __sparc__ && defined(__linux__) instead. change from !openbsd to __linux__ requested by kettenis@. Tested by at least myself and stsp@. ok matthieu@, kettenis@.
2010-08-10syncTodd T. Fries
2010-08-10permit sgi/loongson to make a release with no xorg.conf,Todd T. Fries
broken since xorg.conf was removed for these archs
2010-08-05Disable ftgl support explictely.Matthieu Herrb
2010-08-05Start updating README and xorg.conf file for 4.8. ok miod@.Matthieu Herrb
sparc64 still needs to be checked and updated.
2010-08-04disable video for now; ok deraadt@Todd T. Fries
2010-08-04set PATH only on configure run, unbreak autoreconf...Marc Espie
2010-08-04enforce a consistent path in configure, avoid all kind of trouble with XMarc Espie
picking up ports from /usr/local. okay matthieu@
2010-08-04Commit the right version of the file: we want to remove XkbLayout fromMatthieu Herrb
the defaults, no XkbModel.
2010-08-04Fix the fix of the fix.Matthieu Herrb
Previous iteration would again ignore wscons keyboard.encoding setting. Now no default xkbLayout is set, unless keyboard.encoding=user.
2010-08-04Don't set xkblayout from wscons setting if specified in xorg.conf.Matthieu Herrb
Problem noticed, and patch provided by Mike Belopuhov. Thanks.
2010-08-04Pull in some fixes from upstream:David Coppa
o various memleak fixes o ensure get_wm_class_from_reply returns a valid C-string OK matthieu@, deraadt@
2010-08-03Remove some of the obsolete stuff.Matthieu Herrb
2010-08-03Remove empty .TPMatthieu Herrb
2010-08-02Current pixman lib doesn't build on m68k. Disable it on those machines.Matthieu Herrb
ok deraadt@
2010-08-02puffy 4.8Todd T. Fries
2010-08-01Fix a problem when switching back from a text VT; avoid stealingMatthieu Herrb
the keyboard or other input devices events.
2010-07-31Fix X -keepPriv by calling xf86OpenConsole() early enough on architecturesMatthieu Herrb
that don't have a separate /dev/xf86. Problem noticed by kettenis@ and krw@ ok kettenis@.
2010-07-31regenMatthieu Herrb
2010-07-31Define AM_CFLAGS and AM_CPPFLAGS like other drivers do. This fixesMatthieu Herrb
build with CFLAGS=-g.
2010-07-31updateMatthieu Herrb
2010-07-31Update to sessreg 1.0.6Matthieu Herrb
2010-07-31Update to sessreg 1.0.5Matthieu Herrb
2010-07-31Update to libpciaccess 0.12.Matthieu Herrb
We already had most of the code from this version, it just add 2 bug fixes. no ABI/API change.