Bump version to 0.0.9d
Showing
5 changed files
with
9 additions
and
2 deletions
1 | dnl Process this file with autoconf to procude a configure script. | 1 | dnl Process this file with autoconf to procude a configure script. |
2 | AC_INIT(mailbox/mailbox.c) | 2 | AC_INIT(mailbox/mailbox.c) |
3 | AM_INIT_AUTOMAKE(mailutils, 0.0.9c) | 3 | AM_INIT_AUTOMAKE(mailutils, 0.0.9d) |
4 | AM_CONFIG_HEADER(config.h) | 4 | AM_CONFIG_HEADER(config.h) |
5 | 5 | ||
6 | dnl Check for programs | 6 | dnl Check for programs | ... | ... |
... | @@ -138,6 +138,7 @@ extern size_t current_message; | ... | @@ -138,6 +138,7 @@ extern size_t current_message; |
138 | extern char mh_list_format[]; | 138 | extern char mh_list_format[]; |
139 | extern header_t ctx_header; | 139 | extern header_t ctx_header; |
140 | extern header_t profile_header; | 140 | extern header_t profile_header; |
141 | extern char *program_invocation_short_name; | ||
141 | 142 | ||
142 | void mh_init (void); | 143 | void mh_init (void); |
143 | void mh_read_profile (void); | 144 | void mh_read_profile (void); | ... | ... |
... | @@ -75,7 +75,8 @@ mh_argp_parse (int argc, char **argv, | ... | @@ -75,7 +75,8 @@ mh_argp_parse (int argc, char **argv, |
75 | struct argp argp; | 75 | struct argp argp; |
76 | struct mh_argp_data data; | 76 | struct mh_argp_data data; |
77 | char *p; | 77 | char *p; |
78 | 78 | char *program_invocation_name, *program_invocation_short_name; | |
79 | |||
79 | program_invocation_name = argv[0]; | 80 | program_invocation_name = argv[0]; |
80 | p = strrchr (argv[0], '/'); | 81 | p = strrchr (argv[0], '/'); |
81 | if (p) | 82 | if (p) | ... | ... |
... | @@ -25,6 +25,7 @@ | ... | @@ -25,6 +25,7 @@ |
25 | #include <stdlib.h> | 25 | #include <stdlib.h> |
26 | #include <mh_getopt.h> | 26 | #include <mh_getopt.h> |
27 | #include <getopt.h> | 27 | #include <getopt.h> |
28 | #include <mh.h> | ||
28 | 29 | ||
29 | int mh_optind = 1; | 30 | int mh_optind = 1; |
30 | char *mh_optarg; | 31 | char *mh_optarg; | ... | ... |
-
Please register or sign in to post a comment