CVS log for xc/programs/Xserver/hw/xfree86/common/xf86Module.h

(logo)

Help

(back) Up to [XFree86 CVS] / xc / programs / Xserver / hw / xfree86 / common

Request diff between arbitrary revisions


Default branch: MAIN
Bookmark a link to: HEAD / (download)
Current tag: MAIN

Revision 1.48 / (view) - annotate - [select for diffs] , Thu Mar 15 13:38:36 2007 UTC (6 years, 2 months ago) by tsi
Branch: MAIN
CVS Tags: xf-4_8_0-bindist, xf-4_8_0, xf-4_8-branch, xf-4_7_99_9, xf-4_7_99_8, xf-4_7_99_7, xf-4_7_99_6, xf-4_7_99_5, xf-4_7_99_4, xf-4_7_99_31, xf-4_7_99_30, xf-4_7_99_3, xf-4_7_99_29, xf-4_7_99_28, xf-4_7_99_27, xf-4_7_99_26, xf-4_7_99_25, xf-4_7_99_24, xf-4_7_99_23, xf-4_7_99_22, xf-4_7_99_21, xf-4_7_99_20, xf-4_7_99_2, xf-4_7_99_19, xf-4_7_99_18, xf-4_7_99_17, xf-4_7_99_16, xf-4_7_99_15, xf-4_7_99_14, xf-4_7_99_13, xf-4_7_99_12, xf-4_7_99_11, xf-4_7_99_10, xf-4_7_99_1, xf-4_7_0, xf-4_7-branch, xf-4_6_99_29, xf-4_6_99_28, xf-4_6_99_27, xf-4_6_99_26, xf-4_6_99_25, xf-4_6_99_24, xf-4_6_99_23, xf-4_6_99_22, xf-4_6_99_21, xf-4_6_99_20, HEAD
Changes since 1.47: +2 -2 lines
Diff to previous 1.47
 121. Consolidate compatilibity definitions for OpenBSD/sparc and bump video
      ABI version due to yesterday's SBUS ABI changes (Marc La France).

Revision 1.47 / (view) - annotate - [select for diffs] , Sun Dec 10 15:58:27 2006 UTC (6 years, 5 months ago) by tsi
Branch: MAIN
CVS Tags: xf-4_6_99_19, xf-4_6_99_18, xf-4_6_99_17, xf-4_6_99_16, xf-4_6_99_15, xf-4_6_99_14
Changes since 1.46: +2 -2 lines
Diff to previous 1.46
  87. Some -DDEBUG build cleanups (Marc La France).

Revision 1.46 / (view) - annotate - [select for diffs] , Thu Mar 16 16:49:56 2006 UTC (7 years, 2 months ago) by dawes
Branch: MAIN
CVS Tags: xf-4_6_99_9, xf-4_6_99_8, xf-4_6_99_7, xf-4_6_99_6, xf-4_6_99_5, xf-4_6_99_4, xf-4_6_99_3, xf-4_6_99_2, xf-4_6_99_13, xf-4_6_99_12, xf-4_6_99_11, xf-4_6_99_10, xf-4_6_99_1, xf-4_6_0, xf-4_6-branch, xf-4_5_99_904, xf-4_5_99_903, xf-4_5_99_902
Changes since 1.45: +16 -16 lines
Diff to previous 1.45
 242. Loader updates:
       - Improve the stack trace information.
       - Improve the handling of instance-specific req/ref symbols.
       - Use stronger typing for the module-visible instance-specific module
         descriptor.
       - No longer disable xf86UnloadSubModule(), since the loader now handles
         unloads and re-loads cleanly.
       - Update all modules to make use of the above, and fix some bugs
         that this exposed.
       - Some loader message cleanups.
      (X-Oz Technologies, David Dawes).

Revision 1.45 / (view) - annotate - [select for diffs] , Thu Mar 2 03:00:36 2006 UTC (7 years, 2 months ago) by dawes
Branch: MAIN
CVS Tags: xf-4_5_99_901
Changes since 1.44: +6 -1 lines
Diff to previous 1.44
 229. XFree86 loader enhancments:
      - Per-module export symbol lists.
      - Improved symbol hash.
      - A mechanism for specifying the scope of symbols.
      - Keep track of relocations, and undo them when they become unresolved
        on module unload, and recalculate them when they change on module
        load.
      - Check relocations on each module load/unload, ensuring that function
        references that are unresolved at any time are always mapped to the
        catch-all function preventing calls into nowhere.
      - Efficient handling of invariant relocations.
      - Cleanup/update the memleak stack trace code, and print a stack
        trace when an unresolved function is called or when XFree86 aborts.
      - Update the catch-all function to identify the unresolved function.
      - Read the XFree86 executable's symbol table in order to get the
        most useful stack traces, and use dladdr(), where available,
        for shared library references.
      - Cleanup and unify debug messages for the loader components.
      - Allow for module-instance-specific referenced and required
        symbols lists, so that a module's requirements can be removed
        when it is unloaded.
      - Update the ati driver to make use of some of the new loader
        functionality.
      - General loader cleanups, including removing some redundancies.
      - Don't build the coff loader on platforms that it doesn't support.
      (X-Oz Technologies, David Dawes).

Revision 1.44 / (view) - annotate - [select for diffs] , Sun Feb 19 15:51:26 2006 UTC (7 years, 3 months ago) by tsi
Branch: MAIN
CVS Tags: xf-4_5_99_22
Changes since 1.43: +8 -8 lines
Diff to previous 1.43
 217. A rework of the way extension support is built into servers to allow for
      servers with different sets of extensions in the same build.  This starts
      with an idea introduced in David Dawes's TinyX work, and extends it to
      also apply to the Xprt, Xnest, Xvfb, Xdmx and Xsun* servers.  The changes
      include:
      - Add, as a comment, a definition for what makes an extension pervasive.
      - TOGCUP is not a pervasive extension, but XSYNC, BIGREQS and XRES are.
      - Consolidate #define's for the Xv, XvMC and XRES extensions.
      - Flip, in favour of the majority case, MITSHM's default decision WRT
        whether or not a framebuffer stores pixmap data in the server's virtual
        address space.  MI is now independent of MITSHM and MITSHM is no longer
        a pervasive extension.
      - Add a DIX helper to determine whether Xinerama is active and use it
        instead of #ifdef'ed code in all loadable modules.  Re-implement, as
        a screen wrapper, Xinerama's PaintWindow*() hacks.  Move down to DIX
        Xinerama's only MI hook.  Both MI and loadable module objects are now
        independent of Xinerama.
      - Add more XCSECURITY-related DIX helpers.  Loadable module objects that
        provide their own extensions (e.g. apm) are now independent of the core
        binary's support for XCSECURITY.
      - Extend DBE to allow for front and back buffer revalidations (to be used
        in future changes to restore the only existing example of DBE hardware
        acceleration after converting the sunffb driver to fb, XAA & Render).
        This is the change that chronologically started all this.
      - Separate Xv and XvMC extensions more cleanly.
      - Move Xserver/*/tiny directories under Xserver/hw/tinyx.
      - Fix !PrintOnlyServer builds.
      - Clean up Xserver/Imakefile.
      - Remove remaining traces of Xdec* servers.
      - Fix parallel make bug in Xserver/Imakefile caused by unintentional
        symbol re-use.
      - Accomodate XWin more cleanly by not "skipping" over Xserver/hw.
      - Remove all extension stub code (no longer needed).
      `make World` is required to correctly build these changes.  In fact, I
      recommend staring from a fresh checkout.  These changes are bundled as
      one commit due to module versioning considerations.  (Marc La France)

Revision 1.43 / (view) - annotate - [select for diffs] , Sun Aug 28 19:04:46 2005 UTC (7 years, 8 months ago) by tsi
Branch: MAIN
CVS Tags: xf-4_5_99_21, xf-4_5_99_20, xf-4_5_99_19, xf-4_5_99_18, xf-4_5_99_17, xf-4_5_99_16, xf-4_5_99_15, xf-4_5_99_14, xf-4_5_99_13, xf-4_5_99_12, xf-4_5_99_11
Changes since 1.42: +2 -2 lines
Diff to previous 1.42
 130. Add loader infrastructure to implement inter-module version checks and
      use it as part of a rework of VBE information blocks (Marc La France).

Revision 1.42 / (view) - annotate - [select for diffs] , Sat May 14 01:00:04 2005 UTC (8 years ago) by dawes
Branch: MAIN
CVS Tags: xf-4_5_99_9, xf-4_5_99_8, xf-4_5_99_7, xf-4_5_99_6, xf-4_5_99_5, xf-4_5_99_4, xf-4_5_99_10
Changes since 1.41: +3 -5 lines
Diff to previous 1.41
Put extension init definitions in one place.

Revision 1.41 / (view) - annotate - [select for diffs] , Fri Jan 21 02:03:12 2005 UTC (8 years, 4 months ago) by dawes
Branch: MAIN
CVS Tags: xf-4_5_99_3, xf-4_5_99_2, xf-4_5_99_1, xf-4_5_0, xf-4_5-branch, xf-4_4_99_903, xf-4_4_99_902, xf-4_4_99_901, xf-4_4_99_22
Changes since 1.40: +5 -5 lines
Diff to previous 1.40
 277. Make sure that all module ABI revs are bumped for Xllalloc and friends
      (David Dawes).

Revision 1.40 / (view) - annotate - [select for diffs] , Tue Dec 7 15:59:17 2004 UTC (8 years, 5 months ago) by tsi
Branch: MAIN
CVS Tags: xf-4_4_99_21, xf-4_4_99_20, xf-4_4_99_19
Changes since 1.39: +2 -2 lines
Diff to previous 1.39
 232. Rationalise driver interface for DGA's OpenFramebuffer();  fix
      siliconmotion driver's entry for it;  bump driver ABI version (not
      strictly necessary as this is only a source API change)
      (Marc La France).

Revision 1.39 / (view) - annotate - [select for diffs] , Wed Sep 15 14:01:26 2004 UTC (8 years, 8 months ago) by dawes
Branch: MAIN
CVS Tags: xf-4_4_99_18, xf-4_4_99_17, xf-4_4_99_16, xf-4_4_99_15, xf-4_4_99_14
Changes since 1.38: +2 -2 lines
Diff to previous 1.38
 184. Reinstate the original mkfontdir program, since mkfontscale does not
      handle creating encodings.dir files as well as it should (David Dawes).
 183. Export AllocateFontPrivateIndex (David Dawes, suggested by Rick De Laet).
 182. Fix segv in cfb (David Dawes, reported by Dave Williss, Bugzilla #1453).

Revision 1.38 / (view) - annotate - [select for diffs] , Fri Feb 13 23:58:38 2004 UTC (9 years, 3 months ago) by dawes
Branch: MAIN
CVS Tags: xf-4_4_99_9, xf-4_4_99_8, xf-4_4_99_7, xf-4_4_99_6, xf-4_4_99_5, xf-4_4_99_4, xf-4_4_99_3, xf-4_4_99_2, xf-4_4_99_13, xf-4_4_99_12, xf-4_4_99_11, xf-4_4_99_10, xf-4_4_99_1, xf-4_4_0, xf-4_4-branch, xf-4_3_99_903
Changes since 1.37: +43 -23 lines
Diff to previous 1.37
 802. Licence update.
(except client-side libraries)

Revision 1.37 / (view) - annotate - [select for diffs] , Sun Aug 24 16:36:54 2003 UTC (9 years, 8 months ago) by dawes
Branch: MAIN
CVS Tags: xf-4_3_99_902, xf-4_3_99_901, xf-4_3_99_16, xf-4_3_99_15, xf-4_3_99_14, xf-4_3_99_13, xf-4_3_99_12, xf-4_3_99_11
Changes since 1.36: +25 -2 lines
Diff to previous 1.36
Add/update copyright and license notices.

Revision 1.36 / (view) - annotate - [select for diffs] , Wed May 7 10:39:09 2003 UTC (10 years ago) by alanh
Branch: MAIN
CVS Tags: xf-4_3_99_9, xf-4_3_99_8, xf-4_3_99_7, xf-4_3_99_6, xf-4_3_99_5, xf-4_3_99_4, xf-4_3_99_10
Changes since 1.35: +2 -2 lines
Diff to previous 1.35
bump the video driver version.
The movement of miRegionEqual for the Xv update work requires this.

Revision 1.35 / (view) - annotate - [select for diffs] , Sun Dec 22 02:03:25 2002 UTC (10 years, 5 months ago) by dawes
Branch: MAIN
CVS Tags: xf-4_3_99_3, xf-4_3_99_2, xf-4_3_99_1, xf-4_3_0_2, xf-4_3_0_1, xf-4_3_0, xf-4_3-branch, xf-4_2_99_902, xf-4_2_99_901, xf-4_2_99_4, xf-4_2_99_3
Changes since 1.34: +4 -4 lines
Diff to previous 1.34
Make sure the minor version of all loader ABIs have been bumped since 4.2.0.

Revision 1.34 / (view) - annotate - [select for diffs] , Mon Dec 9 17:30:08 2002 UTC (10 years, 5 months ago) by dawes
Branch: MAIN
Changes since 1.33: +2 -2 lines
Diff to previous 1.33
 588. Add a new interface for registration of core font renderers that allows
      priorities to be assigned.  This allows multiple renderers for the
      same extension to be registered, with the one with the highest priority
      being the one that gets used (#5435, 5437, Juliusz Chroboczek).

Revision 1.33 / (view) - annotate - [select for diffs] , Tue Jul 30 17:36:18 2002 UTC (10 years, 9 months ago) by dawes
Branch: MAIN
CVS Tags: xf-4_2_99_2
Changes since 1.32: +7 -1 lines
Diff to previous 1.32
 214. Add functions to allow modules to query the core X server version
      and the version of its sub modules (David Dawes).
(we probably should have added these a long time ago)

Revision 1.32 / (view) - annotate - [select for diffs] , Sat Jan 26 23:53:17 2002 UTC (11 years, 3 months ago) by dawes
Branch: MAIN
CVS Tags: xf-4_2_99_1
Changes since 1.31: +2 -2 lines
Diff to previous 1.31
Bump the video driver ABI minor version (new functions added).

Revision 1.31 / (view) - annotate - [select for diffs] , Thu Aug 16 13:33:52 2001 UTC (11 years, 9 months ago) by dawes
Branch: MAIN
CVS Tags: xf-4_2_1_2, xf-4_2_1_1, xf-4_2_1, xf-4_2_0_1, xf-4_2_0-bindist-1, xf-4_2_0-bindist, xf-4_2_0, xf-4_2-branch, xf-4_1_99_7, xf-4_1_99_6, xf-4_1_99_5, xf-4_1_99_4, xf-4_1_99_3, xf-4_1_99_2, xf-4_1_99_1, Domain-branch
Changes since 1.30: +2 -6 lines
Diff to previous 1.30
 221. Add a workaround for FreeBSD to make programs (like mkfontdir) that
      are run as part of the build use the shared libraries from the build
      rather than those that may be installed on the system (David Dawes).
- Fix some things related to the new fontenc code, enable binary compatibility
  with the older interfaces by default, change the font ABI revision to 0.3
  and the Xfont shared library version to 1.4.
- Some build/warning fixes.
- Remove unused xf86Switch.c.

Revision 1.30 / (view) - annotate - [select for diffs] , Mon Aug 13 20:46:50 2001 UTC (11 years, 9 months ago) by dawes
Branch: MAIN
Changes since 1.29: +7 -3 lines
Diff to previous 1.29
 214. Patch for the Thai glyphs in Mark Leisher's ClearlyU font (#4846,
      Theppitak Karoonboonyanan).
 213. Add a font encoding file for tis620-2 (#4845, Theppitak Karoonboonyanan).
 212. Add a font encoding file for ISO8859-16 (#4844, Markus Kuhn).
 211. Make the input method framework in Xlib work better in an UTF-8
      locale (#4843, Yao Zhang and Bruno Haible).
 210. Default *sampleText*international to false in xfontsel's app-defaults
      file, since it breaks if the user has '*international: true' (#4842,
      Juliusz Chroboczek).
 209. A new version of the fontenc layer.  A major difference is that it
      reads from a "system" encodings directory
      <ProjectRoot>/lib/fonts/encodings/encodings.dir, which is searched
      after any encodings.dir file in the font's directory.  The font
      ABI version is bumped to 1.0 since the interface isn't
      binary-compatible by default (#4839, Juliusz Chroboczek).

Revision 1.29 / (view) - annotate - [select for diffs] , Wed Jun 13 22:10:40 2001 UTC (11 years, 11 months ago) by dawes
Branch: MAIN
Changes since 1.28: +3 -3 lines
Diff to previous 1.28
Add xf86LoaderRef* wrappers for LoaderRef*.

Revision 1.28 / (view) - annotate - [select for diffs] , Tue Mar 13 16:03:36 2001 UTC (12 years, 2 months ago) by dawes
Branch: MAIN
CVS Tags: xf-4_1_0_2, xf-4_1_0_1, xf-4_1_0-bindist, xf-4_1_0, xf-4_1-branch, xf-4_0_99_902, xf-4_0_99_901, xf-4_0_99_900, xf-4_0_99_3, xf-4_0_99_2
Changes since 1.27: +3 -3 lines
Diff to previous 1.27
 274. Bump the video and input driver ABI minor numbers.
 273. Add xf86SetRealOption() (Huver).

Revision 1.27 / (view) - annotate - [select for diffs] , Tue Nov 14 16:54:49 2000 UTC (12 years, 6 months ago) by dawes
Branch: MAIN
CVS Tags: xf-4_0_99_1, xf-4_0_3b, xf-4_0_3a, xf-4_0_3, xf-4_0_2c, xf-4_0_2b, xf-4_0_2a, xf-4_0_2-branch, xf-4_0_2-bindist, xf-4_0_2, xf-4_0_1h, xf-4_0_1g, xf-4_0_1f, xf-4_0_1Zc, xf-4_0_1Zb, xf-4_0_1Za, xf-4_0_1Z, pre-R651-import
Changes since 1.26: +2 -2 lines
Diff to previous 1.26
 928. Fix an SVR4 loader build problem introduced in 4.0.1d (#4234,
      Takaaki Nomura).
 927. Fix a bug in fontenc that would cause a memory leak whenever an
      encoding would be declared in encodings.dir but not in the encoding
      file itself (#4233, Juliusz Chroboczek).
 926. Make the freetype backend use the fontenc matrix encoding support,
      remove support for the defunct XAnti extension, and bump the version
      of the freetype backend to 1.1.8 (#4233, Juliusz Chroboczek).
 925. Add proper support for matrix encodings in fontenc (including the
      new FIRSTINDEX keyword in encoding files), and bump the version of
      the font module ABI to 0.2 (#4233, Juliusz Chroboczek).
 924. Fix a problem the vesa driver (#4232, Paulo Cesar Pereira de Andrade).
 923. Fix problems building the C&T driver with DEBUG defined (#4231,
      Taketoshi Sano).
 922. Remove lt_LT.ISO8859-1 entry from compose.dir (#4230, Nerijus Baliunas).
 921. s3virge driver updates, including:
       - Stabilize GX2 support, reenable silken mouse
       - Enable MX fixes
       - Add support for the render extension
       - Enable BLT_BUG for ViRGE and VX chipsets
      (#4229, Kevin Brosius).

Revision 1.26 / (view) - annotate - [select for diffs] , Wed Aug 23 21:10:11 2000 UTC (12 years, 9 months ago) by tsi
Branch: MAIN
CVS Tags: xf-4_0_1e, xf-4_0_1d, xf-4_0_1c
Changes since 1.25: +2 -2 lines
Diff to previous 1.25
 527. Fix minor symbol resoltion problem in dlopen() loader (Marc La France).
 526. Alpha changes that fell out of RadHat's IA-64 changes (Marc La France).
 525. A merge of most of RedHat's IA-64 changes (Keith Fish, Stephane Eranian,
      Bill Nottingham, Marc La France):
      - Don't force static server build.
      - Fix NULL #define'ition for loader server.
      - Various #if-testing changes.

Revision 1.25 / (view) - annotate - [select for diffs] , Tue Aug 15 15:05:36 2000 UTC (12 years, 9 months ago) by dawes
Branch: MAIN
Changes since 1.24: +2 -2 lines
Diff to previous 1.24
 519. First cut at pushing the AGP GART interface into the os-support
      layer (David Dawes).
 518. Fix SHM support in Xv that was broken in 4.0.1b (David Dawes)

Revision 1.24 / (view) - annotate - [select for diffs] , Wed Apr 5 17:13:45 2000 UTC (13 years, 1 month ago) by dawes
Branch: MAIN
CVS Tags: xf-4_0g, xf-4_0f, xf-4_0e, xf-4_0d, xf-4_0c, xf-4_0b, xf-4_0a, xf-4_0_1b, xf-4_0_1a, xf-4_0_1-bindist, xf-4_0_1, xf-4_0Z
Changes since 1.23: +5 -1 lines
Diff to previous 1.23
  94. Major OS/2 resync (#3859, Holger Veit).

Revision 1.23 / (view) - annotate - [select for diffs] , Sat Apr 1 01:33:53 2000 UTC (13 years, 1 month ago) by dawes
Branch: MAIN
Changes since 1.22: +2 -2 lines
Diff to previous 1.22
bump the video driver ABI minor version instead of the major version.

Revision 1.22 / (view) - annotate - [select for diffs] , Fri Mar 31 22:55:33 2000 UTC (13 years, 1 month ago) by dawes
Branch: MAIN
Changes since 1.21: +2 -2 lines
Diff to previous 1.21
  73. Change xf86LoadModules() so that it doesn't quit at the first module
      that fails to load (David Dawes).
  72. SIGIO doesn't work on Linux pipes, so diasble it for input devices
      which are pipes (#3835, Keith Packard).
  71. Bring the SDK support up to date (#3834, David Bateman).
  70. Fix an Xlib problem that causes an application crash when inputting
      cyrillic symbols with the koi8-r locale (and other locales with
      long esc-sequences) (#3833, Ivan Pascal, #A.15, Serguei Poliakov).
  69. Fixes for S3 Trio3D/2X:
       - flickering for some cards (bad FIFO setting from bios).
       - workaround for 8MB ram (ramdac can access only 4MB).
       - adjust clock limits which have been too low.
      (#3832, Harald Koenig).
  68. Fix v4l problem with a function being called after the module is
      unloaded (#3831, gbritton@light-brigade.mit.edu).
  67. Fixes for the PPC icache flushing code (#3830, Kostas Gewrgiou).
  66. Fix for /tmp race installing man pages on OpenBSD (#3829,
      Matthieu Herrb).
  65. Fix problems building the Xsun and XsunMono servers on
      NetBSD-current/sparc (#3828, Matthieu Herrb).
  64. Add a comment to site.def about how to move the /etc/X11 contents to
      a directory under ProjectRoot (#3827, R Horn).
  63. Fix an Xaw bug that shows up when usingn c-mode with xedit on Linux
      (#3824, Paulo Cesar Pereira de Andrade).
  62. Enable devfs support for the v4l driver (based on #3823,
      Christopher Sekiya).
  61. Update for README.FreeBSD (#3822, Kazutaka Yokota).
  60. Bump the video driver ABI major version because of interface changes
      (now 1.0).
  59. Disable SilkenMouse when IO/MEM resource sharing means that it cannot
      be reliably used (#382o, Keith Packard and Egbert Eich).
  58. Fix DGA 1.0 compatibility for mouse events and SetViewport behaviour
      (#3820, Keith Packard).
  57. Fix the Linux APM code so that the X server doesn't hang the machine
      on suspend (#3820, Keith Packard and Egbert Eich).
  56. Fix problems that break Overlay support in the glint driver (#3818,
      Michel Dänzer).
  55. Possible fix for AvailableOptions function and submodule loading
      for the cirrus driver (David Dawes).

Revision 1.21 / (view) - annotate - [select for diffs] , Wed Mar 1 23:54:33 2000 UTC (13 years, 2 months ago) by dawes
Branch: MAIN
CVS Tags: xf-4_0-bindist, xf-4_0, xf-3_9_18Za, xf-3_9_18Z
Changes since 1.20: +4 -4 lines
Diff to previous 1.20
doc update
set all of the ABI versions to 0.1 for the 4.0 release.

Revision 1.20 / (view) - annotate - [select for diffs] , Tue Feb 8 13:13:05 2000 UTC (13 years, 3 months ago) by eich
Branch: MAIN
CVS Tags: xf-3_9_18b, xf-3_9_18a, xf-3_9_18, xf-3_9_17f, xf-3_9_17e, xf-3_9_17d, xf-3_9_17Z
Changes since 1.19: +1 -0 lines
Diff to previous 1.19
See detailed list in CHANGELOG to be submitted later

Revision 1.19 / (view) - annotate - [select for diffs] , Sat Jan 29 17:17:03 2000 UTC (13 years, 3 months ago) by dawes
Branch: MAIN
CVS Tags: xf-3_9_17c
Changes since 1.18: +2 -2 lines
Diff to previous 1.18
3601. Add a CheckExtension() function that can be called to check if an
      extension has been initialised (David Dawes).
3600. Allow extensions to specify which other extensions must be
      initialised first, and sort the initialisation order according to
      this information (David Dawes).

Revision 1.18 / (view) - annotate - [select for diffs] , Tue Jan 25 18:37:47 2000 UTC (13 years, 3 months ago) by dawes
Branch: MAIN
Changes since 1.17: +5 -4 lines
Diff to previous 1.17
3592. Modify the extension loading code so that he core server no longer
      needs to be aware of all extensions that can be loaded (David Dawes).
3591. Remove XExtensionVersion from XPrint headers (Dirk Hohndel, from 3.3.5).

Revision 1.17 / (view) - annotate - [select for diffs] , Tue Jul 6 10:38:14 1999 UTC (13 years, 10 months ago) by dawes
Branch: MAIN
CVS Tags: xf-3_9_17b, xf-3_9_17a, xf-3_9_17, xf-3_9_16f, xf-3_9_16e, xf-3_9_16d, xf-3_9_16c, xf-3_9_16b, xf-3_9_16a, xf-3_9_16Za, xf-3_9_16Z, xf-3_9_16, xf-3_9_15d, xf-3_9_15c, xf-3_9_15b, xf-3_9_15a, xf-3_9_15, xf-3_9Py, xf-3_9Px, xf-3_9Pw
Changes since 1.16: +2 -1 lines
Diff to previous 1.16
2835. Fix for GetBlock() (#2974, Egbert Eich).
2834. Remove the test for SHAREDIOCLASS when creating a pciAccessInfoRec for
      a device (#2974, Egbert Eich).
2833. Modified BIOS ROM handling, doing validation only on demand (#2974,
      Egbert Eich).
2832. Add a ChangeGamma function to the ScrnInfoRec, which allows drivers to
      optionally provide a function to do this instead of the default one
      provided by the colormap layer (#2972, Mark Vojkovich).
2831. Sis driver memclock fixes (#2971, Bart Oldeman, Juanjo Santamarta).
2830. Add snprintf() and vsnprintf() to libc emulation (#2970, Marc La France).
2829. Increase array size in PciInfo data (#2970, Marc La France).
2828. Add a LoaderRefSymbols() function (#2970, Marc La France).
2827. When matching fixed clocks, prefer non-CLKDIV2 modes over CLKDIV2 modes
      (#2970, Marc La France).
2826. Reinstate xf86GetPciConfigInfo() and some warning fixes (#2970,
      Marc La France).
2825. Build libXext and libX11 client-side libraries when also building
      GLX, despite BuildServersOnly (#2970, Marc La France).
2824. Update ATI doc (#2970, Marc La France).
2823. ATI driver from 3.3.3.1 (rac interface is preliminary, no LCD panel
      or Rage 128 support yet) (#2970, Marc La France).
2822. Fix Ukrainian_GHE_with_upturn double definition error (#2969,
      Peter Novodvorsky).

Revision 1.16 / (view) - annotate - [select for diffs] , Sun Jun 27 08:20:18 1999 UTC (13 years, 10 months ago) by dawes
Branch: MAIN
CVS Tags: xf-3_9Pv, xf-3_9Pu
Changes since 1.15: +3 -2 lines
Diff to previous 1.15
2782. Documentation for the new RAC code (Egbert Eich).
2781. Fix some problems with the glide driver that can result in server crashes
      if there is a problem when it is starting up (David Dawes).
2780. Install the X server signal handlers before xf86OpenConsole is first
      called.  This makes sure that the VT is returned to text mode if the
      server crashes in the early stages of InitOutput() (David Dawes).
2779. Fix xf86vsprintf() and xf86vfprintf().
2778. Support for the different PLL reference clock used for HP's on-board
      G200s.

Revision 1.15 / (view) - annotate - [select for diffs] , Sun Apr 11 12:10:48 1999 UTC (14 years, 1 month ago) by dawes
Branch: MAIN
CVS Tags: xf-3_9Pt, xf-3_9Ps, xf-3_9Pr, xf-3_9Pq, xf-3_9Pp, xf-3_9Po, xf-3_9Pn, xf-3_9Pm, xf-3_9Pl, xf-3_9Pk, xf-3_9Pj, xf-3_9Pi
Changes since 1.14: +4 -1 lines
Diff to previous 1.14
#2647-2665,2668

Revision 1.14 / (view) - annotate - [select for diffs] , Sat Mar 6 13:12:32 1999 UTC (14 years, 2 months ago) by dawes
Branch: MAIN
CVS Tags: xf-3_9Phb, xf-3_9Pha, xf-3_9Ph-branch, xf-3_9Ph, xf-3_9Pg, xf-3_9Pf, xf-3_9Pe, xf-3_9Pd
Changes since 1.13: +4 -2 lines
Diff to previous 1.13
#2507,2509-2513,2515-2519

Revision 1.13 / (view) - annotate - [select for diffs] , Sun Jan 31 12:21:49 1999 UTC (14 years, 3 months ago) by dawes
Branch: MAIN
CVS Tags: xf-3_9Pc, xf-3_9Pb, xf-3_9Pa, xf-3_9P, xf-3_9Nz
Changes since 1.12: +4 -1 lines
Diff to previous 1.12
#2415--2433

Revision 1.12 / (view) - annotate - [select for diffs] , Tue Jan 26 05:53:58 1999 UTC (14 years, 3 months ago) by dawes
Branch: MAIN
CVS Tags: xf-3_9Ny
Changes since 1.11: +54 -38 lines
Diff to previous 1.11
updates to the loader/module interface

Revision 1.11 / (view) - annotate - [select for diffs] , Sun Jan 24 13:32:35 1999 UTC (14 years, 3 months ago) by dawes
Branch: MAIN
CVS Tags: xf-3_9Nx
Changes since 1.10: +6 -5 lines
Diff to previous 1.10
some loader updates, sis, tga fixes

Revision 1.10 / (view) - annotate - [select for diffs] , Sun Jan 24 03:13:53 1999 UTC (14 years, 4 months ago) by dawes
Branch: MAIN
Changes since 1.9: +2 -5 lines
Diff to previous 1.9
sis driver updates, and add a -modulepath option

Revision 1.9 / (view) - annotate - [select for diffs] , Sat Jan 23 09:55:46 1999 UTC (14 years, 4 months ago) by dawes
Branch: MAIN
Changes since 1.8: +3 -2 lines
Diff to previous 1.8
#2394-2406, and some loader updates

Revision 1.8 / (view) - annotate - [select for diffs] , Sun Jan 17 10:53:57 1999 UTC (14 years, 4 months ago) by dawes
Branch: MAIN
CVS Tags: xf-3_9Nw
Changes since 1.7: +40 -9 lines
Diff to previous 1.7
preparing for 3.9Nw

Revision 1.7 / (view) - annotate - [select for diffs] , Fri Jan 15 02:12:38 1999 UTC (14 years, 4 months ago) by dawes
Branch: MAIN
CVS Tags: xf-3_9Nva, xf-3_9Nv-branch, xf-3_9Nv
Changes since 1.6: +3 -2 lines
Diff to previous 1.6
Add an UnloadSubModule function to the loader

Revision 1.6 / (view) - annotate - [select for diffs] , Sun Jan 3 03:58:29 1999 UTC (14 years, 4 months ago) by dawes
Branch: MAIN
CVS Tags: xf-3_9Nu, xf-3_9Nt, xf-3_9Ns
Changes since 1.5: +7 -3 lines
Diff to previous 1.5
Main branch patches from 2338-2358, except X-TT.
Some loader updates

Revision 1.5 / (view) - annotate - [select for diffs] , Sun Dec 13 10:33:36 1998 UTC (14 years, 5 months ago) by dawes
Branch: MAIN
CVS Tags: xf-3_9Nr, xf-3_9Nq
Changes since 1.4: +4 -2 lines
Diff to previous 1.4
change module version handling.

Revision 1.4 / (view) - annotate - [select for diffs] , Sun Sep 20 13:41:01 1998 UTC (14 years, 8 months ago) by dawes
Branch: MAIN
CVS Tags: xf-3_9Np, xf-3_9No, xf-3_9Nn, xf-3_9Nm, xf-3_9Nl, xf-3_9Nk, xf-3_9Nj, xf-3_9Ni, xf-3_9Nh, xf-3_9Ng, xf-3_9Nf
Changes since 1.3: +4 -1 lines
Diff to previous 1.3
update sample config file
allow drivers to tell the loader about symbols it references and which
are essential.

Revision 1.3 / (view) - annotate - [select for diffs] , Thu Aug 13 13:45:48 1998 UTC (14 years, 9 months ago) by dawes
Branch: MAIN
CVS Tags: xf-3_9Ne, xf-3_9Nd, xf-3_9Nc, xf-3_9Nb, xf-3_9Na
Changes since 1.2: +2 -1 lines
Diff to previous 1.2
Patches for 3.9Na

Revision 1.2 / (view) - annotate - [select for diffs] , Sat Jul 25 15:55:11 1998 UTC (14 years, 10 months ago) by dawes
Branch: MAIN
CVS Tags: xf-3_9N
Changes since 1.1: +124 -0 lines
Diff to previous 1.1
First pass merge of xc/programs/Xserver/hw/xfree86

Revision 1.1 , Fri Jul 18 05:25:34 1997 UTC (15 years, 10 months ago) by dawes
Branch: MAIN
Branch point for: xf-3_9j-branch
FILE REMOVED
file xf86Module.h was initially added on branch xf-3_9j-branch.

This form allows you to request diffs between any two revisions of a file. You may select a symbolic revision name using the selection box or you may type in a numeric name using the type-in text box.

Diffs between and
Type of Diff should be a

View only Branch:
Sort log by:

Powered by
ViewCVS 0.9.2