/[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.7.6.3 by ttn, Sun Mar 31 23:24:37 2002 UTC revision 1.7.6.4 by ttn, Fri May 3 09:17:04 2002 UTC
# Line 28  for f in $workbookdistfiles ; do Line 28  for f in $workbookdistfiles ; do
28  done  done
29  rm -f examples/example.gdbinit  rm -f examples/example.gdbinit
30  ln -s $workbook/build/dist-files/.gdbinit examples/example.gdbinit  ln -s $workbook/build/dist-files/.gdbinit examples/example.gdbinit
31    
32    # TODO: This should be moved to dist-guile
33    mscripts=$workbook/../scripts
34    rm -f BUGS
35    $mscripts/render-bugs > BUGS
36    
37  ######################################################################  ######################################################################
38    
39    # Make sure this matches the ACLOCAL invokation in Makefile.am
40    
41  ./guile-aclocal.sh  ./guile-aclocal.sh
42    
43  libtoolize --copy --force --automake --ltdl  ######################################################################
44    ### Libtool setup.
45    
46    # Get a clean version.
47    rm -rf libltdl
48    libtoolize --force --copy --automake --ltdl
49    
50    # Make sure we use a ./configure.in compatible autoconf in ./libltdl/
51    mv libltdl/configure.in libltdl/configure.tmp
52    echo 'AC_PREREQ(2.50)' > libltdl/configure.in
53    cat libltdl/configure.tmp >> libltdl/configure.in
54    rm libltdl/configure.tmp
55    ######################################################################
56    
57  autoheader  autoheader
58  autoconf  autoconf
59    
60    # Automake has a bug that will let it only add one copy of a missing
61    # file.  We need two mdate-sh, tho, one in doc/ref/ and one in
62    # doc/tutorial/.  We run automake twice as a workaround.
63    
64    automake --add-missing
65  automake --add-missing  automake --add-missing
66    
67  # Make sure that libltdl uses the same autoconf version as the rest.  # Make sure that libltdl uses the same autoconf version as the rest.
68  #  #
69  ( echo "libltdl..."; cd libltdl; autoconf )  echo "libltdl..."
70    (cd libltdl && autoconf)
71    (cd libltdl && automake --gnu --add-missing)
72    
73  ( echo "guile-readline..."; cd guile-readline; ./autogen.sh )  echo "guile-readline..."
74    (cd guile-readline && ./autogen.sh)
75    
76  echo "Now run configure and make."  echo "Now run configure and make."
77  echo "You must pass the \`--enable-maintainer-mode' option to configure."  echo "You must pass the \`--enable-maintainer-mode' option to configure."

Legend:
Removed from v.1.7.6.3  
changed lines
  Added in v.1.7.6.4

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