summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2006-10-13Bump to 1.1.1xf86-input-keyboard-1.1.1input-hotplugAdam Jackson1-1/+1
2006-07-09Added some missing includes.Tilman Sauerbeck1-0/+3
2006-04-07Unlibcwrap. Bump server version requirement. Bump to 1.1.0.xf86-video-impact-0_2_0keyboard-1_1_0XORG-7_1Adam Jackson3-6/+13
2005-12-21Update package version for X11R7 release.XORG-7_0Kevin E Martin2-1/+6
2005-12-19Stub COPYING filesAdam Jackson1-0/+12
2005-12-19Typo fixes, mailing list & url updates, and other changes to prepare forAlan Coopersmith3-8/+12
X11R6.9 & 7.0 releases.
2005-12-15Update package version number for final X11R7 release candidate.XORG-6_99_99_904Kevin E Martin2-1/+6
2005-12-06Change *man_SOURCES ==> *man_PRE to fix autotools warnings.MODULAR_COPYKevin E Martin2-2/+7
2005-12-03Update package version number for X11R7 RC3 release.XORG-6_99_99_903Kevin E Martin2-1/+6
2005-12-02Remove extraneous AC_MSG_RESULT.Kevin E Martin2-1/+5
2005-11-29Only build dlloader modules by default.Adam Jackson2-0/+6
2005-11-28Change *mandir targets to use new *_MAN_DIR variables set by xorg-macros.m4Alan Coopersmith1-1/+1
update to fix bug #5167 (Linux prefers *.1x man pages in man1 subdir)
2005-11-21Add .cvsignores for drivers.Eric Anholt3-0/+27
2005-11-09Bump version numbers for X11R6.9/X11R7 RC2.XORG-6_99_99_902XORG-6_8_99_903XORG-6_8_99_902Kevin E Martin1-1/+1
2005-11-09Update package version number for X11R7 RC2 release.Kevin E Martin2-1/+6
2005-11-08See ChangeLog entry 2005-11-07 for details.Kean Johnson1-0/+8
2005-11-01Update pkgcheck depedencies to work with separate build roots.Kevin E Martin2-1/+11
2005-10-19Update package version number for RC1 release.XORG-6_99_99_901Kevin E Martin1-1/+1
2005-10-18Do the following to make the drivers pass distcheck:Kevin E Martin1-1/+1
- Only define EXTRA_DIST when there are actually man pages to be processed - Add missing man pages to keyboard and ati drivers EXTRA_DIST
2005-10-18Use @DRIVER_MAN_SUFFIX@ instead of $(DRIVER_MAN_SUFFIX) in macroAlan Coopersmith1-1/+1
substitutions to work better with BSD make
2005-10-17More 1.7 braindamage: define EXTRA_DIST in terms of @DRIVER_NAME@ insteadAdam Jackson1-1/+1
of indirectly
2005-10-17Use sed & cpp to substitute variables in driver man pagesAlan Coopersmith2-20/+59
2005-10-16Remove note about kbd being experimental. Add Solaris to supported OS listXORG-6_8_99_901Alan Coopersmith2-7/+14
for kbd. Add note about plans to move to kbd in a future release.
2005-10-01Bug #3411: fix handling of keyboard Autorepeat rate in xorg.conf.Matthieu Herrb1-2/+15
2005-08-18Update autogen.sh to one that does objdir != srcdir.Daniel Stone1-1/+10
2005-08-10Don\'t lose existing CFLAGS in all the input drivers and some of the videoSøren Sandmann Pedersen1-1/+1
drivers
2005-08-02AS_HELP_STRING workaroundXORG-6_99_99_900Adam Jackson1-0/+2
2005-07-29Various changes preparing packages for RC0:Kevin E Martin1-2/+4
- Verify and update package version numbers as needed - Implement versioning scheme - Change bug address to point to bugzilla bug entry form - Disable loadable i18n in libX11 by default (use --enable-loadable-i18n to reenable it) - Fix makedepend to use pkgconfig and pass distcheck - Update build script to build macros first - Update modular Xorg version
2005-07-13Make the module dir configurableKevin E Martin1-3/+8
2005-07-13//bugs.freedesktop.org/show_bug.cgi?id=2587> Fix keyboard mapping on SunXORG-6_8_99_900XORG-6_8_99_16XORG-6_8_99_15Alan Hourihane1-0/+14
keyboards in the keyboard module.
2005-07-13Update all input drivers to pass distcheckKevin E Martin3-5/+20
2005-07-12Build skeletons for input drivers. Should basically work.Adam Jackson5-0/+157
2005-07-11Prep input drivers for modularizing by adding guarded #include "config.h"Adam Jackson1-0/+4
2005-07-01Change all misc.h and os.h references to <X11/foo.h>.XORG-6_8_99_14Daniel Stone1-2/+2
2005-06-25Bug #3626: _X_EXPORT tags for video and input drivers.XORG-6_8_99_13Adam Jackson1-4/+4
2005-05-10Bugzilla #2561: Disable some keycode translations on PC98, which hadXORG-6_8_99_9XORG-6_8_99_8XORG-6_8_99_7XORG-6_8_99_12XORG-6_8_99_11XORG-6_8_99_10Eric Anholt1-5/+7
various bad effects including modifier keys not working.
2005-04-20Fix includes right throughout the Xserver tree:sco_port_update-baseXORG-6_8_99_6XORG-6_8_99_5XORG-6_8_99_4Daniel Stone1-6/+6
change "foo.h" to <X11/foo.h> for core headers, e.g. X.h, Xpoll.h; change "foo.h", "extensions/foo.h" and "X11/foo.h" to <X11/extensions/foo.h> for extension headers, e.g. Xv.h; change "foo.[ch]" to <X11/Xtrans/foo.[ch]> for Xtrans files.
2005-01-11Minor format fix.XORG-6_8_99_3XORG-6_8_99_2XORG-6_8_99_1Egbert Eich1-2/+10
Added explanatory comment and debug code. Added comment.
2005-01-10PC keyboards internally generate a different scan code when the ALTEgbert Eich1-4/+4
modifier is pressed with the SysReq/Print key. Since X expects the same scancode regardless of the modifier the keyboard driver has to 'map the code back'. So far it does so when seeing the SysReq scancode without checking if the modifier is on. If this scancode is also sent by another key on an extended keyboard it receives the same remapping. Fix: Add check for ALT modifier down before doing the remapping (Helmut Fahrion).
2004-12-06Previous fix broke hardware-based autorepeat. This fix mimics the behaviourMatthieu Herrb1-5/+9
of the legacy driver by making a local copy of the autoRepeat flag.
2004-12-03programs/Xserver/hw/xfree86/input/keyboard/kbd.cMatthieu Herrb1-5/+2
- set default XkbModel to pc105 (like legacy keyboard driver did) - fix autorepeat (Bugzilla #1651, Petter Urkedal).
2004-08-31Fix keyboard driver regression (Bug #1238, Kristian Hoegsberg).rel-0-6-1lg3d-rel-0-7-0lg3d-baseXORG-6_8_1XORG-6_8_0XORG-6_7_99_904Kevin E Martin1-2/+15
2004-08-29Fix make install when BuildServersOnly is YES (Bug #1213).Kevin E Martin1-4/+2
Fix build failures when UseDeprecatedKeyboardDriver is YES and DoLoadableServer is NO (Bug #1229, Kristian Høgsberg). Fix failure when using DLL loader and LD_BIND_NOW is set (Bug #1212, Adam Jackson).
2004-08-16Update release and date for first RC.XORG-6_7_99_903XORG-6_7_99_902XORG-6_7_99_901Kevin E Martin1-22/+24
Fix kbd/keyboard driver for DoLoadableServer NO. Revert change since it is better to set date in the config files.
2004-08-16Add kdb <-> keyboard aliasing when UseDeprecatedKeyboardDriver is NO (BugKevin E Martin1-18/+87
#1072, Kristian Høgsberg).
2004-04-23Merging XORG-CURRENT into trunkXORG-6_7_99_2XORG-6_7_99_1XACE-SELINUX-MERGEEgbert Eich3-11/+13
2004-03-14Importing vendor version xf86-4_4_99_1 on Sun Mar 14 00:26:39 PST 2004xf86-4_4_99_1Egbert Eich3-3/+3
2004-03-03Importing vendor version xf86-4_4_0 on Wed Mar 3 04:09:24 PST 2004xf86-4_4_0Egbert Eich3-3/+3
2004-02-26readding XFree86's cvs IDsxf86-4_3_99_903Egbert Eich3-3/+3
2004-02-26Importing vendor version xf86-4_3_99_903 on Wed Feb 26 01:21:00 PST 2004Egbert Eich3-3/+3