home *** CD-ROM | disk | FTP | other *** search
/ Meeting Pearls 3 / Meeting_Pearls_III.iso / Pearls / texmf / source / dvips / paths.h < prev    next >
C/C++ Source or Header  |  1994-09-27  |  2KB  |  89 lines

  1. /*
  2.  *   OUTPATH is where to send the output.  If you want a .ps file to
  3.  *   be created by default, set this to "".  If you want to automatically
  4.  *   invoke a pipe (as in lpr), make the first character an exclamation
  5.  *   point or a vertical bar, and the remainder the command line to
  6.  *   execute.
  7.  */
  8. #define OUTPATH ""
  9. /*   (Actually OUTPATH will be overridden by an `o' line in config.ps.) */
  10. /*
  11.  *   Names of config and prologue files:
  12.  */
  13. #if defined MSDOS || defined OS2 || defined(ATARIST)
  14. #define DVIPSRC "dvips.ini"
  15. #else
  16. #ifdef VMCMS  /* IBM: VM/CMS */
  17. #define DVIPSRC "dvips.profile"
  18. #else
  19. #ifdef MVSXA  /* IBM: MVS/XA */
  20. #define DVIPSRC "dvips.profile"
  21. #else
  22. #define DVIPSRC ".dvipsrc"
  23. #endif  /* IBM: VM/CMS */
  24. #endif
  25. #endif
  26.  
  27. #define HEADERFILE "tex.pro"
  28. #define CHEADERFILE "texc.pro"
  29. #define PSFONTHEADER "texps.pro"
  30. #define IFONTHEADER "finclude.pro"
  31. #define SPECIALHEADER "special.pro"
  32. #define COLORHEADER "color.pro"  /* IBM: color */
  33. #define CROPHEADER "crop.pro"
  34. #define PSMAPFILE "psfonts.map"
  35. #ifndef CONFIGFILE
  36. #define CONFIGFILE "config.ps"
  37. #endif
  38.  
  39. /* arguments to fopen */
  40. #define READ            "r"
  41.  
  42. /* directories are separated in the path by PATHSEP */
  43. /* DIRSEP is the char that separates directories from files */
  44. #ifdef AMIGA
  45. #define READBIN        "r" /* AMIGA doesn't care */
  46. #define PATHSEP         ','
  47. #define DIRSEP        '/'
  48. #define VOLSEP        ':'
  49. #else
  50. #ifdef __THINK__
  51. #define READBIN        "rb"    /* Macintosh OS will use binary mode */
  52. #define PATHSEP         ',' /* use same syntax as VMS */
  53. #define DIRSEP        ':'
  54. #else
  55. #if defined MSDOS || defined OS2 || defined(ATARIST)
  56. #define READBIN        "rb"    /* MSDOS and OS/2 must use binary mode */
  57. #define PATHSEP         ';'
  58. #define DIRSEP        '\\'
  59. #else
  60. #ifdef VMS
  61. #define READBIN        "rb"    /* VMS must use binary mode */
  62. #define PATHSEP         ','
  63. #define DIRSEP        ':'
  64. #else
  65. #ifdef VMCMS /* IBM: VM/CMS */
  66. #define READBIN         "rb" /* VMCMS must use binary mode */
  67. #define PATHSEP         ' '
  68. #define DIRSEP          ' '
  69. #else
  70. #ifdef MVSXA /* IBM: MVS/XA */
  71. #define READBIN         "rb" /* MVSXA must use binary mode */
  72. #define PATHSEP         ':'
  73. #define DIRSEP          '.'
  74. #else
  75. #define READBIN        "r"    /* UNIX doesn't care */
  76. #define PATHSEP         ':'
  77. #define DIRSEP          '/'
  78. #endif  /* IBM: VM/CMS */
  79. #endif
  80. #endif
  81. #endif
  82. #endif
  83. #endif
  84.  
  85. extern void error() ;
  86.  
  87. /* paths are all in the Makefile; by not supplying defaults, we force
  88.    the installer to set them up. */
  89.