Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
John McEleney
/
mailutils
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
Commit
7eb2aa3d
...
7eb2aa3dc9a6cfb6d54668fc49d4427da5e19a5f
authored
2002-04-12 22:19:37 +0000
by
Jeff Bailey
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Bump version to 0.0.9d
1 parent
3d253737
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
9 additions
and
2 deletions
ChangeLog
configure.in
mh/mh.h
mh/mh_argp.c
mh/mh_getopt.c
ChangeLog
View file @
7eb2aa3
2002
-
04
-
12
Jeff
Bailey
<
jbailey
@outpost
.
dnsalias
.
org
>
*
configure
.
in
:
Bump
version
to
0
.
0
.
9
d
2002
-
04
-
11
Sergey
Poznyakoff
*
lib
/
mu_argp
.
c
:
Fixed
auto
-
arranging
of
...
...
configure.in
View file @
7eb2aa3
dnl Process this file with autoconf to procude a configure script.
AC_INIT(mailbox/mailbox.c)
AM_INIT_AUTOMAKE(mailutils, 0.0.9
c
)
AM_INIT_AUTOMAKE(mailutils, 0.0.9
d
)
AM_CONFIG_HEADER(config.h)
dnl Check for programs
...
...
mh/mh.h
View file @
7eb2aa3
...
...
@@ -138,6 +138,7 @@ extern size_t current_message;
extern
char
mh_list_format
[];
extern
header_t
ctx_header
;
extern
header_t
profile_header
;
extern
char
*
program_invocation_short_name
;
void
mh_init
(
void
);
void
mh_read_profile
(
void
);
...
...
mh/mh_argp.c
View file @
7eb2aa3
...
...
@@ -75,7 +75,8 @@ mh_argp_parse (int argc, char **argv,
struct
argp
argp
;
struct
mh_argp_data
data
;
char
*
p
;
char
*
program_invocation_name
,
*
program_invocation_short_name
;
program_invocation_name
=
argv
[
0
];
p
=
strrchr
(
argv
[
0
],
'/'
);
if
(
p
)
...
...
mh/mh_getopt.c
View file @
7eb2aa3
...
...
@@ -25,6 +25,7 @@
#include <stdlib.h>
#include <mh_getopt.h>
#include <getopt.h>
#include <mh.h>
int
mh_optind
=
1
;
char
*
mh_optarg
;
...
...
Please
register
or
sign in
to post a comment