/[guile]/guile/guile-core/autogen.sh
ViewVC logotype

Diff of /guile/guile-core/autogen.sh

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.25 by mvo, Thu Oct 3 22:00:44 2002 UTC revision 1.26 by rlb, Sat Oct 5 04:55:57 2002 UTC
# Line 48  libtoolize --force --copy --automake Line 48  libtoolize --force --copy --automake
48    
49  ######################################################################  ######################################################################
50    
51    ac_version=`autoconf --version | head -1`
52    ac_version=`echo ${ac_version} | sed -e 's/autoconf.* \([0-9].[0-9]\+\)$/\1/'`
53    case "${ac_version}" in
54      (2.5?) autoconf=autoconf ;;
55    esac
56    
57  # configure.in reqs autoconf-2.53; try to find it  # configure.in reqs autoconf-2.53; try to find it
58  for suf in "-2.53" "2.53" ""  false; do  if test -z "$autoconf"; then
59    version=`autoconf$suf --version 2>/dev/null | head -1 | awk '{print $NF}' | awk -F. '{print $1 * 100 + $2}'`    for suf in "-2.53" "2.53" ""  false; do
60    if test "0$version" -eq 253; then      version=`autoconf$suf --version 2>/dev/null | head -1 | awk '{print $NF}' | awk -F. '{print $1 * 100 + $2}'`
61      autoconf=autoconf$suf      if test "0$version" -eq 253; then
62      autoheader=autoheader$suf        autoconf=autoconf$suf
63      break        autoheader=autoheader$suf
64    fi        break
65  done      fi
66      done
67    fi
68    
69  if test -z "$autoconf"; then  if test -z "$autoconf"; then
70      echo "ERROR: Please install autoconf 2.53"      echo "ERROR: Please install autoconf 2.53"
# Line 94  $autoconf Line 101  $autoconf
101  $automake --add-missing  $automake --add-missing
102  $automake --add-missing  $automake --add-missing
103    
 # Make sure that libltdl uses the same autoconf version as the rest.  
 #  
 echo "libltdl..."  
 (cd libltdl && aclocal)  
 (cd libltdl && autoconf)  
 (cd libltdl && $automake --gnu --add-missing)  
   
104  echo "guile-readline..."  echo "guile-readline..."
105  (cd guile-readline && ./autogen.sh)  (cd guile-readline && ./autogen.sh)
106    

Legend:
Removed from v.1.25  
changed lines
  Added in v.1.26

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26