config.h 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. /* =============================================================================
  2. * PROGRAM: ularn
  3. * FILENAME: config.h
  4. *
  5. * DESCRIPTION:
  6. * This file contains any system specific configuration information for ularn.
  7. * As this port is Windows only, most of this stuff is redundant, and has
  8. * been deleted
  9. *
  10. * =============================================================================
  11. * EXPORTED VARIABLES
  12. *
  13. * None.
  14. *
  15. * =============================================================================
  16. * EXPORTED FUNCTIONS
  17. *
  18. * None
  19. *
  20. * =============================================================================
  21. */
  22. #ifndef __CONFIG_H
  23. #define __CONFIG_H
  24. /*
  25. * Uncomment exactly one of the following lines to
  26. * select the version to build.
  27. *
  28. * UNIX_TTY - ASCII version for unix/linux etc
  29. * UNIX_X11 - X11 graphical version for unix/linux etc
  30. * WINDOWS - Graphical version for Windows 32 (Win9X, 2K, XP etc).
  31. * W32_TTY - ASCII version for Windows 32 (Win9X, 2K, XP etc).
  32. * AMIGA_WIN - Amiga (AGA only) graphical version
  33. */
  34. //#define UNIX_TTY
  35. //#define UNIX_X11
  36. //#define WINDOWS
  37. //#define W32_TTY
  38. //#define AMIGA_WIN
  39. /*
  40. * Now set the O/S flag based on the version selected.
  41. */
  42. #ifdef UNIX_X11
  43. #define UNIX
  44. #endif
  45. #ifdef UNIX_TTY
  46. #define UNIX
  47. #endif
  48. /*
  49. * LIBDIR:
  50. * This symbol indicates where the data files will reside.
  51. */
  52. #define LIBDIR "lib"
  53. #endif