diff --git a/ChangeLog b/ChangeLog index 465b5b408..486eb8535 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 2001-04-06 Pavel Roskin + * autogen.sh: Check out "intl" and "macros" directories if they + are missing. Simply "cvs up -d" won't restore them. + * configure.in: Bump version to 4.5.52a. 2001-03-14 Pavel Roskin diff --git a/autogen.sh b/autogen.sh index 0fb822624..c1d1d6b1e 100755 --- a/autogen.sh +++ b/autogen.sh @@ -6,19 +6,16 @@ test -z "$srcdir" && srcdir=. ( cd $srcdir -if test -d macros; then - aclocal -I macros $ACLOCAL_FLAGS || exit 1 -else - if test -f aclocal.m4; then - echo Warning: aclocal.m4 cannot be rebuilt - else - echo Error: aclocal.m4 cannot be created - exit 1 - fi -fi + +: ${CVS=cvs} +test -d macros || $CVS co -d macros gnome-common/macros || exit 1 +test -d intl || $CVS co -d intl gnome-common/intl || exit 1 + +aclocal -I macros $ACLOCAL_FLAGS || exit 1 autoheader || exit 1 autoconf || exit 1 automake -a || exit 1 + cd vfs/samba || exit 1 date -u >include/stamp-h.in autoheader || exit 1