home *** CD-ROM | disk | FTP | other *** search
/ DP Tool Club 31 / CDASC_31_1996_juillet_aout.iso / internet / rnr214.zip / RNR-DEF.PAS < prev    next >
Pascal/Delphi Source File  |  1995-09-18  |  1KB  |  81 lines

  1. {
  2.  
  3. rnr-def.pas - defines for rnr
  4.  
  5. }
  6.  
  7. {rnews.exe in 1.64 and 1.65 seems to ignore leading-space continuation in}
  8. {headers, despite rfc 1036, so need to define this}
  9.  
  10. {$undef rnewscontbroken}
  11. {$define rnewscontbroken}
  12.  
  13.  
  14. {whether rnrio should timeout or not}
  15.  
  16. {$undef timeout}
  17. {$define timeout}
  18.  
  19.  
  20. {use tiny for a default-to-fossil-port-0 version, with smaller limits}
  21. {this is usually called rnr0.exe.  use with any __small__}
  22. {fossil-compatible editor, such as trived.exe from same author}
  23.  
  24. {$define nontiny} {do not delete this line - change to tiny to make rnr0}
  25.  
  26.  
  27. { testing defines }
  28.  
  29. {$define debug}
  30. {$undef debug}
  31.  
  32. {$define testsort}
  33. {$undef testsort}
  34.  
  35. {$define pauseintestsort}
  36. {$undef pauseintestsort}
  37.  
  38. {$define testhash}
  39. {$undef testhash}
  40.  
  41.  
  42. { old sorting }
  43.  
  44. {$define bubble}
  45. {$undef bubble}
  46.  
  47.  
  48. { compatibility with old versions }
  49.  
  50. {$undef ignoreoldoptions}
  51. {$define ignoreoldoptions}
  52.  
  53.  
  54. { support for multiple charactersets (MIME) }
  55.  
  56. {$undef charset}
  57. {$define charset}
  58.  
  59.  
  60. { rodent use }
  61.  
  62. {$undef mouse}
  63. {$define mouse}
  64.  
  65.  
  66. { does not require WAFFLE environment variable to be set if using -i waffle }
  67.  
  68. {$undef waffleenvcanbemissing}
  69. {$define waffleenvcanbemissing}
  70.  
  71.  
  72. { allow trusted users to put restricted opts in the user .rc file }
  73. {$undef trustedusersmayputrestrictedoptsinuserrcfile}
  74. {$define trustedusersmayputrestrictedoptsinuserrcfile}
  75.  
  76.  
  77.  
  78. {$ifdef tiny}
  79. {$undef mouse}
  80. {$endif}
  81.