diff options
author | Aaron Plattner <aplattner@nvidia.com> | 2007-04-20 14:30:45 -0700 |
---|---|---|
committer | Aaron Plattner <aplattner@nvidia.com> | 2007-04-20 15:20:12 -0700 |
commit | 7a07a765c2a3816e8cd0487e8f66bc767024142d (patch) | |
tree | 2981090528cac9ab5172749708a621fce4dd1b0a /compat | |
parent | 2971fd0a18e947c5d39d6af78b0b77d6e4fe00d8 (diff) |
Steal RandR1.2 compat code from the Intel driver.
Spruce it up a bit so that --with-xserver-source works even if there's a local
compat copy.
Diffstat (limited to 'compat')
-rw-r--r-- | compat/.gitignore | 2 | ||||
-rw-r--r-- | compat/Makefile.am | 15 | ||||
-rw-r--r-- | compat/README | 7 |
3 files changed, 24 insertions, 0 deletions
diff --git a/compat/.gitignore b/compat/.gitignore new file mode 100644 index 0000000..8d30df6 --- /dev/null +++ b/compat/.gitignore @@ -0,0 +1,2 @@ +modes +parser diff --git a/compat/Makefile.am b/compat/Makefile.am new file mode 100644 index 0000000..f5f8d93 --- /dev/null +++ b/compat/Makefile.am @@ -0,0 +1,15 @@ +EXTRA_DIST = \ + parser/xf86Parser.h \ + parser/xf86Optrec.h \ + modes/xf86Crtc.c \ + modes/xf86Crtc.h \ + modes/xf86Cursors.c \ + modes/xf86cvt.c \ + modes/xf86DiDGA.c \ + modes/xf86EdidModes.c \ + modes/xf86Modes.c \ + modes/xf86Modes.h \ + modes/xf86RandR12.c \ + modes/xf86RandR12.h \ + modes/xf86Rename.h \ + modes/xf86Rotate.c diff --git a/compat/README b/compat/README new file mode 100644 index 0000000..3e2b089 --- /dev/null +++ b/compat/README @@ -0,0 +1,7 @@ +This directory contains a copy of the mode and parser code from RandR 1.2. + +If you are building from git and you don't have xorg-server-1.3 or higher or you +want to be able to make dist, you should create symlinks to the modes and parser +directories from a RandR 1.2-enabled server here: + + $ ln -s /path/to/xorg/xserver/hw/xfree86/{modes,parser} . |