s_vxworks
上传用户:tsgydb
上传日期:2007-04-14
资源大小:10674k
文件大小:1k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. #!/bin/sh -
  2. # $Id: s_vxworks,v 1.3 2000/07/13 18:38:46 bostic Exp $
  3. #
  4. # Build the VxWorks files.
  5. msgc="/* DO NOT EDIT: automatically built by dist/s_vxworks. */"
  6. . RELEASE
  7. t=/tmp/__db_$$
  8. rm -f $t
  9. trap 'rm -f $t ; exit 1' 1 2 3 13 15
  10. f=../build_vxworks/db.h
  11. echo "Building $f"
  12. rm -f $f
  13. cat <<ENDOFSEDTEXT > $t
  14. s/@u_int8_decl@/typedef unsigned char u_int8_t;/
  15. s/@u_int16_decl@/typedef unsigned short u_int16_t;/
  16. s/@u_int32_decl@/typedef unsigned int u_int32_t;/
  17. /@int16_decl@/d
  18. /@int32_decl@/d
  19. /@u_char_decl@/d
  20. /@u_short_decl@/d
  21. /@u_int_decl@/d
  22. /@u_long_decl@/d
  23. /@ssize_t_decl@/d
  24. s/@DB_VERSION_MAJOR@/$DB_VERSION_MAJOR/
  25. s/@DB_VERSION_MINOR@/$DB_VERSION_MINOR/
  26. s/@DB_VERSION_PATCH@/$DB_VERSION_PATCH/
  27. s/@DB_VERSION_STRING@/"$DB_VERSION_STRING"/
  28. ENDOFSEDTEXT
  29. (echo "$msgc" && sed -f $t ../include/db.src) > $f
  30. chmod 444 $f
  31. f=../build_vxworks/db_int.h
  32. echo "Building $f"
  33. rm -f $f
  34. cat <<ENDOFSEDTEXT > $t
  35. s/(PATH_SEPARATOR[^"]*")/"/1/\\\\\"/
  36. s/@db_align_t_decl@/typedef unsigned long db_align_t;/
  37. s/@db_alignp_t_decl@/typedef unsigned long db_alignp_t;/
  38. ENDOFSEDTEXT
  39. (echo "$msgc" && sed -f $t ../include/db_int.src) > $f
  40. chmod 444 $f
  41. rm -f $t