Commit 7eb2aa3d 7eb2aa3dc9a6cfb6d54668fc49d4427da5e19a5f by Jeff Bailey

Bump version to 0.0.9d

1 parent 3d253737
2002-04-12 Jeff Bailey <jbailey@outpost.dnsalias.org>
* configure.in: Bump version to 0.0.9d
2002-04-11 Sergey Poznyakoff
* lib/mu_argp.c: Fixed auto-arranging of
......
dnl Process this file with autoconf to procude a configure script.
AC_INIT(mailbox/mailbox.c)
AM_INIT_AUTOMAKE(mailutils, 0.0.9c)
AM_INIT_AUTOMAKE(mailutils, 0.0.9d)
AM_CONFIG_HEADER(config.h)
dnl Check for programs
......
......@@ -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);
......
......@@ -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)
......
......@@ -25,6 +25,7 @@
#include <stdlib.h>
#include <mh_getopt.h>
#include <getopt.h>
#include <mh.h>
int mh_optind = 1;
char *mh_optarg;
......