home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / unixtex-6.1b-src.tgz / tar.out / contrib / unixtex / xdvik / config.h < prev    next >
C/C++ Source or Header  |  1996-09-28  |  930b  |  46 lines

  1. /* config.h: master configuration file, included first by all compilable
  2.    source files (not headers).  */
  3.  
  4. #ifndef CONFIG_H
  5. #define CONFIG_H
  6.  
  7. /* The stuff from the path searching library.  */
  8. #include <kpathsea/config.h>
  9.  
  10. #include <setjmp.h>
  11.  
  12. #ifndef HAVE_VPRINTF
  13. #ifdef HAVE_DOPRNT
  14. #define    vfprintf(stream, message, args)    _doprnt(message, args, stream)
  15. /* If we have neither, should fall back to fprintf with fixed args.  */
  16. #endif
  17. #endif
  18.  
  19. /* Some xdvi options we want by default.  */
  20. #define USE_PK
  21. #define USE_GF
  22. #ifndef NOSELFILE
  23. #define SELFILE
  24. #endif
  25. #ifndef NOBUTTONS
  26. #define BUTTONS
  27. #endif
  28. #ifndef NOGREY
  29. #define GREY
  30. #endif
  31. #ifndef NOTEXXET
  32. #define TEXXET
  33. #endif
  34. #ifdef NOMAKEPK
  35. #define MAKEPK_BY_DEFAULT_STRING "false"
  36. #define MAKEPK_BY_DEFAULT_BOOL False
  37. #else
  38. #define MAKEPK_BY_DEFAULT_STRING "true"
  39. #define MAKEPK_BY_DEFAULT_BOOL True
  40. #endif
  41.  
  42. /* xdvi's definitions.  */
  43. #include "xdvi.h"
  44.  
  45. #endif /* not CONFIG_H */
  46.