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

MySQL数据库

开发平台:

Visual C++

  1. #!/bin/sh -
  2. # $Id: s_include,v 1.7 2000/07/13 18:38:46 bostic Exp $
  3. #
  4. # Build the automatically generated function prototype files.
  5. msgc="/* DO NOT EDIT: automatically built by dist/s_include. */"
  6. cxx_if="#if defined(__cplusplus)"
  7. cxx_head="extern "C" {"
  8. cxx_foot="}"
  9. cxx_endif="#endif"
  10. tmp=/tmp/__db_inc.$$
  11. trap 'rm -f $tmp ; exit 0' 0 1 2 3 13 15
  12. for i in db btree clib common env hash 
  13.     lock log mp mutex os qam rpc_client rpc_server tcl txn xa; do
  14. f=../include/${i}_ext.h
  15. (echo "$msgc" &&
  16.     echo "#ifndef _${i}_ext_h_" &&
  17.     echo "#define _${i}_ext_h_" &&
  18.     echo "$cxx_if" &&
  19.     echo "$cxx_head" &&
  20.     echo "$cxx_endif" &&
  21.     sed -n "s/^ * PUBLIC:[  ](.*)/1/p" ../$i/*.c;
  22.     [ $i = os ] &&
  23. sed -n "s/^ * PUBLIC:[  ](.*)/1/p" ../os_win32/*.c;
  24.     echo "$cxx_if" &&
  25.     echo "$cxx_foot" &&
  26.     echo "$cxx_endif" &&
  27.     echo "#endif /* _${i}_ext_h_ */") > $tmp
  28. cmp $tmp $f > /dev/null 2>&1 ||
  29.     (echo "Building $f" && rm -f $f && cp $tmp $f && chmod 444 $f)
  30. done