Commit b77bc50e b77bc50eaeccb0c626d0c84e00844efa7dc75c55 by Sergey Poznyakoff

Switched to Git repository.

* m4: Rename to am.
* README-alpha, README-hacking: Reflect the switch.
* */.cvsignore: Rename to .gitignore, update.
* gnulib.modules: Add gitlog-to-changelog.
* ChangeLog: Remove.
1 parent adff7f0d
Showing 85 changed files with 78 additions and 23 deletions
This diff could not be displayed because it is too large.
## Process this file with GNU Automake to create Makefile.in
## Copyright (C) 2000,2001,2002,2003,2004,2005,2006,2007
## Copyright (C) 2000,2001,2002,2003,2004,2005,2006,2007,2008
## Free Software Foundation, Inc.
##
## GNU Mailutils is free software; you can redistribute it and/or
......@@ -19,7 +19,7 @@
## 02110-1301 USA
AUTOMAKE_OPTIONS = gnits 1.8.5 dist-bzip2 std-options
ACLOCAL_AMFLAGS = -I m4
ACLOCAL_AMFLAGS = -I m4 -I am
SUBDIRS = \
include\
......@@ -58,6 +58,39 @@ SUBDIRS = \
EXTRA_DIST = COPYING.LESSER
gen_start_date = 2008-05-05
.PHONY: make-ChangeLog
make-ChangeLog:
if test -d .git; then \
$(top_srcdir)/scripts/gitlog-to-changelog \
--since=$(gen_start_date) | \
sed '/<unknown>$$/d' | fmt -s > $(distdir)/cl-t; \
echo " " >> $(distdir)/cl-t; \
echo "Local Variables:" >> $(distdir)/cl-t; \
echo "mode: change-log" >> $(distdir)/cl-t; \
echo "version-control: never" >> $(distdir)/cl-t; \
echo "buffer-read-only: t" >> $(distdir)/cl-t; \
echo "End:" >> $(distdir)/cl-t; \
rm -f $(distdir)/ChangeLog; \
mv $(distdir)/cl-t $(distdir)/ChangeLog; \
fi
dist-hook: make-ChangeLog
.PHONY: ChangeLog
ChangeLog:
if test -d .git; then \
$(top_srcdir)/scripts/gitlog-to-changelog \
--since=$(gen_start_date) | \
sed '/<unknown>$$/d' | fmt -s > ChangeLog; \
echo " " >> ChangeLog; \
echo "Local Variables:" >> ChangeLog; \
echo "mode: change-log" >> ChangeLog; \
echo "version-control: never" >> ChangeLog; \
echo "buffer-read-only: t" >> ChangeLog; \
echo "End:" >> ChangeLog; \
fi
alpha:
$(MAKE) dist distdir=$(PACKAGE)-$(VERSION)-`date +"%Y%m%d"`
......
This is the GNU mailutils package.
This document describes the actions needed to build the pre-release
or CVS version of the package. See end of file for copying conditions.
or Git version of the package. See end of file for copying conditions.
* Introduction
This is a *pre-release* version, and not ready for production use
yet. If you are taking source from CVS, you will need to have several
yet. If you are taking source from Git, you will need to have several
special tools to help contribute. See the file README-hacking for more
information, See chapter `Building' for the detailed instructions on
how to build the package.
Please, note that the accompanying documentation may be inaccurate
or incomplete. The ChangeLog file is the authoritative documentation of
or incomplete. The Git logs are the authoritative documentation of
all recent changes.
Report bugs to <bug-mailutils@gnu.org>
......@@ -19,11 +19,11 @@ Report bugs to <bug-mailutils@gnu.org>
* Checking Out the Sources
The following instructions apply if you wish to obtain sources from
the CVS repository:
the Git repository:
To checkout the source tree from CVS issue the following command:
To clone the source tree from the repository, issue the following command:
cvs -d :pserver:anoncvs@cvs.savannah.gnu.org:/cvsroot/mailutils checkout mailutils
git clone git://git.savannah.gnu.org/mailutils.git
This will give you read-only access. If you think you need write access,
contact the mailing list.
......@@ -69,7 +69,7 @@ Now set your breakpoints and proceed as usual.
* Copyright information:
Copyright (C) 2002, 2003, 2004, 2005, 2007 Free Software Foundation, Inc.
Copyright (C) 2002, 2003, 2004, 2005, 2007, 2008 Free Software Foundation, Inc.
Permission is granted to anyone to make or distribute verbatim copies
of this document as received, in any medium, provided that the
......
These notes intend to help people working on the CVS version of
These notes intend to help people working on the Git version of
this package.
* Requirements
You need the following packages to build the CVS version of GNU
You need the following packages to build the Git version of GNU
Mailutils. We do not make any efforts to accommodate older versions of
these packages, so please make sure that you have the latest stable
version.
......@@ -20,8 +20,8 @@ version.
* Bootstrapping
Obviously, if you are reading these notes, you did manage to check out
Mailutils from CVS. The next step is to get other files needed to build,
Obviously, if you are reading these notes, you did manage to clone
Mailutils from Git. The next step is to get other files needed to build,
which are extracted from other source packages:
1. Change to the source tree directory
......@@ -59,7 +59,7 @@ For more information about `bootstrap', run `bootstrap --help'.
* Copyright information
Copyright (C) 2007 Free Software Foundation, Inc.
Copyright (C) 2007, 2008 Free Software Foundation, Inc.
Permission is granted to anyone to make or distribute verbatim copies
of this document as received, in any medium, provided that the
......
......@@ -204,7 +204,7 @@ mu_grad_logger(int level,
strcat (pfx, fmt);
}
}
mu_diag_voutput (mlevel[level & L_PRIMASK], pfx ? pfx : fmt, ap);
mu_diag_voutput (mlevel[level & GRAD_LOG_PRIMASK], pfx ? pfx : fmt, ap);
if (pfx)
free(pfx);
}
......
......@@ -539,9 +539,10 @@ fi
# Reconfigure, getting other files.
aclocal_flags=`sed -n 's/ACLOCAL_AMFLAGS *=//p' Makefile.am`
for command in \
libtool \
'aclocal --force -I m4' \
"aclocal --force $aclocal_flags" \
'autoconf --force' \
'autoheader --force' \
'automake --add-missing --copy --force-missing';
......
......@@ -786,13 +786,10 @@ MU_ENABLE_SUPPORT(maildir)
# FIXME: Should be --with-radius
MU_ENABLE_SUPPORT(radius,
[AC_CHECK_HEADERS([radius/radius.h],,
[mu_cv_enable_radius=no])
if test $mu_cv_enable_radius = yes; then
AC_CHECK_LIB(gnuradius, grad_dict_init,
[MU_AUTHLIBS="$MU_AUTHLIBS -lgnuradius"],
[mu_cv_enable_radius=no])
fi])
[AM_GNU_RADIUS(1.6,
[MU_AUTHLIBS="$MU_AUTHLIBS -lgnuradius"
mu_cv_enable_radius=yes],
[mu_cv_enable_radius=no])])
AC_ARG_ENABLE([mh-utils],
AC_HELP_STRING([--enable-mh-utils],
......
......@@ -14,6 +14,7 @@ fnmatch
getline
getpass-gnu
gettext
gitlog-to-changelog
intprops
malloc
mbswidth
......
......@@ -15,6 +15,7 @@ forw
inc
install-mh
mailutils-mh.el
mailutils-mh.elc
mark
mh_alias.h
mh_alias_gram.c
......
*.gmo
*.mo
*.po
.reference
LINGUAS
Makefile
Makefile.in
Makefile.in.in
Makevars
Makevars.template
POTFILES
Rules-quot
boldquot.sed
en@boldquot.header
en@quot.header
insert-header.sed
insert-header.sin
mailutils.pot
quot.sed
remove-potcdate.sed
remove-potcdate.sin
stamp-po