home *** CD-ROM | disk | FTP | other *** search
/ Il CD di internet / CD.iso / SOURCE / D / SVGALIB / SVGALIB1.TAR / svgalib / src / config.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-02-11  |  1.9 KB  |  61 lines

  1.  
  2. /* Don't edit this if you just want to use the shared library. */
  3.  
  4. /* Uncomment one of the following lines to disable a driver. This saves */
  5. /* binary space. Unless you want your binaries to run on other machines */
  6. /* and chipsets, commenting out what you don't need is a good idea.     */
  7. /* Standard VGA support is always available.                */
  8.  
  9. #define INCLUDE_ET4000_DRIVER
  10. #define INCLUDE_CIRRUS_DRIVER
  11. #define INCLUDE_TVGA_DRIVER
  12. #define INCLUDE_OAK_DRIVER
  13. #define INCLUDE_EGA_DRIVER
  14. #define INCLUDE_MACH32_DRIVER
  15. #define INCLUDE_S3_DRIVER
  16. #define INCLUDE_GVGA6400_DRIVER
  17. #define INCLUDE_ARK_DRIVER
  18. #define INCLUDE_ATI_DRIVER
  19.  
  20. /* Drivers that are autodetected. */
  21.  
  22. #define INCLUDE_ET4000_DRIVER_TEST
  23. #define INCLUDE_CIRRUS_DRIVER_TEST
  24. #define INCLUDE_TVGA_DRIVER_TEST
  25. #define INCLUDE_OAK_DRIVER_TEST
  26. #define INCLUDE_EGA_DRIVER_TEST
  27. #define INCLUDE_MACH32_DRIVER_TEST
  28. #define INCLUDE_GVGA6400_DRIVER_TEST
  29. /* #define INCLUDE_S3_DRIVER_TEST */
  30. /* #define INCLUDE_ARK_DRIVER_TEST */
  31. #define INCLUDE_ATI_DRIVER_TEST
  32.  
  33.  
  34. /* Location of the svgalib configuration file. */
  35.  
  36. #define SVGALIB_CONFIG_FILE "/usr/local/lib/libvga.config"
  37.  
  38.  
  39. /* Defining DYNAMIC enables runtime parsing of the file defined by      */
  40. /* ET4000_REGS (usually /usr/local/lib/libvga.et4000) for the et4000    */
  41. /* driver. See et4000/README for details. Commenting this out again    */
  42. /* saves binary space.                            */
  43.  
  44. /* If you just want to use the et4000.regs in the source directory,     */
  45. /* comment out the definition of DYNAMIC.                */
  46.  
  47. #define DYNAMIC
  48. #define ET4000_REGS "/usr/local/lib/libvga.et4000"
  49.  
  50. /* The EGA driver may load additional modes (SuperEGA cards) like the    */
  51. /* et4000 driver does. Just define the configuration file below.    */
  52. /* [This should be taken with a grain of salt, EGA is untested.]    */
  53.  
  54. #define EGA_REGS "/usr/local/lib/libvga.ega"
  55.  
  56.  
  57. /* Defining USE_CLOCKS will cause the ET4000 driver to measure clock    */
  58. /* frequencies (they are not actually used yet).            */
  59.  
  60. /* #define USE_CLOCKS */
  61.