matthieu
6e1bcfb3c6
Update to xserver 1.18.4
...
tested by krw@ and dcoppa@ ok dcoppa@
2016-08-09 18:59:50 +00:00
matthieu
185312ce1c
xserver: fix an off-by-one error that lead to asprintf("%s", NULL)
...
reported by deraadt@, fix reviewed in X.Org by Keith Packard.
2016-08-03 19:31:23 +00:00
matthieu
e927c03e30
Update to xserver 1.18.3. Tested by shadchin@ and naddy@.
...
Note that indirect GLX is now disbled by default.
2016-05-29 12:02:34 +00:00
matthieu
ab587bced4
Cleanup gcc warnings and function prototypes.
2016-03-06 17:11:46 +00:00
kettenis
ed4591c1ef
On Broadwell, default to using the modesetting driver. Our KMS support on
...
Broadwell is still a bit weak and the modesetting driver seems to work
better than the intel driver, while still providing 3D acceleration and
video playback support.
ok phessler@, matthieu@, jsg@
2015-12-21 08:37:11 +00:00
matthieu
1e036e407b
Remove the -configure option. This has been broken for a loong time
...
and no one is going to fix it.
2015-11-15 08:28:24 +00:00
matthieu
86ea9f12e2
Update to xserver 1.17.2. tested by dcoppa@, jsg@, jasper@ & naddy@
2015-09-16 19:10:19 +00:00
matthieu
4f58590a42
Update to xserver 1.16.1.
...
Tested by naddy@, jsg@ & kettenis@
2014-09-27 17:52:59 +00:00
matthieu
3bbfe7b179
Update to xserver 1.15.1.
...
Tested by at least ajacoutot@, dcoppa@ & jasper@
2014-05-02 19:27:46 +00:00
matthieu
8742d82e5a
Update to xserver 1.14.5
2013-12-28 14:40:01 +00:00
matthieu
5ae225f39c
Update to xserver 1.14.3
2013-09-28 15:36:30 +00:00
matthieu
577763cda7
Uodate to xserver 1.14.2. Tested by krw@, shadchin@, todd@
2013-08-24 19:44:25 +00:00
matthieu
adec87cf5d
Update to X server 1.14.1. Tested by many during t2k13. Thanks.
2013-06-07 17:28:45 +00:00
tobiasu
5530414e6d
Include declaration of sparcDriverName()
...
Fixes segfault on sunffb graphics. ok matthieu@
2012-11-04 17:20:33 +00:00
matthieu
e26a212fd0
Regen autotools build system with a clean environment.
...
It was previously generated with a config pointing to OpenBSD's libtool
which is not ready yet.
2012-10-27 14:52:25 +00:00
matthieu
58d9658ddc
regen
2012-10-14 08:59:33 +00:00
matthieu
143961ca76
Un-blacklist radeon, blacklist radeonold. So X -configure will now
...
select the radeon driver.
2012-08-08 16:37:19 +00:00
matthieu
20c1ecb828
Remove white space diff with X.Org.
2012-08-07 20:12:01 +00:00
matthieu
eb59960f12
regen autotools
2012-08-05 18:14:29 +00:00
matthieu
fe11647d1f
Update to xserver 1.12.3.
2012-08-05 18:11:37 +00:00
matthieu
e60da74507
Update to xserver 1.12.2. tested by naddy@, krw@, mpi@.
2012-06-10 13:21:05 +00:00
matthieu
e4b13eedd8
Introduce a black list of drivers for Xorg -configure, and blacklist
...
all radeon driver variants, except radeonold.
This fixes the conflicting symbols warnings seen by Xorg -configure
and forces it to use radeonold in the generated xorg.conf file.
Xorg -configure is still broken in many ways, and should be
avoided.
2012-03-04 17:55:31 +00:00
matthieu
9576ef223d
Update to xserver 1.11.4. tested by krw@, shadchin@.
2012-01-31 07:52:35 +00:00
matthieu
4344ac3914
Bugfix Update to xserver 1.11.3
2011-12-18 16:08:59 +00:00
matthieu
61a7d5427d
Update to xserver 1.11.2
2011-11-05 13:32:40 +00:00
matthieu
a4d630d049
regen
2011-06-29 19:57:45 +00:00
matthieu
b6047701ef
Introduce new autoconfiguration code for X input drivers, based on X
...
hotplug framework.This also takes care of the configuration of the
keyboard layout from the wscons layout that was hacked inside the
keyboard driver.
Tested by many, ok oga@.
2011-06-29 19:55:01 +00:00
matthieu
2cc47a1202
add a new build switch 'XENOCARA_USE_XKEYBOARD_CONFIG' to enable
...
the use of xkeyboard-config xkb definitions instead of the old xkbdata.
This will make testing easier. No changes in default builds.
ok shadchin@
2011-03-08 07:59:23 +00:00
matthieu
dd56fb17b5
Update to xorg-server 1.9.3. Tested by japser@, landry@ and ajacoutot@
...
in various configurations.
2010-12-21 20:10:44 +00:00
matthieu
428261197a
Upgrade to xorg-server 1.9.2.
...
Tested by ajacoutot@, krw@, shadchin@ and jasper@ on various configurations
including multihead with both zaphod and xrandr.
2010-12-05 15:36:02 +00:00
matthieu
d57b1a146f
regen (yes lots of files, since util-macros has been updated).
2010-09-01 13:43:24 +00:00
kettenis
1fb6d3c868
Fix autoconfiguration for accelerated drivers on sparc/sparc64. Currently
...
limited to sunffb; others will need to be added to bsd_sbus.c if we start
shipping them.
ok matthieu@, oga@
2010-08-28 17:59:01 +00:00
oga
25b0cbcd49
Fix autoconfiguration on sparc and sparc64.
...
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-18 22:37:36 +00:00
matthieu
95d684a05b
Update to xserver 1.8. Tested by many. Ok oga@, todd@.
2010-07-27 19:02:24 +00:00
matthieu
49012820cb
Add a configure test for newer proto headers and use it to enable
...
building xserver 1.6 with those headers. ok oga@.
2010-04-13 19:54:46 +00:00
kettenis
42fc690ae9
Only add wsfb to the list of autoconfigured drivers if no other matches were
...
found. Makes xorg.conf-less X work again on sparc64 and macppc systems with
a single display adapter.
ok matthieu@, beck@
2010-03-15 20:50:52 +00:00
matthieu
dde92d4099
basic support for mips64el. ok miod@.
2010-02-01 21:12:42 +00:00
matthieu
8542099ff7
Update to server 1.6.5.
2009-10-31 14:09:43 +00:00
matthieu
b6548f4956
Replace fbdev by wsfb as fallback driver on arches that support it.
...
Ok todd@, oga@.
2009-10-27 20:49:51 +00:00
matthieu
6b7a7e866e
Merge intel driver autoconfiguration changes from upstream:
...
- don't list the dead i810 driver anymore
- blacklist the poulsbo chipset which isn't supported by
xf86-video-intel. Gives vesa a chance. ok oga@, kettenis@.
2009-10-06 05:57:00 +00:00
matthieu
888f50b07a
Don't unconditionnally add a "sunffb" device in autoconfig mode
...
on OpenBSD. It will be added by sparcDriverName() if a ffb card
is present.
2009-09-11 22:12:50 +00:00
matthieu
88f6f3ea75
update to xserver 1.6.4rc1. Tested by many, ok oga@.
2009-09-06 19:44:18 +00:00
matthieu
cf96687724
provide mem_barrier() definition for amd64 too. from X.Org git. ok oga@
2009-03-28 14:21:35 +00:00
kettenis
093965b9a6
Add code to choose a video driver based on the wscons(4) display type. Makes
...
it possible to run X without a configuration file on (some) sparc64 machines
and perhaps other machines that use wscons(4) frame buffers.
ok matthieu@
2009-02-19 21:53:30 +00:00
todd
6b96c02f57
note to self: no cookie, a compile started is not a compile tested
2009-01-13 19:46:28 +00:00
todd
8b1dd35d69
yet another gcc2 found bad coding practice, move variable declartion to the
...
top of the scope. this time found by sparc.
2009-01-13 16:30:45 +00:00
matthieu
8d98f5900d
regen
2009-01-12 20:18:51 +00:00
matthieu
369cc172f4
Update to xserver 1.5.3 + latests commits on server-1.5-branch.
...
tested by stsp@, david@, form@, ckuethe@, oga@. thanks.
2009-01-12 20:17:47 +00:00
matthieu
3a0e900dcf
missing action in if statement.
2008-11-23 12:06:43 +00:00
todd
65e3b816dc
variable declarations at the beginning of the scope; found by sparc (a gcc2 arch)
2008-11-04 16:50:50 +00:00