guile-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

branch_release-1-4 brought into 21st century


From: Thien-Thi Nguyen
Subject: branch_release-1-4 brought into 21st century
Date: Sat, 09 Feb 2002 17:19:11 -0800

good news: 1.4 now builds w/ modern auto* tools and passes "make check".
and of course, the "bad `inet_aton' decl" bug is squashed, too.

next step is to make sure dist and installation works.  to play, see the
prototype (to be generalized and checked in Real Soon Now) script below;
some futzing required (replace "ttn-do guile-scripts " with the path to
the guile-scripts dir).

thi

___________________________
#!/bin/sh

part1 ()
{
  ttn-do guile-scripts checkout-guile-cvs-module guile-core
  mv guile-core guile-core-1.4
  cd guile-core-1.4
  cvs update -d -P -r branch_release-1-4
  ./autogen.sh
  mkdir ../build-1.4
  cd ../build-1.4
  ../guile-core-1.4/configure -C --enable-maintainer-mode --with-threads
}

part2 ()
{
  make
  make check
  if ./check-guile --flag-unresolved ; then ret=false ; else ret=true ; fi
  $ret
}

set -ex
part$1



reply via email to

[Prev in Thread] Current Thread [Next in Thread]