autogen.sh
上传用户:aoeyumen
上传日期:2007-01-06
资源大小:3329k
文件大小:3k
源码类别:

DVD

开发平台:

Unix_Linux

  1. #!/bin/sh
  2. # Run this to generate all the initial makefiles, etc.
  3. DIE=0
  4. (autoconf --version) < /dev/null > /dev/null 2>&1 || {
  5.   echo
  6.   echo "**Error**: You must have `autoconf' installed to compile Gnome."
  7.   echo "Download the appropriate package for your distribution,"
  8.   echo "or get the source tarball at ftp://ftp.gnu.org/pub/gnu/"
  9.   DIE=1
  10. }
  11. (automake --version) < /dev/null > /dev/null 2>&1 || {
  12.   echo
  13.   echo "**Error**: You must have `automake' installed to compile Gnome."
  14.   echo "Get ftp://ftp.gnu.org/pub/gnu/automake-1.3.tar.gz"
  15.   echo "(or a newer version if it is available)"
  16.   DIE=1
  17.   NO_AUTOMAKE=yes
  18. }
  19. # if no automake, don't bother testing for aclocal
  20. test -n "$NO_AUTOMAKE" || (aclocal --version) < /dev/null > /dev/null 2>&1 || {
  21.   echo
  22.   echo "**Error**: Missing `aclocal'.  The version of `automake'"
  23.   echo "installed doesn't appear recent enough."
  24.   echo "Get ftp://ftp.gnu.org/pub/gnu/automake-1.3.tar.gz"
  25.   echo "(or a newer version if it is available)"
  26.   DIE=1
  27. }
  28. if test "$DIE" -eq 1; then
  29.   exit 1
  30. fi
  31. if test -z "$*"; then
  32.   echo "**Warning**: I am going to run `configure' with no arguments."
  33.   echo "If you wish to pass any to it, please specify them on the"
  34.   echo `$0'" command line."
  35.   echo
  36. fi
  37. case $CC in
  38. xlc )
  39.   am_opt=--include-deps;;
  40. esac
  41. for coin in `find $srcdir -name configure.in -print`
  42. do 
  43.   dr=`dirname $coin`
  44.   if test -f $dr/NO-AUTO-GEN; then
  45.     echo skipping $dr -- flagged as no auto-gen
  46.   else
  47.     echo processing $dr
  48.     macrodirs=`sed -n -e 's,AM_ACLOCAL_INCLUDE((.*)),1,gp' < $coin`
  49.     ( cd $dr
  50.       aclocalinclude="$ACLOCAL_FLAGS"
  51.       for k in $macrodirs; do
  52.    if test -d $k; then
  53.           aclocalinclude="$aclocalinclude -I $k"
  54.    ##else 
  55. ##  echo "**Warning**: No such directory `$k'.  Ignored."
  56.         fi
  57.       done
  58.       if grep "^AM_GNU_GETTEXT" configure.in >/dev/null; then
  59. if grep "sed.*POTFILES" configure.in >/dev/null; then
  60.   : do nothing -- we still have an old unmodified configure.in
  61. else
  62.   echo "Creating $dr/aclocal.m4 ..."
  63.   test -r $dr/aclocal.m4 || touch $dr/aclocal.m4
  64.   echo "Running gettextize...  Ignore non-fatal messages."
  65.   echo "no" | gettextize --force --copy
  66.   echo "Making $dr/aclocal.m4 writable ..."
  67.   test -r $dr/aclocal.m4 && chmod u+w $dr/aclocal.m4
  68.         fi
  69.       fi
  70.       if grep "^AM_GNOME_GETTEXT" configure.in >/dev/null; then
  71. echo "Creating $dr/aclocal.m4 ..."
  72. test -r $dr/aclocal.m4 || touch $dr/aclocal.m4
  73. echo "Running gettextize...  Ignore non-fatal messages."
  74. echo "no" | gettextize --force --copy
  75. echo "Making $dr/aclocal.m4 writable ..."
  76. test -r $dr/aclocal.m4 && chmod u+w $dr/aclocal.m4
  77.       fi
  78.       if grep "^AM_PROG_LIBTOOL" configure.in >/dev/null; then
  79. echo "Running libtoolize..."
  80. libtoolize --force --copy
  81.       fi
  82.       echo "Running aclocal $aclocalinclude ..."
  83.       aclocal $aclocalinclude
  84.       if grep "^AM_CONFIG_HEADER" configure.in >/dev/null; then
  85. echo "Running autoheader..."
  86. autoheader
  87.       fi
  88.       echo "Running automake --gnu $am_opt ..."
  89.       automake --add-missing --gnu $am_opt
  90.       echo "Running autoconf ..."
  91.       autoconf
  92.     )
  93.   fi
  94. done
  95. conf_flags="--enable-maintainer-mode --enable-compile-warnings" #--enable-iso-c
  96. if test x$NOCONFIGURE = x; then
  97.   echo Running $srcdir/configure $conf_flags "$@" ...
  98.   $srcdir/configure $conf_flags "$@" 
  99.   && echo Now type `make' to compile $PKG_NAME || exit 1
  100. else
  101.   echo Skipping configure process.
  102. fi