autogen.sh
上传用户:nini_0081
上传日期:2022-07-21
资源大小:2628k
文件大小:0k
源码类别:

多媒体编程

开发平台:

DOS

  1. #!/bin/sh
  2. #
  3. echo "Generating build information using autoconf"
  4. echo "This may take a while ..."
  5. # Regenerate configuration files
  6. cat acinclude/* >aclocal.m4
  7. found=false
  8. for autoconf in autoconf autoconf259 autoconf-2.59
  9. do if which $autoconf >/dev/null 2>&1; then $autoconf && found=true; break; fi
  10. done
  11. if test x$found = xfalse; then
  12.     echo "Couldn't find autoconf, aborting"
  13.     exit 1
  14. fi
  15. # Run configure for this platform
  16. echo "Now you are ready to run ./configure"