home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1 / Nebula One.iso / Mail / tnextmail / Source / config.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-08-06  |  1.0 KB  |  50 lines

  1. /* $Id: config.h,v 1.2 91/05/25 15:08:11 cap Exp $
  2.  * Compile time configuration
  3.  */
  4.  
  5. /*
  6.  * Define font and point size. The point size is multipled by two to get
  7.  * the RTF \fs<size> command. I don't understand why this is.
  8.  */
  9. #define FONTNAME "Helvetica"
  10. #define FONTSIZE 14
  11.  
  12. /* 
  13.  * Define TAR to be a tar program that supports the Berkeley tar -C option. 
  14.  * GNU tar supports this.
  15.  */
  16. #ifdef USG
  17. #define TAR "/usr/local/bin/gtar" /* GNU tar */
  18. #else
  19. #define TAR "/bin/tar"
  20. #endif
  21.  
  22. /*
  23.  * Define MAILER to be a program that supports a command line syntax of
  24.  *     MAILER to_addr1 to_addr2 ...
  25.  * The first lines of the message that begin with "Word: " should be
  26.  * made part of the message header. Input to MAILER is supplied on
  27.  * stdin.
  28.  */
  29. #ifdef USG
  30. #define MAILER "/bin/mail"
  31. #else
  32. #ifdef CMUCS
  33. #define MAILER "/usr/misc/.mmdf/lib/sendmail"
  34. #else
  35. #define MAILER "/usr/lib/sendmail"
  36. #endif
  37. #endif
  38.  
  39. #ifndef MAXPATHLEN
  40. #define MAXPATHLEN 1024
  41. #endif
  42.  
  43. #ifdef USG
  44. #define rindex strrchr
  45. #endif
  46.  
  47. #if defined(HPUX) || defined(USG)
  48. #define HAVE_GETCWD
  49. #endif
  50.