patchlevel.h
上传用户:tianjinjs
上传日期:2007-01-05
资源大小:309k
文件大小:1k
源码类别:

Modem编程

开发平台:

Unix_Linux

  1. /*
  2.  * patchlevel.h Defines the version strings
  3.  * in one central place.
  4.  *
  5.  * Version: 1.83 Nov 1999 MvS, JL, some others..
  6.  *
  7.  */
  8. #define SCCS_ID "@(#)Minicom V1.83.0"
  9. #define ST_VERSION "1.83.0"
  10. #define CR_VERSION "Welcome to minicom 1.83.0"
  11. /*
  12.  * fmg 8/22/97
  13.  * show on startup what compile options were used...
  14.  */
  15. #if _HISTORY
  16. #define CR_OPTION1 "History Buffer, "
  17. #else
  18. #define CR_OPTION1 ""
  19. #endif /*HISTORY*/
  20. #if _HAVE_MACROS
  21. #define CR_OPTION2 "F-key Macros, "
  22. #else
  23. #define CR_OPTION2 ""
  24. #endif /*HAVE_MACROS*/
  25. #if _RH_FIX
  26. #define CR_OPTION3 "RedHat fix, "
  27. #else
  28. #define CR_OPTION3 ""
  29. #endif /*RH_FIX*/
  30. #if _SEARCH_HISTORY
  31. #define CR_OPTION4 "Search History Buffer, "
  32. #else
  33. #define CR_OPTION4 ""
  34. #endif /*SEARCH_HISTORY*/
  35. #if _I18N_
  36. #define CR_OPTION5 "I18n "
  37. #else
  38. #define CR_OPTION5 ""
  39. #endif