autogen.sh
上传用户:wstnjxml
上传日期:2014-04-03
资源大小:7248k
文件大小:1k
源码类别:

Windows CE

开发平台:

C/C++

  1. #!/bin/sh
  2. # FLAC needs relatively recent versions of autotools for autogen.sh to
  3. # run properly.  For example, if your autoconf is too old, it will not
  4. # check for inttypes.h and compilation will fail later.  If you are
  5. # having problems with autogen.sh it is best to upgrade to at least the
  6. # following if possible:
  7. #
  8. # - autoconf 2.59
  9. # - automake 1.8.5
  10. # - libtool 1.5.6
  11. #
  12. # You may need to specify -I /SOME_PATH/share/aclocal if the packages
  13. # FLAC relies on (autotools, libogg, libiconv) are installed in
  14. # non-standard places.
  15. #
  16. # If you don't have XMMS installed at all, you should comment out
  17. # AM_PATH_XMMS in configure.in.
  18. #
  19. # 'hacks' is the place to put some commands you may need.  There is one
  20. # that seems to be necessary in some situations:
  21. #
  22. #  * FLAC uses iconv but not gettext.  iconv requires config.rpath which
  23. #    is supplied by gettext, which is copied in by gettextize.  But we
  24. #    can't run gettextize since we do not fulfill all it's requirements
  25. #    (because we don't use it).
  26. #
  27. # If the default doesn't work, try:
  28. #
  29. #hacks="cp /usr/share/gettext/config.rpath ."
  30. #
  31. # Otherwise, this is the no-op:
  32. hacks=true
  33. #
  34. # Also watchout, if you replace ltmain.sh, there is a bug in some
  35. # versions of libtool (or maybe autoconf) on some platforms where the
  36. # configure-generated libtool does not have $SED defined.  See also:
  37. #
  38. #   http://lists.gnu.org/archive/html/libtool/2003-11/msg00131.html
  39. #
  40. aclocal && libtoolize && autoconf && autoheader && $hacks && automake --foreign --include-deps --add-missing --copy