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

MySQL数据库

开发平台:

Visual C++

  1. dnl $Id: programs.m4,v 11.11 2000/03/30 21:20:50 bostic Exp $
  2. dnl Check for programs used in building/installation.
  3. AC_DEFUN(AM_PROGRAMS_SET, [
  4. AC_PATH_PROG(db_cv_path_ar, ar, missing_ar)
  5. if test "$db_cv_path_ar" = missing_ar; then
  6. AC_MSG_ERROR([No ar utility found.])
  7. fi
  8. AC_PATH_PROG(db_cv_path_chmod, chmod, missing_chmod)
  9. if test "$db_cv_path_chmod" = missing_chmod; then
  10. AC_MSG_ERROR([No chmod utility found.])
  11. fi
  12. AC_PATH_PROG(db_cv_path_cp, cp, missing_cp)
  13. if test "$db_cv_path_cp" = missing_cp; then
  14. AC_MSG_ERROR([No cp utility found.])
  15. fi
  16. AC_PATH_PROG(db_cv_path_ln, ln, missing_ln)
  17. if test "$db_cv_path_ln" = missing_ln; then
  18. AC_MSG_ERROR([No ln utility found.])
  19. fi
  20. AC_PATH_PROG(db_cv_path_mkdir, mkdir, missing_mkdir)
  21. if test "$db_cv_path_mkdir" = missing_mkdir; then
  22. AC_MSG_ERROR([No mkdir utility found.])
  23. fi
  24. AC_PATH_PROG(db_cv_path_ranlib, ranlib, missing_ranlib)
  25. AC_PATH_PROG(db_cv_path_rm, rm, missing_rm)
  26. if test "$db_cv_path_rm" = missing_rm; then
  27. AC_MSG_ERROR([No rm utility found.])
  28. fi
  29. AC_PATH_PROG(db_cv_path_sh, sh, missing_sh)
  30. if test "$db_cv_path_sh" = missing_sh; then
  31. AC_MSG_ERROR([No sh utility found.])
  32. fi
  33. AC_PATH_PROG(db_cv_path_strip, strip, missing_strip)
  34. if test "$db_cv_path_strip" = missing_strip; then
  35. AC_MSG_ERROR([No strip utility found.])
  36. fi
  37. dnl Check for programs used in testing.
  38. if test "$db_cv_test" = "yes"; then
  39. AC_PATH_PROG(db_cv_path_kill, kill, missing_kill)
  40. if test "$db_cv_path_kill" = missing_kill; then
  41. AC_MSG_ERROR([No kill utility found.])
  42. fi
  43. fi
  44. ])dnl