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

MySQL数据库

开发平台:

Visual C++

  1. #!/bin/sh -
  2. # $Id: s_tcl,v 1.14 2000/11/09 19:24:07 sue Exp $
  3. #
  4. # Build the Tcl test files.
  5. msgshb="# DO NOT EDIT BELOW THIS LINE: automatically built by dist/s_tcl."
  6. . RELEASE
  7. f=../test/include.tcl
  8. echo "Building $f"
  9. rm -f $f
  10. (echo "set tclsh_path @TCL_TCLSH@" && 
  11.  echo "set tcllib .libs/libdb_tcl-@DB_VERSION_MAJOR@.@DB_VERSION_MINOR@.@SOSUFFIX@" && 
  12.  echo "set rpc_server localhost"   && 
  13.  echo "set rpc_path ."   && 
  14.  echo "set test_path @srcdir@/../test" && 
  15.  echo "" && 
  16.  echo "set KILL "@db_cv_path_kill@"" && 
  17.  echo "" && 
  18.  echo "$msgshb" && 
  19.  echo "" && 
  20.  echo "global dict" && 
  21.  echo "global testdir" && 
  22.  echo "global util_path" && 
  23.  echo "set testdir ./TESTDIR" && 
  24.  echo "set rpc_testdir $rpc_path/TESTDIR" && 
  25.  echo "" && 
  26.  echo "global is_hp_test" && 
  27.  echo "global is_qnx_test" && 
  28.  echo "global is_windows_test") > $f
  29. chmod 444 $f
  30. f=../build_win32/include.tcl
  31. echo "Building $f"
  32. rm -f $f
  33. (echo "set tclsh_path SET_YOUR_TCLSH_PATH" && 
  34.  echo "set test_path ../test" && 
  35.  echo "set tcllib ./Debug/libdb_tcl${DB_VERSION_MAJOR}${DB_VERSION_MINOR}d.dll" && 
  36.  echo "" && 
  37.  echo "set KILL ./dbkill.exe" && 
  38.  echo "" && 
  39.  echo "$msgshb" && 
  40.  echo "" && 
  41.  echo "global dict" && 
  42.  echo "global testdir" && 
  43.  echo "global util_path" && 
  44.  echo "set testdir ./TESTDIR" && 
  45.  echo "" && 
  46.  echo "global is_hp_test" && 
  47.  echo "global is_qnx_test" && 
  48.  echo "global is_windows_test") > $f
  49. chmod 444 $f