3 Commits

8 changed files with 25 additions and 21 deletions

View File

@@ -1,8 +1,8 @@
# How to compile and install mboxgrep # Compilation and installation of mboxgrep
mboxgrep should compile on a modern Unix-like operating system, such as GNU/Linux or FreeBSD. `mboxgrep` should compile on a modern Unix-like operating system, such as GNU/Linux or FreeBSD.
It uses autoconf, so the most basic compilation procedure consists of: Autoconf and Automake are used, and the most basic compilation procedure consists of:
``` ```
./configure ./configure

View File

@@ -1,5 +1,10 @@
# Changes of mboxgrep # Changes of mboxgrep
## Changes since 0.7.10
- GNU Automake is now utilized instead of manually written Makefile.in files.
- Code indentation has been corrected and documented (GNU indent is used for this purpose).
## Changes since 0.7.9 ## Changes since 0.7.9
- development has been restarted after a longer hiatus - development has been restarted after a longer hiatus

20
configure vendored
View File

@@ -1,6 +1,6 @@
#! /bin/sh #! /bin/sh
# Guess values for system-dependent variables and create Makefiles. # Guess values for system-dependent variables and create Makefiles.
# Generated by GNU Autoconf 2.69 for mboxgrep 0.7.10. # Generated by GNU Autoconf 2.69 for mboxgrep 0.7.11.
# #
# Report bugs to <dspiljar@datatipp.se>. # Report bugs to <dspiljar@datatipp.se>.
# #
@@ -580,8 +580,8 @@ MAKEFLAGS=
# Identity of this package. # Identity of this package.
PACKAGE_NAME='mboxgrep' PACKAGE_NAME='mboxgrep'
PACKAGE_TARNAME='mboxgrep' PACKAGE_TARNAME='mboxgrep'
PACKAGE_VERSION='0.7.10' PACKAGE_VERSION='0.7.11'
PACKAGE_STRING='mboxgrep 0.7.10' PACKAGE_STRING='mboxgrep 0.7.11'
PACKAGE_BUGREPORT='dspiljar@datatipp.se' PACKAGE_BUGREPORT='dspiljar@datatipp.se'
PACKAGE_URL='https://www.mboxgrep.org/' PACKAGE_URL='https://www.mboxgrep.org/'
@@ -1245,7 +1245,7 @@ if test "$ac_init_help" = "long"; then
# Omit some internal or obsolete options to make the list less imposing. # Omit some internal or obsolete options to make the list less imposing.
# This message is too long to be a string in the A/UX 3.1 sh. # This message is too long to be a string in the A/UX 3.1 sh.
cat <<_ACEOF cat <<_ACEOF
\`configure' configures mboxgrep 0.7.10 to adapt to many kinds of systems. \`configure' configures mboxgrep 0.7.11 to adapt to many kinds of systems.
Usage: $0 [OPTION]... [VAR=VALUE]... Usage: $0 [OPTION]... [VAR=VALUE]...
@@ -1312,7 +1312,7 @@ fi
if test -n "$ac_init_help"; then if test -n "$ac_init_help"; then
case $ac_init_help in case $ac_init_help in
short | recursive ) echo "Configuration of mboxgrep 0.7.10:";; short | recursive ) echo "Configuration of mboxgrep 0.7.11:";;
esac esac
cat <<\_ACEOF cat <<\_ACEOF
@@ -1413,7 +1413,7 @@ fi
test -n "$ac_init_help" && exit $ac_status test -n "$ac_init_help" && exit $ac_status
if $ac_init_version; then if $ac_init_version; then
cat <<\_ACEOF cat <<\_ACEOF
mboxgrep configure 0.7.10 mboxgrep configure 0.7.11
generated by GNU Autoconf 2.69 generated by GNU Autoconf 2.69
Copyright (C) 2012 Free Software Foundation, Inc. Copyright (C) 2012 Free Software Foundation, Inc.
@@ -1660,7 +1660,7 @@ cat >config.log <<_ACEOF
This file contains any messages produced by compilers while This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake. running configure, to aid debugging if configure makes a mistake.
It was created by mboxgrep $as_me 0.7.10, which was It was created by mboxgrep $as_me 0.7.11, which was
generated by GNU Autoconf 2.69. Invocation command line was generated by GNU Autoconf 2.69. Invocation command line was
$ $0 $@ $ $0 $@
@@ -2519,7 +2519,7 @@ fi
# Define the identity of the package. # Define the identity of the package.
PACKAGE='mboxgrep' PACKAGE='mboxgrep'
VERSION='0.7.10' VERSION='0.7.11'
cat >>confdefs.h <<_ACEOF cat >>confdefs.h <<_ACEOF
@@ -5145,7 +5145,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
# report actual input values of CONFIG_FILES etc. instead of their # report actual input values of CONFIG_FILES etc. instead of their
# values after options handling. # values after options handling.
ac_log=" ac_log="
This file was extended by mboxgrep $as_me 0.7.10, which was This file was extended by mboxgrep $as_me 0.7.11, which was
generated by GNU Autoconf 2.69. Invocation command line was generated by GNU Autoconf 2.69. Invocation command line was
CONFIG_FILES = $CONFIG_FILES CONFIG_FILES = $CONFIG_FILES
@@ -5212,7 +5212,7 @@ _ACEOF
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
ac_cs_version="\\ ac_cs_version="\\
mboxgrep config.status 0.7.10 mboxgrep config.status 0.7.11
configured by $0, generated by GNU Autoconf 2.69, configured by $0, generated by GNU Autoconf 2.69,
with options \\"\$ac_cs_config\\" with options \\"\$ac_cs_config\\"

View File

@@ -18,7 +18,7 @@
# Process this file with autoconf to produce a configure script. # Process this file with autoconf to produce a configure script.
# Yawn. # Yawn.
AC_INIT([mboxgrep], [0.7.10], [dspiljar@datatipp.se], [mboxgrep], [https://www.mboxgrep.org/]) AC_INIT([mboxgrep], [0.7.11], [dspiljar@datatipp.se], [mboxgrep], [https://www.mboxgrep.org/])
#AM_INIT_AUTOMAKE #AM_INIT_AUTOMAKE
AM_INIT_AUTOMAKE([foreign]) AM_INIT_AUTOMAKE([foreign])
AC_LANG([C]) AC_LANG([C])

View File

@@ -1,4 +1,4 @@
.TH MBOXGREP 1 "17 Feb 2023" .TH MBOXGREP 1 "24 Mar 2023"
.SH NAME .SH NAME
mboxgrep \- displays email messages matching a pattern mboxgrep \- displays email messages matching a pattern
.SH SYNOPSIS .SH SYNOPSIS
@@ -10,7 +10,7 @@ mboxgrep \- displays email messages matching a pattern
This manual page refers to This manual page refers to
.B mboxgrep .B mboxgrep
version version
.BR 0.7.10 . .BR 0.7.11 .
.PP .PP
.B mboxgrep .B mboxgrep
scans a scans a

View File

@@ -9,7 +9,7 @@ END-INFO-DIR-ENTRY
 
File: mboxgrep.info, Node: Top, Up: (dir) File: mboxgrep.info, Node: Top, Up: (dir)
This file documents 'mboxgrep' (version 0.7.10), a mailbox scanning This file documents 'mboxgrep' (version 0.7.11), a mailbox scanning
utility. utility.
Copyright (C) 2000, 2001, 2002, 2003 Daniel Spiljar Copyright (C) 2000, 2001, 2002, 2003 Daniel Spiljar

View File

@@ -5,8 +5,8 @@
@setchapternewpage odd @setchapternewpage odd
@set EDITION 0.7 @set EDITION 0.7
@set VERSION 0.7.10 @set VERSION 0.7.11
@set UPDATED 17 Feb 2023 @set UPDATED 24 Mar 2023
@dircategory Mail @dircategory Mail
@direntry @direntry

View File

@@ -15,14 +15,13 @@
You should have received a copy of the GNU General Public License You should have received a copy of the GNU General Public License
along with mboxgrep; if not, write to the Free Software Foundation, along with mboxgrep; if not, write to the Free Software Foundation,
Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/ */
#ifndef MBOXGREP_H #ifndef MBOXGREP_H
#define MBOXGREP_H #define MBOXGREP_H
#define APPNAME "mboxgrep" #define APPNAME "mboxgrep"
#define VERSION "0.7.10" #define VERSION "0.7.11"
#define BUGREPORT_ADDR "dspiljar AT datatipp.se" #define BUGREPORT_ADDR "dspiljar AT datatipp.se"
#define HOST_NAME_SIZE 256 #define HOST_NAME_SIZE 256