reconf
上传用户:jxpjxmjjw
上传日期:2009-12-07
资源大小:5877k
文件大小:1k
源码类别:

模拟服务器

开发平台:

Visual C++

  1. #!/bin/sh
  2. # Copyright (C) 2004 Team Python <>
  3. #
  4. # This file is free software; as a special exception the author gives
  5. # unlimited permission to copy and/or distribute it, with or without
  6. # modifications, as long as this notice is preserved.
  7. #
  8. # This program is distributed in the hope that it will be useful, but
  9. # WITHOUT ANY WARRANTY, to the extent permitted by law; without even the
  10. # implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  11. if test -z "`automake --version 2>&1|head -n 1|egrep '1.[5-9]'`"; then
  12.         echo "Sorry, automake 1.5 or above is required.";
  13.         exit 1;
  14. fi
  15. if test -z "`aclocal --version 2>&1|head -n 1|egrep '1.[5-9]'`"; then
  16.         echo "Sorry, aclocal 1.5 or above is required.";
  17.         exit 1;
  18. fi
  19. if test -z "`autoconf --version 2>&1|head -n 1|egrep '2.5'`"; then
  20.         echo "Sorry, autoconf 2.5 or above is required.";
  21.         exit 1;
  22. fi
  23. if test -z "`autoheader --version 2>&1|head -n 1|egrep '2.5'`"; then
  24.         echo "Sorry, autoheader 2.5 or above is required.";
  25.         exit 1;
  26. fi
  27. rm -f config.cache
  28. echo "- aclocal."
  29. aclocal
  30. echo "- autoconf."
  31. autoconf
  32. echo "- autoheader."
  33. autoheader
  34. echo "- automake."
  35. automake -a -c
  36. exit