bootstrap
上传用户:sun1608
上传日期:2007-02-02
资源大小:6116k
文件大小:1k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. #!/bin/sh
  2. #
  3. # Bootstrap development of mpeg4ip with GNU autoconf, automake, and libtool
  4. # Assumes tools are available on the system
  5. #
  6. # Check that we can find libtool
  7. # Frequently it hasn't been installed
  8. if glibtool --version > /dev/null 2> /dev/null
  9. then 
  10.     libtool=glibtool
  11.     if libtoolize --version > /dev/null
  12.     then
  13. echo "Found link for libtoolize"
  14.     else 
  15. echo "Need a link for libtoolize to glibtoolize"
  16. echo "Please see readme for how to make on OS X"
  17. exit 1
  18.     fi
  19. elif libtool --version >/dev/null
  20. then libtool=libtool
  21. else echo "libtool does not appear to be installed."
  22.      echo "Please install it and then rerun this script."
  23.      exit 1
  24. fi
  25. set -x
  26. # if src tree is created via cvs export to tar.gz
  27. # then empty directories in the repository are pruned
  28. # this code recreates the empty directories
  29. # if src tree is checked out directly via cvs, this is a no-op
  30. mkdir -p ./config || exit 1
  31. pwd=`pwd`
  32. for dir 
  33. in $pwd/lib/SDL $pwd
  34. do cd $dir
  35. ./configure "$@" || exit 1
  36. done
  37. set +x
  38. # Now ready to run make
  39. echo "ready to make"