summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.gitignore20
-rw-r--r--VERSION2
-rw-r--r--alpine/alpine.c1
-rw-r--r--alpine/colorconf.c182
-rw-r--r--alpine/colorconf.h3
-rw-r--r--alpine/confscroll.c4
-rw-r--r--alpine/dispfilt.c25
-rw-r--r--alpine/dispfilt.h2
-rw-r--r--alpine/folder.c153
-rw-r--r--alpine/keymenu.c8
-rw-r--r--alpine/keymenu.h1
-rw-r--r--alpine/reply.c37
-rw-r--r--alpine/send.c4
-rw-r--r--autom4te.cache/output.144
-rw-r--r--autom4te.cache/output.244
-rw-r--r--autom4te.cache/requests265
-rw-r--r--autom4te.cache/traces.12746
-rw-r--r--autom4te.cache/traces.21414
-rwxr-xr-xconfigure44
-rw-r--r--configure.ac5
-rw-r--r--include/general.h7
-rw-r--r--pith/conf.c32
-rw-r--r--pith/conf.h13
-rw-r--r--pith/conftype.h8
-rw-r--r--pith/filter.c7
-rw-r--r--pith/filter.h2
-rw-r--r--pith/handle.h1
-rw-r--r--pith/mailindx.c20
-rw-r--r--pith/mailindx.h1
-rw-r--r--pith/pine.hlp183
-rw-r--r--pith/reply.c33
-rw-r--r--pith/state.c3
-rw-r--r--pith/state.h3
-rw-r--r--po/Makefile.in4
34 files changed, 3092 insertions, 2229 deletions
diff --git a/.gitignore b/.gitignore
index 8b61bcf2..0a7f0643 100644
--- a/.gitignore
+++ b/.gitignore
@@ -10,3 +10,23 @@ imapd
pop3d
pop2d
mailutil
+ipopd
+mlock
+mtest
+tmail
+c-client
+helptext*
+help_*gen
+*orig
+*patch
+*log
+*status
+OSTYPE
+SPECIALS
+.deps
+libtool
+po/
+imap/an
+dmail
+imap/ip6
+include/
diff --git a/VERSION b/VERSION
index 37989bd1..41fe9f38 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-2.10
+2.10.9
diff --git a/alpine/alpine.c b/alpine/alpine.c
index 76f66950..9e7298f2 100644
--- a/alpine/alpine.c
+++ b/alpine/alpine.c
@@ -196,6 +196,7 @@ main(int argc, char **argv)
#endif
status_message_lock_init();
+ inverse_itokens();
#if HAVE_SRANDOM
/*
diff --git a/alpine/colorconf.c b/alpine/colorconf.c
index e0aee596..e672778c 100644
--- a/alpine/colorconf.c
+++ b/alpine/colorconf.c
@@ -29,18 +29,20 @@ static char rcsid[] = "$Id: colorconf.c 934 2008-02-23 00:44:29Z hubert@u.washin
#include "../pith/color.h"
#include "../pith/icache.h"
#include "../pith/mailcmd.h"
+#include "../pith/mailindx.h"
#include "../pith/list.h"
/*
* Internal prototypes
*/
+char *colorindexrule(char *);
char *color_setting_text_line(struct pine *, struct variable *);
void revert_to_saved_color_config(struct pine *, SAVED_CONFIG_S *);
SAVED_CONFIG_S *save_color_config_vars(struct pine *);
void free_saved_color_config(struct pine *, SAVED_CONFIG_S **);
void color_config_init_display(struct pine *, CONF_S **, CONF_S **);
-void add_header_color_line(struct pine *, CONF_S **, char *, int);
+void add_header_color_line(struct pine *, CONF_S **, char *, int, int);
int is_rgb_color(char *);
char *new_color_line(char *, int, int, int);
int color_text_tool(struct pine *, int, CONF_S **, unsigned);
@@ -142,7 +144,8 @@ sample_text(struct pine *ps, struct variable *v)
if((v && v->name &&
srchstr(v->name, "-foreground-color") &&
pvalfg && pvalfg[0] && pvalbg && pvalbg[0]) ||
- (v == &ps->vars[V_VIEW_HDR_COLORS] || v == &ps->vars[V_KW_COLORS]))
+ (v == &ps->vars[V_INDEX_TOKEN_COLORS] ||
+ v == &ps->vars[V_VIEW_HDR_COLORS] || v == &ps->vars[V_KW_COLORS]))
ret = SAMP1;
return(ret);
@@ -487,6 +490,26 @@ color_config_init_display(struct pine *ps, CONF_S **ctmp, CONF_S **first_line)
}
/*
+ * custom index tokens colors
+ */
+ vtmp = &ps->vars[V_INDEX_TOKEN_COLORS];
+ lval = LVAL(vtmp, ew);
+
+ if(lval && lval[0] && lval[0][0]){
+ for(i = 0; lval && lval[i]; i++)
+ add_header_color_line(ps, ctmp, lval[i], i, V_INDEX_TOKEN_COLORS);
+ }
+ else{
+ new_confline(ctmp); /* Blank line */
+ (*ctmp)->flags |= CF_NOSELECT | CF_B_LINE;
+ new_confline(ctmp);
+ (*ctmp)->help = NO_HELP;
+ (*ctmp)->flags |= CF_NOSELECT;
+ (*ctmp)->value = cpystr(_(ADDINDEXTOKEN_COMMENT));
+ (*ctmp)->valoffset = COLOR_INDENT;
+ }
+
+ /*
* custom header colors
*/
new_confline(ctmp); /* Blank line */
@@ -498,7 +521,7 @@ color_config_init_display(struct pine *ps, CONF_S **ctmp, CONF_S **first_line)
new_confline(ctmp);
(*ctmp)->help = NO_HELP;
(*ctmp)->flags |= CF_NOSELECT;
- (*ctmp)->value = cpystr(_("HEADER COLORS"));
+ (*ctmp)->value = cpystr(_(HDR_COLORS));
new_confline(ctmp);
(*ctmp)->help = NO_HELP;
(*ctmp)->flags |= CF_NOSELECT;
@@ -527,7 +550,7 @@ color_config_init_display(struct pine *ps, CONF_S **ctmp, CONF_S **first_line)
if(lval && lval[0] && lval[0][0]){
for(i = 0; lval && lval[i]; i++)
- add_header_color_line(ps, ctmp, lval[i], i);
+ add_header_color_line(ps, ctmp, lval[i], i, V_VIEW_HDR_COLORS);
}
else{
new_confline(ctmp); /* Blank line */
@@ -697,6 +720,7 @@ color_parenthetical(struct variable *var)
char **lval, *ret = "";
if(var == &ps_global->vars[V_VIEW_HDR_COLORS]
+ || var == &ps_global->vars[V_INDEX_TOKEN_COLORS]
|| var == &ps_global->vars[V_KW_COLORS]){
norm = (LVAL(var, Main) != NULL);
exc = (LVAL(var, ps_global->ew_for_except_vars) != NULL);
@@ -723,15 +747,21 @@ color_parenthetical(struct variable *var)
void
-add_header_color_line(struct pine *ps, CONF_S **ctmp, char *val, int which)
+add_header_color_line(struct pine *ps, CONF_S **ctmp, char *val, int which, int varnum)
{
struct variable *vtmp;
SPEC_COLOR_S *hc;
char tmp[100+1];
int l;
- vtmp = &ps->vars[V_VIEW_HDR_COLORS];
- l = strlen(HEADER_WORD);
+ hc = spec_color_from_var(val, 0);
+ if(varnum == V_INDEX_TOKEN_COLORS){
+ if(hc == NULL || hc->spec == NULL
+ || itoktype(hc->spec, FOR_INDEX) == NULL)
+ return;
+ }
+ vtmp = &ps->vars[varnum];
+ l = strlen(varnum == V_VIEW_HDR_COLORS ? HEADER_WORD : TOKEN_WORD);
/* Blank line */
new_confline(ctmp);
@@ -749,7 +779,6 @@ add_header_color_line(struct pine *ps, CONF_S **ctmp, char *val, int which)
/* which is an index into the variable list */
(*ctmp)->varmem = CFC_SET_COLOR(which, 0);
- hc = spec_color_from_var(val, 0);
if(hc && hc->inherit)
(*ctmp)->flags = (CF_NOSELECT | CF_INHERIT);
else{
@@ -760,7 +789,7 @@ add_header_color_line(struct pine *ps, CONF_S **ctmp, char *val, int which)
* with all this. It probably doesn't happen in real life.
*/
utf8_snprintf(tmp, sizeof(tmp), "%s%c%.*w Color%*w %s%s",
- HEADER_WORD,
+ (varnum == V_VIEW_HDR_COLORS ? HEADER_WORD : TOKEN_WORD),
(hc && hc->spec) ? (islower((unsigned char)hc->spec[0])
? toupper((unsigned char)hc->spec[0])
: hc->spec[0]) : '?',
@@ -1140,6 +1169,7 @@ color_holding_var(struct pine *ps, struct variable *var)
return(var && var->name &&
(srchstr(var->name, "-foreground-color") ||
srchstr(var->name, "-background-color") ||
+ var == &ps->vars[V_INDEX_TOKEN_COLORS] ||
var == &ps->vars[V_VIEW_HDR_COLORS] ||
var == &ps->vars[V_KW_COLORS]));
}
@@ -1184,6 +1214,32 @@ offer_none_color_for_var(struct pine *ps, struct variable *var)
|| var == &ps->vars[V_KW_COLORS]));
}
+char *colorindexrule(char *s)
+{
+ char *conftext;
+ char ***alval, **t;
+
+ if(!strcmp(s, "SUBJECT") || !strcmp(s, "SUBJECTTEXT")
+ || !strcmp(s, "SUBJKEYTEXT") || !strcmp(s, "SUBJKEYINITTEXT")
+ || !strcmp(s, "FROMORTO") || !strcmp(s, "FROM"))
+ return s;
+
+ t = NULL;
+ if((conftext = add_viewerhdr_escapes(s)) != NULL){
+ if((alval = ALVAL(&ps_global->vars[V_INDEX_TOKEN_COLORS], ew)) != NULL){
+ if((t = *alval) && t[0] && !t[0][0] && !(t+1)[0])
+ free_list_array(alval);
+
+ for(t = *alval; t && t[0]; t++){
+ if(strstr(*t, conftext) != NULL)
+ break;
+ }
+ }
+ fs_give((void **)&conftext);
+ }
+ return t && *t ? *t : NULL;
+}
+
int
color_setting_tool(struct pine *ps, int cmd, CONF_S **cl, unsigned int flags)
@@ -1396,6 +1452,7 @@ color_setting_tool(struct pine *ps, int cmd, CONF_S **cl, unsigned int flags)
if(hcolors)
free_spec_colors(&hcolors);
+ fix_side_effects(ps, (*cl)->var, 0);
set_current_color_vals(ps);
ClearScreen();
rv = ps->mangled_screen = 1;
@@ -1804,6 +1861,7 @@ color_setting_tool(struct pine *ps, int cmd, CONF_S **cl, unsigned int flags)
/* get rid of all user set colors */
for(v = ps->vars; v->name; v++){
if(!color_holding_var(ps, v)
+ || v == &ps->vars[V_INDEX_TOKEN_COLORS]
|| v == &ps->vars[V_VIEW_HDR_COLORS]
|| v == &ps->vars[V_KW_COLORS])
continue;
@@ -1857,6 +1915,44 @@ color_setting_tool(struct pine *ps, int cmd, CONF_S **cl, unsigned int flags)
free_spec_colors(&hcolors);
}
+ /* same for index token colors */
+ alval = ALVAL(&ps->vars[V_INDEX_TOKEN_COLORS], ew);
+ if(alval && *alval){
+ SPEC_COLOR_S *global_hcolors = NULL, *hcg;
+
+ v = &ps->vars[V_INDEX_TOKEN_COLORS];
+ if(v->global_val.l && v->global_val.l[0])
+ global_hcolors = spec_colors_from_varlist(v->global_val.l, 0);
+
+ hcolors = spec_colors_from_varlist(*alval, 0);
+ for(hc = hcolors; hc; hc = hc->next){
+ if(hc->fg)
+ fs_give((void **)&hc->fg);
+ if(hc->bg)
+ fs_give((void **)&hc->bg);
+
+ for(hcg = global_hcolors; hcg; hcg = hcg->next){
+ if(hc->spec && hcg->spec && !strucmp(hc->spec, hcg->spec)){
+ hc->fg = hcg->fg;
+ hcg->fg = NULL;
+ hc->bg = hcg->bg;
+ hcg->bg = NULL;
+ if(hc->val && !hcg->val)
+ fs_give((void **) &hc->val);
+ }
+ }
+
+ if(global_hcolors)
+ free_spec_colors(&global_hcolors);
+ }
+
+ free_list_array(alval);
+ *alval = varlist_from_spec_colors(hcolors);
+
+ if(hcolors)
+ free_spec_colors(&hcolors);
+ }
+
/*
* Same for keyword colors.
*/
@@ -1899,15 +1995,29 @@ color_setting_tool(struct pine *ps, int cmd, CONF_S **cl, unsigned int flags)
rv = 1;
break;
+ case MC_ADDHEADER: /* add custom index token color */
case MC_ADD : /* add custom header color */
/* get header field name */
help = NO_HELP;
while(1){
i = optionally_enter(sval, -FOOTER_ROWS(ps), 0, sizeof(sval),
- _("Enter the name of the header field to be added: "),
+ (cmd == MC_ADD ? _("Enter the name of the header field to be added: ")
+ : _("Enter the name of the index token to be added: ")),
NULL, help, NULL);
- if(i == 0)
+ if(i == 0){
+ if(cmd == MC_ADDHEADER){
+ if(itoktype(sval, FOR_INDEX) == NULL){
+ q_status_message1(SM_ORDER, 1, 3,
+ _("token \"%s\" not recognized"), sval);
+ continue;
+ } else if(colorindexrule(sval) != NULL){
+ q_status_message1(SM_ORDER, 1, 3,
+ _("Color rule for token \"%s\" already exists"), sval);
+ continue;
+ }
+ }
break;
+ }
else if(i == 1){
cmd_cancelled("Add");
cancel = 1;
@@ -1938,7 +2048,7 @@ color_setting_tool(struct pine *ps, int cmd, CONF_S **cl, unsigned int flags)
confline = var_from_spec_color(new_hcolor);
/* add it to end of list */
- alval = ALVAL(&ps->vars[V_VIEW_HDR_COLORS], ew);
+ alval = ALVAL(&ps->vars[(cmd == MC_ADD ? V_VIEW_HDR_COLORS : V_INDEX_TOKEN_COLORS)], ew);
if(alval){
/* get rid of possible empty value first */
if((t = *alval) && t[0] && !t[0][0] && !(t+1)[0])
@@ -1963,7 +2073,7 @@ color_setting_tool(struct pine *ps, int cmd, CONF_S **cl, unsigned int flags)
;
/* back up to the KEYWORD COLORS title line */
- for(; ctmp && (!ctmp->value || strcmp(ctmp->value, KW_COLORS_HDR))
+ for(; ctmp && (!ctmp->value || strcmp(ctmp->value, (cmd == MC_ADD ? KW_COLORS_HDR : HDR_COLORS)))
&& ctmp->prev;
ctmp = prev_confline(ctmp))
;
@@ -2001,7 +2111,8 @@ color_setting_tool(struct pine *ps, int cmd, CONF_S **cl, unsigned int flags)
free_conflines(&beg);
}
- add_header_color_line(ps, cl, confline, i);
+ add_header_color_line(ps, cl, confline, i, cmd == MC_ADD
+ ? V_VIEW_HDR_COLORS : V_INDEX_TOKEN_COLORS);
/* be sure current is on selectable line */
for(; *cl && ((*cl)->flags & CF_NOSELECT); *cl = next_confline(*cl))
@@ -2013,13 +2124,16 @@ color_setting_tool(struct pine *ps, int cmd, CONF_S **cl, unsigned int flags)
break;
case MC_DELETE : /* delete custom header color */
- if((*cl)->var != &ps->vars[V_VIEW_HDR_COLORS]){
+ if((*cl)->var != &ps->vars[V_VIEW_HDR_COLORS]
+ && (*cl)->var != &ps->vars[V_INDEX_TOKEN_COLORS]){
q_status_message(SM_ORDER, 0, 2,
_("Can't delete this color setting"));
break;
}
- if(want_to(_("Really delete header color from config"),
+ if(want_to(((*cl)->var == &ps->vars[V_VIEW_HDR_COLORS]
+ ? _("Really delete header color from config")
+ : _("Really delete index token color from config")),
'y', 'n', NO_HELP, WT_NORM) != 'y'){
cmd_cancelled("Delete");
return(rv);
@@ -2055,19 +2169,22 @@ color_setting_tool(struct pine *ps, int cmd, CONF_S **cl, unsigned int flags)
another = 0;
/* reset current line */
if(end && end->next && end->next->next &&
- end->next->next->var == &ps->vars[V_VIEW_HDR_COLORS]){
+ end->next->next->var == &ps->vars[(*cl)->var == &ps->vars[V_VIEW_HDR_COLORS]
+ ? V_VIEW_HDR_COLORS : V_INDEX_TOKEN_COLORS]){
*cl = end->next->next; /* next Header Color */
another++;
}
else if(beg && beg->prev &&
- beg->prev->var == &ps->vars[V_VIEW_HDR_COLORS]){
+ beg->prev->var == &ps->vars[(*cl)->var == &ps->vars[V_VIEW_HDR_COLORS]
+ ? V_VIEW_HDR_COLORS : V_INDEX_TOKEN_COLORS]){
*cl = beg->prev; /* prev Header Color */
another++;
}
/* adjust SPEC_COLOR_S index (varmem) values */
for(ctmp = end; ctmp; ctmp = next_confline(ctmp))
- if(ctmp->var == &ps->vars[V_VIEW_HDR_COLORS])
+ if(ctmp->var == &ps->vars[(*cl)->var == &ps->vars[V_VIEW_HDR_COLORS]
+ ? V_VIEW_HDR_COLORS : V_INDEX_TOKEN_COLORS])
ctmp->varmem = CFC_ICUST_DEC(ctmp);
/*
@@ -2099,7 +2216,8 @@ color_setting_tool(struct pine *ps, int cmd, CONF_S **cl, unsigned int flags)
end->flags = CF_NOSELECT;
end->help = NO_HELP;
- end->value = cpystr(_(ADDHEADER_COMMENT));
+ end->value = cpystr((*cl)->var == &ps->vars[V_VIEW_HDR_COLORS]
+ ? _(ADDHEADER_COMMENT) : _(ADDINDEXTOKEN_COMMENT));
end->valoffset = COLOR_INDENT;
end->varnamep = NULL;
end->varmem = 0;
@@ -2557,7 +2675,7 @@ color_edit_screen(struct pine *ps, CONF_S **cl)
OPT_SCREEN_S screen, *saved_screen;
CONF_S *ctmp = NULL, *first_line = NULL, *ctmpb;
int rv, is_index = 0, is_hdrcolor = 0, indent = 12;
- int is_general = 0, is_keywordcol = 0;
+ int is_general = 0, is_keywordcol = 0, is_idxtokcol = 0;
char tmp[1200+1], name[1200], *p;
struct variable *vtmp, v;
int i, def;
@@ -2568,6 +2686,8 @@ color_edit_screen(struct pine *ps, CONF_S **cl)
vtmp = (*cl)->var;
if(vtmp == &ps->vars[V_VIEW_HDR_COLORS])
is_hdrcolor++;
+ else if(vtmp == &ps->vars[V_INDEX_TOKEN_COLORS])
+ is_idxtokcol++;
else if(vtmp == &ps->vars[V_KW_COLORS])
is_keywordcol++;
else if(color_holding_var(ps, vtmp)){
@@ -2619,6 +2739,24 @@ color_edit_screen(struct pine *ps, CONF_S **cl)
name[i] = toupper((unsigned char) name[i]);
}
}
+ else if(is_idxtokcol){
+ char **lval;
+
+ lval = LVAL(vtmp, ew);
+ hcolors = spec_colors_from_varlist(lval, 0);
+
+ for(hc = hcolors, i = 0; hc; hc = hc->next, i++)
+ if(CFC_ICUST(*cl) == i)
+ break;
+
+ if(hc){
+ snprintf(name, sizeof(name), "%s%s", TOKEN_WORD, hc->spec);
+ name[sizeof(name)-1] = '\0';
+ i = sizeof(TOKEN_WORD) - 1;
+ if(islower((unsigned char) name[i]))
+ name[i] = toupper((unsigned char) name[i]);
+ }
+ }
else if(is_keywordcol){
char **lval;
@@ -2664,7 +2802,7 @@ color_edit_screen(struct pine *ps, CONF_S **cl)
ctmp->flags |= (CF_STARTITEM | CF_NOSELECT);
ctmp->keymenu = &color_changing_keymenu;
- if(is_hdrcolor){
+ if(is_hdrcolor || is_idxtokcol){
char **apval;
def = !(hc && hc->fg && hc->fg[0] && hc->bg && hc->bg[0]);
diff --git a/alpine/colorconf.h b/alpine/colorconf.h
index 501e31e5..1be27871 100644
--- a/alpine/colorconf.h
+++ b/alpine/colorconf.h
@@ -24,8 +24,11 @@
#define HEADER_WORD "Header "
+#define TOKEN_WORD "Index Token "
#define KW_COLORS_HDR "KEYWORD COLORS"
+#define HDR_COLORS "HEADER COLORS"
#define ADDHEADER_COMMENT N_("[ Use the AddHeader command to add colored headers in MESSAGE TEXT screen ]")
+#define ADDINDEXTOKEN_COMMENT N_("[ Use the IndxHdr command to add colored tokens in MESSAGE INDEX screen ]")
#define EQ_COL 37
#define SPACE_BETWEEN_DOUBLEVARS 3
diff --git a/alpine/confscroll.c b/alpine/confscroll.c
index 0ada8a79..24829265 100644
--- a/alpine/confscroll.c
+++ b/alpine/confscroll.c
@@ -3373,7 +3373,8 @@ update_option_screen(struct pine *ps, OPT_SCREEN_S *screen, Pos *cursor_pos)
ptr = sample;
/* then the color sample */
- if(ctmp->var == &ps->vars[V_VIEW_HDR_COLORS]){
+ if(ctmp->var == &ps->vars[V_VIEW_HDR_COLORS]
+ || ctmp->var == &ps->vars[V_INDEX_TOKEN_COLORS]){
SPEC_COLOR_S *hc, *hcolors;
lastc = newc = NULL;
@@ -5611,6 +5612,7 @@ fix_side_effects(struct pine *ps, struct variable *var, int revert)
}
}
else if(var == &ps->vars[V_KW_COLORS] ||
+ var == &ps->vars[V_INDEX_TOKEN_COLORS] ||
var == &ps->vars[V_IND_PLUS_FORE_COLOR] ||
var == &ps->vars[V_IND_IMP_FORE_COLOR] ||
var == &ps->vars[V_IND_DEL_FORE_COLOR] ||
diff --git a/alpine/dispfilt.c b/alpine/dispfilt.c
index be46fe60..7c93938b 100644
--- a/alpine/dispfilt.c
+++ b/alpine/dispfilt.c
@@ -57,13 +57,15 @@ char *
dfilter(char *rawcmd, STORE_S *input_so, gf_io_t output_pc, FILTLIST_S *aux_filters)
{
char *status = NULL, *cmd, *resultf = NULL, *tmpfile = NULL;
- int key = 0;
+ int key = 0, silent = 0;
- if((cmd = expand_filter_tokens(rawcmd,NULL,&tmpfile,&resultf,NULL,&key,NULL)) != NULL){
+ if((cmd = expand_filter_tokens(rawcmd,NULL,&tmpfile,&resultf,NULL,&key,NULL, &silent)) != NULL){
suspend_busy_cue();
#ifndef _WINDOWS
- ps_global->mangled_screen = 1;
- ClearScreen();
+ if(!silent){
+ ps_global->mangled_screen = 1;
+ ClearScreen();
+ }
fflush(stdout);
#endif
@@ -100,7 +102,8 @@ dfilter(char *rawcmd, STORE_S *input_so, gf_io_t output_pc, FILTLIST_S *aux_filt
/* prepare the terminal in case the filter uses it */
if(status == NULL){
if((filter_pipe = open_system_pipe(cmd, NULL, NULL,
- PIPE_USER | PIPE_RESET,
+ PIPE_USER | (silent ? PIPE_SILENT :
+ (F_ON(F_DISABLE_TERM_RESET_DISP, ps_global) ? 0 : PIPE_RESET)),
0, pipe_callback, NULL)) != NULL){
if(close_system_pipe(&filter_pipe, NULL, pipe_callback) == 0){
/* pull result out of tmp file */
@@ -131,7 +134,7 @@ dfilter(char *rawcmd, STORE_S *input_so, gf_io_t output_pc, FILTLIST_S *aux_filt
status = "Can't open display filter tmp file";
}
else if((status = gf_filter(cmd, key ? filter_session_key() : NULL,
- input_so, output_pc, aux_filters,
+ input_so, output_pc, aux_filters, silent,
F_ON(F_DISABLE_TERM_RESET_DISP, ps_global),
pipe_callback)) != NULL){
unsigned long ch;
@@ -151,7 +154,8 @@ dfilter(char *rawcmd, STORE_S *input_so, gf_io_t output_pc, FILTLIST_S *aux_filt
resume_busy_cue(0);
#ifndef _WINDOWS
- ClearScreen();
+ if(!silent)
+ ClearScreen();
#endif
fs_give((void **)&cmd);
}
@@ -166,7 +170,7 @@ dfilter(char *rawcmd, STORE_S *input_so, gf_io_t output_pc, FILTLIST_S *aux_filt
*/
char *
expand_filter_tokens(char *filter, ENVELOPE *env, char **tmpf, char **resultf,
- char **mtypef, int *key, int *hdrs)
+ char **mtypef, int *key, int *hdrs, int *silent)
{
char **array, **q;
char *bp, *cmd = NULL, *p = NULL,
@@ -313,6 +317,11 @@ expand_filter_tokens(char *filter, ENVELOPE *env, char **tmpf, char **resultf,
if(hdrs)
*hdrs = 1;
}
+ else if(!strcmp(*q, "_SILENT_")){
+ (*q)[0] = '\0';
+ if(silent)
+ *silent = 1;
+ }
}
/* count up required length */
diff --git a/alpine/dispfilt.h b/alpine/dispfilt.h
index bac20821..0b42010d 100644
--- a/alpine/dispfilt.h
+++ b/alpine/dispfilt.h
@@ -21,7 +21,7 @@
/* exported protoypes */
char *dfilter(char *, STORE_S *, gf_io_t, FILTLIST_S *);
char *dfilter_trigger(BODY *, char *, size_t);
-char *expand_filter_tokens(char *, ENVELOPE *, char **, char **, char **, int *, int *);
+char *expand_filter_tokens(char *, ENVELOPE *, char **, char **, char **, int *, int *, int *);
char *filter_session_key(void);
char *filter_data_file(int);
diff --git a/alpine/folder.c b/alpine/folder.c
index 02a73b71..31d2031e 100644
--- a/alpine/folder.c
+++ b/alpine/folder.c
@@ -78,7 +78,12 @@ or search for a folder name.
#define FLW_LIST 0x04 /* Allow for ListMode for subscribing */
#define FLW_UNSEEN 0x08 /* Add (unseen) */
-
+/* folder colors */
+#define CLR_UNSEEN 0x01 /* color folder with unseen/new messages */
+#define CLR_FOLDER 0x02 /* color a name of folder or directory */
+#define CLR_DIRECT 0x04 /* color a separator of a directory */
+#define CLR_FLDRLT 0x08 /* color of explanatory text in list scrn*/
+#define CLR_NORMAL 0x10 /* use normal color */
/*----------------------------------------------------------------------
The data needed to redraw the folders screen, including the case where the
@@ -174,7 +179,10 @@ int folder_list_write(gf_io_t, HANDLE_S **, CONTEXT_S *, int, char *, in
int folder_list_write_prefix(FOLDER_S *, int, gf_io_t);
int folder_list_write_middle(FOLDER_S *fp, CONTEXT_S *ctxt, gf_io_t pc, HANDLE_S *);
int folder_list_write_suffix(FOLDER_S *, int, gf_io_t);
-int color_monitored_unseen(FOLDER_S *, int);
+int color_monitored(FOLDER_S *, int, int);
+int color_test_for_folder(char *, char *);
+int color_write_for_folder(gf_io_t pc, int testtype);
+int use_color_for_folder(FOLDER_S *fp);
int folder_list_ith(int, CONTEXT_S *);
char *folder_list_center_space(char *, int);
HANDLE_S *folder_list_handle(FSTATE_S *, HANDLE_S *);
@@ -1616,8 +1624,10 @@ folder_list_text(struct pine *ps, FPROC_S *fp, gf_io_t pc, HANDLE_S **handlesp,
if(c_list->prev)
gf_puts("\n", pc); /* blank line */
+ color_write_for_folder(pc, CLR_FLDRLT);
gf_puts(repeat_char(cols, '-'), pc);
gf_puts("\n", pc);
+ color_write_for_folder(pc, CLR_NORMAL);
}
/* nickname or description */
@@ -1626,6 +1636,7 @@ folder_list_text(struct pine *ps, FPROC_S *fp, gf_io_t pc, HANDLE_S **handlesp,
|| F_ON(F_CMBND_SUBDIR_DISP, ps_global))){
char buf[6*MAX_SCREEN_COLS + 1];
+ color_write_for_folder(pc, CLR_FLDRLT);
if(cols < 40){
snprintf(buf, sizeof(buf), "%.*s", cols,
strsquish(tmp_20k_buf, SIZEOF_20KBUF,
@@ -1652,6 +1663,7 @@ folder_list_text(struct pine *ps, FPROC_S *fp, gf_io_t pc, HANDLE_S **handlesp,
gf_puts(buf, pc);
gf_puts("\n", pc);
+ color_write_for_folder(pc, CLR_NORMAL);
}
else if(c_list->label){
if(utf8_width(c_list->label) > ps_global->ttyo->screen_cols)
@@ -1661,9 +1673,11 @@ folder_list_text(struct pine *ps, FPROC_S *fp, gf_io_t pc, HANDLE_S **handlesp,
lbuf[sizeof(lbuf)-1] = '\0';
+ color_write_for_folder(pc, CLR_FLDRLT);
gf_puts(folder_list_center_space(lbuf, cols), pc);
gf_puts(lbuf, pc);
gf_puts("\n", pc);
+ color_write_for_folder(pc, CLR_NORMAL);
}
if(c_list->comment){
@@ -1674,9 +1688,11 @@ folder_list_text(struct pine *ps, FPROC_S *fp, gf_io_t pc, HANDLE_S **handlesp,
lbuf[sizeof(lbuf)-1] = '\0';
+ color_write_for_folder(pc, CLR_FLDRLT);
gf_puts(folder_list_center_space(lbuf, cols), pc);
gf_puts(lbuf, pc);
gf_puts("\n", pc);
+ color_write_for_folder(pc, CLR_NORMAL);
}
if(c_list->dir->desc){
@@ -1685,9 +1701,11 @@ folder_list_text(struct pine *ps, FPROC_S *fp, gf_io_t pc, HANDLE_S **handlesp,
strncpy(buf, strsquish(tmp_20k_buf,SIZEOF_20KBUF,c_list->dir->desc,cols),
sizeof(buf)-1);
buf[sizeof(buf)-1] = '\0';
+ color_write_for_folder(pc, CLR_FLDRLT);
gf_puts(folder_list_center_space(buf, cols), pc);
gf_puts(buf, pc);
gf_puts("\n", pc);
+ color_write_for_folder(pc, CLR_NORMAL);
}
if(c_list->use & CNTXT_ZOOM){
@@ -1704,18 +1722,23 @@ folder_list_text(struct pine *ps, FPROC_S *fp, gf_io_t pc, HANDLE_S **handlesp,
lbuf[sizeof(lbuf)-1] = '\0';
+ color_write_for_folder(pc, CLR_FLDRLT);
gf_puts(folder_list_center_space(lbuf, cols), pc);
gf_puts(lbuf, pc);
gf_puts("\n", pc);
+ color_write_for_folder(pc, CLR_NORMAL);
}
+ color_write_for_folder(pc, CLR_FLDRLT);
gf_puts(repeat_char(cols, '-'), pc);
gf_puts("\n\n", pc);
+ color_write_for_folder(pc, CLR_NORMAL);
}
if(shown){
/* Run thru list formatting as necessary */
if((ftotal = folder_total(FOLDERS(c_list))) != 0){
+ int use_color;
/* If previously selected, mark members of new list */
selected = selected_folders(c_list);
@@ -1732,6 +1755,7 @@ folder_list_text(struct pine *ps, FPROC_S *fp, gf_io_t pc, HANDLE_S **handlesp,
fcount++;
+ use_color = use_color_for_folder(f);
fname = folder_name_decoded((unsigned char *)FLDR_NAME(f));
width = utf8_width(fname ? (char *)fname : FLDR_NAME(f));
@@ -1740,7 +1764,7 @@ folder_list_text(struct pine *ps, FPROC_S *fp, gf_io_t pc, HANDLE_S **handlesp,
fs_give((void **)&fname);
if(f->isdir)
- width += (f->isfolder) ? 3 : 1;
+ width += (f->isfolder) ? (use_color ? 1 : 3) : (use_color ? 0 : 1);
if(NEWS_TEST(c_list) && (c_list->use & CNTXT_FINDALL))
/* assume listmode so we don't have to reformat */
@@ -1874,9 +1898,11 @@ folder_list_text(struct pine *ps, FPROC_S *fp, gf_io_t pc, HANDLE_S **handlesp,
lbuf[sizeof(lbuf)-1] = '\0';
+ color_write_for_folder(pc, CLR_FLDRLT);
gf_puts(folder_list_center_space(lbuf, cols), pc);
(void) folder_list_write(pc, handlesp, c_list, -1, lbuf,
(handlesp) ? FLW_LUNK : FLW_NONE);
+ color_write_for_folder(pc, CLR_NORMAL);
}
}
else if(fp->fs->combined_view
@@ -1891,9 +1917,11 @@ folder_list_text(struct pine *ps, FPROC_S *fp, gf_io_t pc, HANDLE_S **handlesp,
lbuf[sizeof(lbuf)-1] = '\0';
+ color_write_for_folder(pc, CLR_FLDRLT);
gf_puts(folder_list_center_space(lbuf, cols), pc);
(void) folder_list_write(pc, handlesp, c_list, -1, lbuf,
(handlesp) ? FLW_LUNK : FLW_NONE);
+ color_write_for_folder(pc, CLR_NORMAL);
}
gf_puts("\n", pc); /* blank line */
@@ -1940,17 +1968,24 @@ folder_list_write(gf_io_t pc, HANDLE_S **handlesp, CONTEXT_S *ctxt, int fnum, ch
if(h1){
/* color unseen? */
- if(color_monitored_unseen(fp, flags)){
+ if(color_monitored(fp, flags, CLR_UNSEEN)){
h1->color_unseen = 1;
if(h2)
h2->color_unseen = 1;
}
+ /* color folder? */
+ if(color_monitored(fp, flags, CLR_FOLDER)){
+ h1->color_folder = 1;
+ if(h2)
+ h2->color_folder = 1;
+ }
}
/* embed handle pointer */
- if(((h1 && h1->color_unseen) ?
- gf_puts(color_embed(ps_global->VAR_INCUNSEEN_FORE_COLOR,
- ps_global->VAR_INCUNSEEN_BACK_COLOR), pc) : 1)
+ if(((h1 && h1->color_unseen) ? color_write_for_folder(pc, CLR_UNSEEN)
+ : ((h1 && h1->color_folder)
+ ? color_write_for_folder(pc, fp->isfolder ? CLR_FOLDER : CLR_DIRECT)
+ : 1))
&& (h1 ? ((*pc)(TAG_EMBED) && (*pc)(TAG_HANDLE)
&& (*pc)(strlen(buf)) && gf_puts(buf, pc)) : 1)
&& (fp ? ((lprefix = folder_list_write_prefix(fp, flags, pc)) >= 0
@@ -1959,9 +1994,8 @@ folder_list_write(gf_io_t pc, HANDLE_S **handlesp, CONTEXT_S *ctxt, int fnum, ch
: (alt_name ? gf_puts(alt_name, pc) : 0))
&& (h1 ? ((*pc)(TAG_EMBED) && (*pc)(TAG_BOLDOFF)
&& (*pc)(TAG_EMBED) && (*pc)(TAG_INVOFF)) : 1)
- && ((h1 && h1->color_unseen) ?
- gf_puts(color_embed(ps_global->VAR_NORM_FORE_COLOR,
- ps_global->VAR_NORM_BACK_COLOR), pc) : 1)){
+ && ((h1 && (h1->color_unseen || h1->color_folder)) ?
+ color_write_for_folder(pc, CLR_NORMAL): 1)){
if(fp)
width = lprefix + lmiddle + lsuffix;
else if(alt_name)
@@ -2000,11 +2034,10 @@ folder_list_write_prefix(FOLDER_S *f, int flags, gf_io_t pc)
return(rv);
}
-
int
folder_list_write_middle(FOLDER_S *fp, CONTEXT_S *ctxt, gf_io_t pc, HANDLE_S *h2)
{
- int rv = -1;
+ int rv = -1, use_color;
char buf[256];
unsigned char *fname;
@@ -2017,18 +2050,23 @@ folder_list_write_middle(FOLDER_S *fp, CONTEXT_S *ctxt, gf_io_t pc, HANDLE_S *h2
return(rv);
fname = folder_name_decoded((unsigned char *)FLDR_NAME(fp));
+ use_color = use_color_for_folder(fp);
if(gf_puts(fname ? (char *)fname : FLDR_NAME(fp), pc)
&& (h2 ? ((*pc)(TAG_EMBED) && (*pc)(TAG_BOLDOFF) /* tie off handle 1 */
&& (*pc)(TAG_EMBED) && (*pc)(TAG_INVOFF)) : 1)
+ && ((use_color && fp->isdir && fp->isfolder)
+ ? color_write_for_folder(pc, CLR_DIRECT) : 1)
&& (h2 ? ((*pc)(TAG_EMBED) && (*pc)(TAG_HANDLE) /* start handle 2 */
&& (*pc)(strlen(buf)) && gf_puts(buf, pc)) : 1)
- && ((fp->isdir && fp->isfolder) ? (*pc)('[') : 1)
- && ((fp->isdir) ? (*pc)(ctxt->dir->delim) : 1)
- && ((fp->isdir && fp->isfolder) ? (*pc)(']') : 1)){
+ && use_color
+ ? (fp->isdir && fp->isfolder ? (*pc)(ctxt->dir->delim) : 1)
+ : (((fp->isdir && fp->isfolder) ? (*pc)('[') : 1)
+ && ((fp->isdir) ? (*pc)(ctxt->dir->delim) : 1)
+ && ((fp->isdir && fp->isfolder) ? (*pc)(']') : 1))){
rv = utf8_width(fname ? (char *)fname : FLDR_NAME(fp));
if(fp->isdir)
- rv += (fp->isfolder) ? 3 : 1;
+ rv += (fp->isfolder) ? (use_color ? 1 : 3) : (use_color ? 0 : 1);
}
if(fname)
@@ -2079,20 +2117,85 @@ folder_list_write_suffix(FOLDER_S *f, int flags, gf_io_t pc)
return(rv);
}
+int
+color_write_for_folder(gf_io_t pc, int testtype)
+{
+ int rv;
+ if(!pico_usingcolor())
+ return 1;
+ switch (testtype){
+ case CLR_UNSEEN:
+ rv = gf_puts(color_embed(ps_global->VAR_INCUNSEEN_FORE_COLOR,
+ ps_global->VAR_INCUNSEEN_BACK_COLOR), pc);
+ break;
+ case CLR_FOLDER:
+ rv = gf_puts(color_embed(ps_global->VAR_FOLDER_FORE_COLOR,
+ ps_global->VAR_FOLDER_BACK_COLOR ), pc);
+ break;
+ case CLR_FLDRLT:
+ rv = gf_puts(color_embed(ps_global->VAR_FOLDER_LIST_FORE_COLOR,
+ ps_global->VAR_FOLDER_LIST_BACK_COLOR ), pc);
+ break;
+ case CLR_DIRECT:
+ rv = gf_puts(color_embed(ps_global->VAR_DIRECTORY_FORE_COLOR,
+ ps_global->VAR_DIRECTORY_BACK_COLOR), pc);
+ break;
+ case CLR_NORMAL:
+ rv = gf_puts(color_embed(ps_global->VAR_NORM_FORE_COLOR,
+ ps_global->VAR_NORM_BACK_COLOR), pc);
+ break;
+ default:
+ rv = 0; /* fail */
+ break;
+ }
+ return rv;
+}
+
+
+int
+color_test_for_folder(char *color_fore, char *color_back)
+{
+ return pico_usingcolor()
+ && pico_is_good_color(color_fore)
+ && pico_is_good_color(color_back)
+ && (colorcmp(color_fore, ps_global->VAR_NORM_FORE_COLOR)
+ || colorcmp(color_back,
+ ps_global->VAR_NORM_BACK_COLOR)) ? 1 : 0;
+
+}
+
int
-color_monitored_unseen(FOLDER_S *f, int flags)
+use_color_for_folder(FOLDER_S *fp)
{
- return((flags & FLW_UNSEEN) && f && f->unseen_valid
+ int test1, test2;
+ if(fp->isdir)
+ test1 = color_test_for_folder(ps_global->VAR_DIRECTORY_FORE_COLOR,
+ ps_global->VAR_DIRECTORY_BACK_COLOR);
+ if(fp->isfolder)
+ test2 = color_test_for_folder(ps_global->VAR_FOLDER_FORE_COLOR,
+ ps_global->VAR_FOLDER_BACK_COLOR);
+ return (fp->isdir && fp->isfolder) ? test1 + test2
+ : (fp->isdir ? test1 : (fp->isfolder? test2 : 0));
+}
+
+
+int
+color_monitored(FOLDER_S *f, int flags, int testtype)
+{
+ int rv;
+ switch(testtype){
+ case CLR_UNSEEN: rv = (flags & FLW_UNSEEN) && f && f->unseen_valid
&& ((F_ON(F_INCOMING_CHECKING_RECENT, ps_global) && f->new > 0L)
|| (F_OFF(F_INCOMING_CHECKING_RECENT, ps_global) && f->unseen > 0L))
- && pico_usingcolor()
- && pico_is_good_color(ps_global->VAR_INCUNSEEN_FORE_COLOR)
- && pico_is_good_color(ps_global->VAR_INCUNSEEN_BACK_COLOR)
- && (colorcmp(ps_global->VAR_INCUNSEEN_FORE_COLOR,
- ps_global->VAR_NORM_FORE_COLOR)
- || colorcmp(ps_global->VAR_INCUNSEEN_BACK_COLOR,
- ps_global->VAR_NORM_BACK_COLOR)));
+ && color_test_for_folder(ps_global->VAR_INCUNSEEN_FORE_COLOR,
+ ps_global->VAR_INCUNSEEN_BACK_COLOR) ? 1 : 0;
+ break;
+ case CLR_FOLDER: rv = f ? use_color_for_folder(f) : 0;
+ break;
+ default: rv = 0;
+ }
+ return rv;
}
diff --git a/alpine/keymenu.c b/alpine/keymenu.c
index 6234a2ac..195ae73c 100644
--- a/alpine/keymenu.c
+++ b/alpine/keymenu.c
@@ -1155,7 +1155,7 @@ struct key color_pattern_keys[] =
HELP_MENU,
OTHER_MENU,
- NULL_MENU,
+ {"I", N_("IndxHdr"), {MC_ADDHEADER,1,{'i'}}, KS_NONE},
NULL_MENU,
NULL_MENU,
NULL_MENU,
@@ -2452,7 +2452,7 @@ struct key color_setting_keys[] =
HELP_MENU,
OTHER_MENU,
- NULL_MENU,
+ {"I", N_("IndxHdr"), {MC_ADDHEADER,1,{'i'}}, KS_NONE},
NULL_MENU,
NULL_MENU,
NULL_MENU,
@@ -2481,7 +2481,7 @@ struct key custom_color_setting_keys[] =
HELP_MENU,
OTHER_MENU,
- NULL_MENU,
+ {"I", N_("IndxHdr"), {MC_ADDHEADER,1,{'i'}}, KS_NONE},
NULL_MENU,
{"D", N_("DeleteHdr"), {MC_DELETE,1,{'d'}}, KS_NONE},
/* TRANSLATORS: shuffle headers (change the order of headers) */
@@ -2527,7 +2527,7 @@ struct key kw_color_setting_keys[] =
HELP_MENU,
OTHER_MENU,
- NULL_MENU,
+ {"I", N_("IndxHdr"), {MC_ADDHEADER,1,{'i'}}, KS_NONE},
NULL_MENU,
NULL_MENU,
NULL_MENU,
diff --git a/alpine/keymenu.h b/alpine/keymenu.h
index 3b603fca..0e1f7618 100644
--- a/alpine/keymenu.h
+++ b/alpine/keymenu.h
@@ -214,6 +214,7 @@ struct key_menu {
#define MC_CHK_RECENT 801
#define MC_DECRYPT 802
#define MC_QUOTA 803
+#define MC_ADDHEADER 804
/*
* Some standard Key/Command Bindings
diff --git a/alpine/reply.c b/alpine/reply.c
index ee90ebd0..f0a40651 100644
--- a/alpine/reply.c
+++ b/alpine/reply.c
@@ -931,8 +931,36 @@ confirm_role(long int rflags, ACTION_S **role)
int
reply_to_all_query(int *flagp)
{
- switch(want_to("Reply to all recipients",
- 'n', 'x', NO_HELP, WT_SEQ_SENSITIVE)){
+ char prompt[80];
+ ESCKEY_S ekey[4];
+ char cmd;
+
+ ekey[0].name = "Y";
+ ekey[0].ch = 'y';
+ ekey[0].rval = 'y';
+ ekey[0].label = N_("Yes");
+ ekey[1].name = "N";
+ ekey[1].ch = 'n';
+ ekey[1].rval = 'n';
+ ekey[1].label = N_("No");
+ ekey[2].name = "P";
+ ekey[2].ch = 'p';
+ ekey[2].rval = 'p';
+ ekey[3].ch = -1;
+
+ ps_global->preserve = F_ON(F_PRESERVE_ORIGINAL_FIELD, ps_global);
+
+
+loop:
+ ekey[2].label = ps_global->preserve ? N_("Not Preserve") : N_("Preserve");
+ snprintf(prompt, sizeof(prompt), _("Reply to all recipients%s"),
+ ps_global->preserve ? _(" (preserving fields)? ") : "? ");
+
+ prompt[sizeof(prompt)-1] = '\0';
+
+ switch(cmd = radio_buttons(prompt, -FOOTER_ROWS(ps_global), ekey,
+ 'n', 'x', h_preserve_field, RB_NORM)){
+
case 'x' :
return(-1);
@@ -943,6 +971,11 @@ reply_to_all_query(int *flagp)
case 'n' : /* clear reply-all bit */
(*flagp) &= ~RSF_FORCE_REPLY_ALL;
break;
+
+ case 'p' :
+ ps_global->preserve = !ps_global->preserve;
+ goto loop; /* ugly, but saves me a variable */
+ break;
}
return(0);
diff --git a/alpine/send.c b/alpine/send.c
index 3d670f02..852b611c 100644
--- a/alpine/send.c
+++ b/alpine/send.c
@@ -5223,7 +5223,7 @@ filter_message_text(char *fcmd, ENVELOPE *outgoing, struct mail_bodystruct *body
if(fcmd
&& (cmd=expand_filter_tokens(fcmd, outgoing, &tmpf, &resultf, &mtf,
- &key, &include_hdrs))){
+ &key, &include_hdrs, NULL))){
if(tmpf){
/*
* We need WRITE_TO_LOCALE here because the user is going to
@@ -5330,7 +5330,7 @@ filter_message_text(char *fcmd, ENVELOPE *outgoing, struct mail_bodystruct *body
}
else
errstr = gf_filter(cmd, key ? filter_session_key() : NULL,
- readthis_so, pc, NULL, 0,
+ readthis_so, pc, NULL, 0, 0,
pipe_callback);
if(our_tmpf_so)
diff --git a/autom4te.cache/output.1 b/autom4te.cache/output.1
index 71338f68..78d40523 100644
--- a/autom4te.cache/output.1
+++ b/autom4te.cache/output.1
@@ -1,9 +1,9 @@
@%:@! /bin/sh
-@%:@ From configure.ac Id: configure.ac 1266 2009-07-14 18:39:12Z hubert@u.washington.edu .
+@%:@ From configure.ac Id: configure.ac 1266 2013-02-07 18:39:12Z chappa@washington.edu .
@%:@ Guess values for system-dependent variables and create Makefiles.
-@%:@ Generated by GNU Autoconf 2.68 for alpine 2.10.
+@%:@ Generated by GNU Autoconf 2.68 for alpine 2.10.9.
@%:@
-@%:@ Report bugs to <alpine-contact@u.washington.edu>.
+@%:@ Report bugs to <chappa@washington.edu>.
@%:@
@%:@
@%:@ Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001,
@@ -240,10 +240,10 @@ fi
$as_echo "$0: be upgraded to zsh 4.3.4 or later."
else
$as_echo "$0: Please tell bug-autoconf@gnu.org and
-$0: alpine-contact@u.washington.edu about your system,
-$0: including any error possibly output before this
-$0: message. Then install a modern shell, or manually run
-$0: the script under such a shell if you do have one."
+$0: chappa@washington.edu about your system, including any
+$0: error possibly output before this message. Then install
+$0: a modern shell, or manually run the script under such a
+$0: shell if you do have one."
fi
exit 1
fi
@@ -710,9 +710,9 @@ MAKEFLAGS=
# Identity of this package.
PACKAGE_NAME='alpine'
PACKAGE_TARNAME='alpine'
-PACKAGE_VERSION='2.10'
-PACKAGE_STRING='alpine 2.10'
-PACKAGE_BUGREPORT='alpine-contact@u.washington.edu'
+PACKAGE_VERSION='2.10.9'
+PACKAGE_STRING='alpine 2.10.9'
+PACKAGE_BUGREPORT='chappa@washington.edu'
PACKAGE_URL=''
ac_unique_file="include/system.h"
@@ -1574,7 +1574,7 @@ if test "$ac_init_help" = "long"; then
# 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.
cat <<_ACEOF
-\`configure' configures alpine 2.10 to adapt to many kinds of systems.
+\`configure' configures alpine 2.10.9 to adapt to many kinds of systems.
Usage: $0 [OPTION]... [VAR=VALUE]...
@@ -1644,7 +1644,7 @@ fi
if test -n "$ac_init_help"; then
case $ac_init_help in
- short | recursive ) echo "Configuration of alpine 2.10:";;
+ short | recursive ) echo "Configuration of alpine 2.10.9:";;
esac
cat <<\_ACEOF
@@ -1863,7 +1863,7 @@ Some influential environment variables:
Use these variables to override the choices made by `configure' or to help
it to find libraries and programs with nonstandard names/locations.
-Report bugs to <alpine-contact@u.washington.edu>.
+Report bugs to <chappa@washington.edu>.
_ACEOF
ac_status=$?
fi
@@ -1926,7 +1926,7 @@ fi
test -n "$ac_init_help" && exit $ac_status
if $ac_init_version; then
cat <<\_ACEOF
-alpine configure 2.10
+alpine configure 2.10.9
generated by GNU Autoconf 2.68
Copyright (C) 2010 Free Software Foundation, Inc.
@@ -2271,9 +2271,9 @@ $as_echo "$as_me: WARNING: $2: see the Autoconf documentation" >&2;}
$as_echo "$as_me: WARNING: $2: section \"Present But Cannot Be Compiled\"" >&2;}
{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: proceeding with the compiler's result" >&5
$as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;}
-( $as_echo "## ---------------------------------------------- ##
-## Report this to alpine-contact@u.washington.edu ##
-## ---------------------------------------------- ##"
+( $as_echo "## ------------------------------------ ##
+## Report this to chappa@washington.edu ##
+## ------------------------------------ ##"
) | sed "s/^/$as_me: WARNING: /" >&2
;;
esac
@@ -2527,7 +2527,7 @@ cat >config.log <<_ACEOF
This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.
-It was created by alpine $as_me 2.10, which was
+It was created by alpine $as_me 2.10.9, which was
generated by GNU Autoconf 2.68. Invocation command line was
$ $0 $@
@@ -3348,7 +3348,7 @@ fi
# Define the identity of the package.
PACKAGE='alpine'
- VERSION='2.10'
+ VERSION='2.10.9'
cat >>confdefs.h <<_ACEOF
@@ -19735,7 +19735,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
# report actual input values of CONFIG_FILES etc. instead of their
# values after options handling.
ac_log="
-This file was extended by alpine $as_me 2.10, which was
+This file was extended by alpine $as_me 2.10.9, which was
generated by GNU Autoconf 2.68. Invocation command line was
CONFIG_FILES = $CONFIG_FILES
@@ -19795,13 +19795,13 @@ $config_headers
Configuration commands:
$config_commands
-Report bugs to <alpine-contact@u.washington.edu>."
+Report bugs to <chappa@washington.edu>."
_ACEOF
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
ac_cs_version="\\
-alpine config.status 2.10
+alpine config.status 2.10.9
configured by $0, generated by GNU Autoconf 2.68,
with options \\"\$ac_cs_config\\"
diff --git a/autom4te.cache/output.2 b/autom4te.cache/output.2
index 71338f68..78d40523 100644
--- a/autom4te.cache/output.2
+++ b/autom4te.cache/output.2
@@ -1,9 +1,9 @@
@%:@! /bin/sh
-@%:@ From configure.ac Id: configure.ac 1266 2009-07-14 18:39:12Z hubert@u.washington.edu .
+@%:@ From configure.ac Id: configure.ac 1266 2013-02-07 18:39:12Z chappa@washington.edu .
@%:@ Guess values for system-dependent variables and create Makefiles.
-@%:@ Generated by GNU Autoconf 2.68 for alpine 2.10.
+@%:@ Generated by GNU Autoconf 2.68 for alpine 2.10.9.
@%:@
-@%:@ Report bugs to <alpine-contact@u.washington.edu>.
+@%:@ Report bugs to <chappa@washington.edu>.
@%:@
@%:@
@%:@ Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001,
@@ -240,10 +240,10 @@ fi
$as_echo "$0: be upgraded to zsh 4.3.4 or later."
else
$as_echo "$0: Please tell bug-autoconf@gnu.org and
-$0: alpine-contact@u.washington.edu about your system,
-$0: including any error possibly output before this
-$0: message. Then install a modern shell, or manually run
-$0: the script under such a shell if you do have one."
+$0: chappa@washington.edu about your system, including any
+$0: error possibly output before this message. Then install
+$0: a modern shell, or manually run the script under such a
+$0: shell if you do have one."
fi
exit 1
fi
@@ -710,9 +710,9 @@ MAKEFLAGS=
# Identity of this package.
PACKAGE_NAME='alpine'
PACKAGE_TARNAME='alpine'
-PACKAGE_VERSION='2.10'
-PACKAGE_STRING='alpine 2.10'
-PACKAGE_BUGREPORT='alpine-contact@u.washington.edu'
+PACKAGE_VERSION='2.10.9'
+PACKAGE_STRING='alpine 2.10.9'
+PACKAGE_BUGREPORT='chappa@washington.edu'
PACKAGE_URL=''
ac_unique_file="include/system.h"
@@ -1574,7 +1574,7 @@ if test "$ac_init_help" = "long"; then
# 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.
cat <<_ACEOF
-\`configure' configures alpine 2.10 to adapt to many kinds of systems.
+\`configure' configures alpine 2.10.9 to adapt to many kinds of systems.
Usage: $0 [OPTION]... [VAR=VALUE]...
@@ -1644,7 +1644,7 @@ fi
if test -n "$ac_init_help"; then
case $ac_init_help in
- short | recursive ) echo "Configuration of alpine 2.10:";;
+ short | recursive ) echo "Configuration of alpine 2.10.9:";;
esac
cat <<\_ACEOF
@@ -1863,7 +1863,7 @@ Some influential environment variables:
Use these variables to override the choices made by `configure' or to help
it to find libraries and programs with nonstandard names/locations.
-Report bugs to <alpine-contact@u.washington.edu>.
+Report bugs to <chappa@washington.edu>.
_ACEOF
ac_status=$?
fi
@@ -1926,7 +1926,7 @@ fi
test -n "$ac_init_help" && exit $ac_status
if $ac_init_version; then
cat <<\_ACEOF
-alpine configure 2.10
+alpine configure 2.10.9
generated by GNU Autoconf 2.68
Copyright (C) 2010 Free Software Foundation, Inc.
@@ -2271,9 +2271,9 @@ $as_echo "$as_me: WARNING: $2: see the Autoconf documentation" >&2;}
$as_echo "$as_me: WARNING: $2: section \"Present But Cannot Be Compiled\"" >&2;}
{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: proceeding with the compiler's result" >&5
$as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;}
-( $as_echo "## ---------------------------------------------- ##
-## Report this to alpine-contact@u.washington.edu ##
-## ---------------------------------------------- ##"
+( $as_echo "## ------------------------------------ ##
+## Report this to chappa@washington.edu ##
+## ------------------------------------ ##"
) | sed "s/^/$as_me: WARNING: /" >&2
;;
esac
@@ -2527,7 +2527,7 @@ cat >config.log <<_ACEOF
This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.
-It was created by alpine $as_me 2.10, which was
+It was created by alpine $as_me 2.10.9, which was
generated by GNU Autoconf 2.68. Invocation command line was
$ $0 $@
@@ -3348,7 +3348,7 @@ fi
# Define the identity of the package.
PACKAGE='alpine'
- VERSION='2.10'
+ VERSION='2.10.9'
cat >>confdefs.h <<_ACEOF
@@ -19735,7 +19735,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
# report actual input values of CONFIG_FILES etc. instead of their
# values after options handling.
ac_log="
-This file was extended by alpine $as_me 2.10, which was
+This file was extended by alpine $as_me 2.10.9, which was
generated by GNU Autoconf 2.68. Invocation command line was
CONFIG_FILES = $CONFIG_FILES
@@ -19795,13 +19795,13 @@ $config_headers
Configuration commands:
$config_commands
-Report bugs to <alpine-contact@u.washington.edu>."
+Report bugs to <chappa@washington.edu>."
_ACEOF
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
ac_cs_version="\\
-alpine config.status 2.10
+alpine config.status 2.10.9
configured by $0, generated by GNU Autoconf 2.68,
with options \\"\$ac_cs_config\\"
diff --git a/autom4te.cache/requests b/autom4te.cache/requests
index fc87f7e4..fce51149 100644
--- a/autom4te.cache/requests
+++ b/autom4te.cache/requests
@@ -661,6 +661,271 @@
'_LT_LIBOBJ' => 1,
'AC_LIB_PROG_LD' => 1
}
+ ], 'Autom4te::Request' ),
+ bless( [
+ '3',
+ 1,
+ [
+ '/usr/share/autoconf'
+ ],
+ [
+ '/usr/share/autoconf/autoconf/autoconf.m4f',
+ '/usr/share/aclocal-1.11/amversion.m4',
+ '/usr/share/aclocal-1.11/auxdir.m4',
+ '/usr/share/aclocal-1.11/cond.m4',
+ '/usr/share/aclocal-1.11/depend.m4',
+ '/usr/share/aclocal-1.11/depout.m4',
+ '/usr/share/aclocal-1.11/init.m4',
+ '/usr/share/aclocal-1.11/install-sh.m4',
+ '/usr/share/aclocal-1.11/lead-dot.m4',
+ '/usr/share/aclocal-1.11/maintainer.m4',
+ '/usr/share/aclocal-1.11/make.m4',
+ '/usr/share/aclocal-1.11/missing.m4',
+ '/usr/share/aclocal-1.11/mkdirp.m4',
+ '/usr/share/aclocal-1.11/options.m4',
+ '/usr/share/aclocal-1.11/runlog.m4',
+ '/usr/share/aclocal-1.11/sanity.m4',
+ '/usr/share/aclocal-1.11/silent.m4',
+ '/usr/share/aclocal-1.11/strip.m4',
+ '/usr/share/aclocal-1.11/substnot.m4',
+ '/usr/share/aclocal-1.11/tar.m4',
+ 'm4/acx_pthread.m4',
+ 'm4/codeset.m4',
+ 'm4/gettext.m4',
+ 'm4/glibc2.m4',
+ 'm4/glibc21.m4',
+ 'm4/iconv.m4',
+ 'm4/intdiv0.m4',
+ 'm4/intl.m4',
+ 'm4/intmax.m4',
+ 'm4/inttypes-pri.m4',
+ 'm4/inttypes_h.m4',
+ 'm4/lcmessage.m4',
+ 'm4/lib-ld.m4',
+ 'm4/lib-link.m4',
+ 'm4/lib-prefix.m4',
+ 'm4/libtool.m4',
+ 'm4/lock.m4',
+ 'm4/longdouble.m4',
+ 'm4/longlong.m4',
+ 'm4/ltoptions.m4',
+ 'm4/ltsugar.m4',
+ 'm4/ltversion.m4',
+ 'm4/lt~obsolete.m4',
+ 'm4/nls.m4',
+ 'm4/po.m4',
+ 'm4/printf-posix.m4',
+ 'm4/progtest.m4',
+ 'm4/size_max.m4',
+ 'm4/stdint_h.m4',
+ 'm4/uintmax_t.m4',
+ 'm4/ulonglong.m4',
+ 'm4/visibility.m4',
+ 'm4/wchar_t.m4',
+ 'm4/wint_t.m4',
+ 'm4/xsize.m4',
+ 'configure.ac'
+ ],
+ {
+ 'AM_ENABLE_STATIC' => 1,
+ 'AC_LIBTOOL_LANG_RC_CONFIG' => 1,
+ '_LT_AC_SHELL_INIT' => 1,
+ 'AC_DEFUN' => 1,
+ 'AC_PROG_LIBTOOL' => 1,
+ '_LT_AC_LANG_CXX_CONFIG' => 1,
+ 'AM_PROG_MKDIR_P' => 1,
+ 'gl_AC_HEADER_STDINT_H' => 1,
+ 'AM_AUTOMAKE_VERSION' => 1,
+ 'gl_SIZE_MAX' => 1,
+ 'AC_LIB_RPATH' => 1,
+ 'AM_SUBST_NOTMAKE' => 1,
+ 'AM_MISSING_PROG' => 1,
+ 'gt_PRINTF_POSIX' => 1,
+ 'AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH' => 1,
+ '_LT_AC_LANG_C_CONFIG' => 1,
+ 'AM_PROG_INSTALL_STRIP' => 1,
+ 'gl_LOCK_EARLY' => 1,
+ '_m4_warn' => 1,
+ 'AC_LIBTOOL_OBJDIR' => 1,
+ 'AM_SANITY_CHECK' => 1,
+ 'LTOBSOLETE_VERSION' => 1,
+ 'AC_LIBTOOL_LANG_GCJ_CONFIG' => 1,
+ 'AC_LIBTOOL_PROG_COMPILER_PIC' => 1,
+ 'LT_LIB_M' => 1,
+ '_LT_AC_CHECK_DLFCN' => 1,
+ 'AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE' => 1,
+ 'LTSUGAR_VERSION' => 1,
+ 'gl_AC_TYPE_LONG_LONG' => 1,
+ '_LT_PROG_LTMAIN' => 1,
+ '_AM_PROG_TAR' => 1,
+ 'AC_LIBTOOL_GCJ' => 1,
+ '_LT_AC_LANG_F77' => 1,
+ 'AC_LIBTOOL_CONFIG' => 1,
+ 'AC_LIB_ARG_WITH' => 1,
+ '_AM_SUBST_NOTMAKE' => 1,
+ '_AM_AUTOCONF_VERSION' => 1,
+ 'AM_DISABLE_SHARED' => 1,
+ '_LT_AC_LANG_CXX' => 1,
+ 'AM_PROG_LIBTOOL' => 1,
+ '_LT_AC_FILE_LTDLL_C' => 1,
+ 'AM_PROG_LD' => 1,
+ 'gt_INTL_MACOSX' => 1,
+ 'AM_ICONV_LINK' => 1,
+ 'AC_LIB_PREPARE_MULTILIB' => 1,
+ 'AU_DEFUN' => 1,
+ 'AC_PROG_NM' => 1,
+ 'AC_LIBTOOL_DLOPEN' => 1,
+ 'AC_PROG_LD' => 1,
+ 'AC_PROG_LD_GNU' => 1,
+ 'AC_ENABLE_FAST_INSTALL' => 1,
+ 'gt_TYPE_INTMAX_T' => 1,
+ 'AC_LIB_HAVE_LINKFLAGS' => 1,
+ 'AC_LIBTOOL_FC' => 1,
+ 'AM_ICONV_LINKFLAGS_BODY' => 1,
+ '_AM_SET_OPTION' => 1,
+ 'AC_LTDL_PREOPEN' => 1,
+ 'gl_LOCK_EARLY_BODY' => 1,
+ '_LT_LINKER_BOILERPLATE' => 1,
+ 'AC_LIBTOOL_LANG_CXX_CONFIG' => 1,
+ 'AC_LIBTOOL_PROG_CC_C_O' => 1,
+ 'AC_LIB_PREFIX' => 1,
+ 'gt_TYPE_LONGDOUBLE' => 1,
+ 'LT_SUPPORTED_TAG' => 1,
+ 'AM_OUTPUT_DEPENDENCY_COMMANDS' => 1,
+ 'LT_PROG_RC' => 1,
+ 'AC_DEFUN_ONCE' => 1,
+ '_LT_AC_LANG_GCJ' => 1,
+ 'AC_' => 1,
+ 'AC_LTDL_OBJDIR' => 1,
+ '_LT_PATH_TOOL_PREFIX' => 1,
+ 'gt_INTDIV0' => 1,
+ 'AC_LIBTOOL_RC' => 1,
+ 'AM_ICONV' => 1,
+ '_LT_AC_PROG_ECHO_BACKSLASH' => 1,
+ 'AC_DISABLE_FAST_INSTALL' => 1,
+ 'AM_SILENT_RULES' => 1,
+ '_LT_AC_TRY_DLOPEN_SELF' => 1,
+ '_LT_AC_SYS_LIBPATH_AIX' => 1,
+ 'include' => 1,
+ 'LT_AC_PROG_SED' => 1,
+ 'AM_ENABLE_SHARED' => 1,
+ 'gl_AC_TYPE_UNSIGNED_LONG_LONG' => 1,
+ 'AC_LIB_APPENDTOVAR' => 1,
+ 'AM_GNU_GETTEXT' => 1,
+ '_LT_AC_LANG_GCJ_CONFIG' => 1,
+ 'AC_ENABLE_SHARED' => 1,
+ 'AM_POSTPROCESS_PO_MAKEFILE' => 1,
+ 'AC_LIB_WITH_FINAL_PREFIX' => 1,
+ 'gt_TYPE_WINT_T' => 1,
+ 'AC_LIBTOOL_SYS_HARD_LINK_LOCKS' => 1,
+ 'AC_ENABLE_STATIC' => 1,
+ '_LT_AC_TAGVAR' => 1,
+ 'AC_LIBTOOL_LANG_F77_CONFIG' => 1,
+ 'AM_CONDITIONAL' => 1,
+ 'AM_LANGINFO_CODESET' => 1,
+ 'gl_AC_HEADER_INTTYPES_H' => 1,
+ 'LTVERSION_VERSION' => 1,
+ 'AM_PROG_INSTALL_SH' => 1,
+ 'm4_include' => 1,
+ 'AC_PROG_EGREP' => 1,
+ '_AC_AM_CONFIG_HEADER_HOOK' => 1,
+ 'AC_PATH_MAGIC' => 1,
+ 'PINEVAR' => 1,
+ 'gl_PREREQ_LOCK' => 1,
+ 'AM_MAKE_INCLUDE' => 1,
+ '_LT_AC_TAGCONFIG' => 1,
+ 'LT_CMD_MAX_LEN' => 1,
+ 'm4_pattern_forbid' => 1,
+ 'gt_INTTYPES_PRI' => 1,
+ 'AM_PO_SUBDIRS' => 1,
+ 'AC_LIB_PREPARE_PREFIX' => 1,
+ '_LT_LINKER_OPTION' => 1,
+ 'AC_LIBTOOL_COMPILER_OPTION' => 1,
+ 'AC_DISABLE_SHARED' => 1,
+ '_LT_COMPILER_BOILERPLATE' => 1,
+ 'AC_LIBTOOL_WIN32_DLL' => 1,
+ 'AC_LIBTOOL_SETUP' => 1,
+ 'AC_PROG_LD_RELOAD_FLAG' => 1,
+ 'AM_MISSING_HAS_RUN' => 1,
+ 'LT_LANG' => 1,
+ 'AC_TYPE_LONG_LONG_INT' => 1,
+ 'AM_GNU_GETTEXT_VERSION' => 1,
+ 'LT_OUTPUT' => 1,
+ 'AC_LIBTOOL_DLOPEN_SELF' => 1,
+ 'AC_LIB_PROG_LD_GNU' => 1,
+ 'AM_NLS' => 1,
+ 'AC_LIBTOOL_PROG_LD_SHLIBS' => 1,
+ 'AC_LIBTOOL_LINKER_OPTION' => 1,
+ 'gt_INTL_SUBDIR_CORE' => 1,
+ 'AC_LIBTOOL_CXX' => 1,
+ 'LT_AC_PROG_RC' => 1,
+ 'LT_INIT' => 1,
+ 'LT_SYS_DLOPEN_SELF' => 1,
+ 'LT_AC_PROG_GCJ' => 1,
+ 'AM_DISABLE_STATIC' => 1,
+ 'AM_DEP_TRACK' => 1,
+ '_AC_PROG_LIBTOOL' => 1,
+ '_AM_IF_OPTION' => 1,
+ 'AC_PATH_TOOL_PREFIX' => 1,
+ 'AC_LIBTOOL_F77' => 1,
+ 'm4_pattern_allow' => 1,
+ 'AM_PATH_PROG_WITH_TEST' => 1,
+ 'AM_SET_LEADING_DOT' => 1,
+ 'LT_AC_PROG_EGREP' => 1,
+ '_AM_DEPENDENCIES' => 1,
+ 'AC_LIBTOOL_LANG_C_CONFIG' => 1,
+ 'gt_CHECK_DECL' => 1,
+ 'LTOPTIONS_VERSION' => 1,
+ '_LT_AC_SYS_COMPILER' => 1,
+ 'AC_LIB_LINKFLAGS' => 1,
+ 'AM_PROG_NM' => 1,
+ 'AC_DEPLIBS_CHECK_METHOD' => 1,
+ 'AM_GNU_GETTEXT_NEED' => 1,
+ 'AM_SET_CURRENT_AUTOMAKE_VERSION' => 1,
+ 'jm_MAINTAINER_MODE' => 1,
+ 'AC_LTDL_ENABLE_INSTALL' => 1,
+ 'gl_XSIZE' => 1,
+ 'LT_PROG_GCJ' => 1,
+ 'AC_LIBTOOL_SYS_DYNAMIC_LINKER' => 1,
+ 'gt_GLIBC2' => 1,
+ 'AM_INIT_AUTOMAKE' => 1,
+ 'gl_AC_TYPE_UINTMAX_T' => 1,
+ 'gl_LOCK' => 1,
+ 'AM_INTL_SUBDIR' => 1,
+ 'AC_DISABLE_STATIC' => 1,
+ 'gl_VISIBILITY' => 1,
+ 'gt_TYPE_WCHAR_T' => 1,
+ 'PINEVAR_UNQUOTED' => 1,
+ 'LT_PATH_NM' => 1,
+ 'AM_MAINTAINER_MODE' => 1,
+ '_LT_AC_LOCK' => 1,
+ '_LT_AC_LANG_RC_CONFIG' => 1,
+ 'AC_LIBTOOL_POSTDEP_PREDEP' => 1,
+ 'AM_AUX_DIR_EXPAND' => 1,
+ 'gl_GLIBC21' => 1,
+ 'AC_LIB_LINKFLAGS_FROM_LIBS' => 1,
+ '_LT_AC_LANG_F77_CONFIG' => 1,
+ 'AC_LIBTOOL_PROG_COMPILER_NO_RTTI' => 1,
+ '_LT_COMPILER_OPTION' => 1,
+ '_AM_SET_OPTIONS' => 1,
+ '_AM_OUTPUT_DEPENDENCY_COMMANDS' => 1,
+ 'AM_RUN_LOG' => 1,
+ 'AC_LIBTOOL_PICMODE' => 1,
+ 'AC_LIBTOOL_SYS_OLD_ARCHIVE' => 1,
+ 'AC_LIB_LINKFLAGS_BODY' => 1,
+ 'LT_PATH_LD' => 1,
+ 'AC_CHECK_LIBM' => 1,
+ 'ACX_PTHREAD' => 1,
+ 'AC_LIBTOOL_SYS_LIB_STRIP' => 1,
+ '_AM_MANGLE_OPTION' => 1,
+ 'gt_LC_MESSAGES' => 1,
+ 'AC_TYPE_UNSIGNED_LONG_LONG_INT' => 1,
+ 'AC_LIBTOOL_SYS_MAX_CMD_LEN' => 1,
+ 'AM_SET_DEPDIR' => 1,
+ '_LT_CC_BASENAME' => 1,
+ 'gl_LOCK_BODY' => 1,
+ 'AC_LIB_PROG_LD' => 1
+ }
], 'Autom4te::Request' )
);
diff --git a/autom4te.cache/traces.1 b/autom4te.cache/traces.1
index 587c8cec..83697db9 100644
--- a/autom4te.cache/traces.1
+++ b/autom4te.cache/traces.1
@@ -12,1288 +12,1288 @@ m4trace:aclocal.m4:1002: -1- m4_include([m4/lt~obsolete.m4])
m4trace:aclocal.m4:1003: -1- m4_include([m4/nls.m4])
m4trace:aclocal.m4:1004: -1- m4_include([m4/po.m4])
m4trace:aclocal.m4:1005: -1- m4_include([m4/progtest.m4])
-m4trace:configure.ac:20: -3- m4_include([VERSION])
-m4trace:configure.ac:20: -1- AC_INIT([alpine], [2.10], [alpine-contact@u.washington.edu])
-m4trace:configure.ac:20: -1- m4_pattern_forbid([^_?A[CHUM]_])
-m4trace:configure.ac:20: -1- m4_pattern_forbid([_AC_])
-m4trace:configure.ac:20: -1- m4_pattern_forbid([^LIBOBJS$], [do not use LIBOBJS directly, use AC_LIBOBJ (see section `AC_LIBOBJ vs LIBOBJS'])
-m4trace:configure.ac:20: -1- m4_pattern_allow([^AS_FLAGS$])
-m4trace:configure.ac:20: -1- m4_pattern_forbid([^_?m4_])
-m4trace:configure.ac:20: -1- m4_pattern_forbid([^dnl$])
-m4trace:configure.ac:20: -1- m4_pattern_forbid([^_?AS_])
-m4trace:configure.ac:20: -1- AC_SUBST([SHELL])
-m4trace:configure.ac:20: -1- AC_SUBST_TRACE([SHELL])
-m4trace:configure.ac:20: -1- m4_pattern_allow([^SHELL$])
-m4trace:configure.ac:20: -1- AC_SUBST([PATH_SEPARATOR])
-m4trace:configure.ac:20: -1- AC_SUBST_TRACE([PATH_SEPARATOR])
-m4trace:configure.ac:20: -1- m4_pattern_allow([^PATH_SEPARATOR$])
-m4trace:configure.ac:20: -1- AC_SUBST([PACKAGE_NAME], [m4_ifdef([AC_PACKAGE_NAME], ['AC_PACKAGE_NAME'])])
-m4trace:configure.ac:20: -1- AC_SUBST_TRACE([PACKAGE_NAME])
-m4trace:configure.ac:20: -1- m4_pattern_allow([^PACKAGE_NAME$])
-m4trace:configure.ac:20: -1- AC_SUBST([PACKAGE_TARNAME], [m4_ifdef([AC_PACKAGE_TARNAME], ['AC_PACKAGE_TARNAME'])])
-m4trace:configure.ac:20: -1- AC_SUBST_TRACE([PACKAGE_TARNAME])
-m4trace:configure.ac:20: -1- m4_pattern_allow([^PACKAGE_TARNAME$])
-m4trace:configure.ac:20: -1- AC_SUBST([PACKAGE_VERSION], [m4_ifdef([AC_PACKAGE_VERSION], ['AC_PACKAGE_VERSION'])])
-m4trace:configure.ac:20: -1- AC_SUBST_TRACE([PACKAGE_VERSION])
-m4trace:configure.ac:20: -1- m4_pattern_allow([^PACKAGE_VERSION$])
-m4trace:configure.ac:20: -1- AC_SUBST([PACKAGE_STRING], [m4_ifdef([AC_PACKAGE_STRING], ['AC_PACKAGE_STRING'])])
-m4trace:configure.ac:20: -1- AC_SUBST_TRACE([PACKAGE_STRING])
-m4trace:configure.ac:20: -1- m4_pattern_allow([^PACKAGE_STRING$])
-m4trace:configure.ac:20: -1- AC_SUBST([PACKAGE_BUGREPORT], [m4_ifdef([AC_PACKAGE_BUGREPORT], ['AC_PACKAGE_BUGREPORT'])])
-m4trace:configure.ac:20: -1- AC_SUBST_TRACE([PACKAGE_BUGREPORT])
-m4trace:configure.ac:20: -1- m4_pattern_allow([^PACKAGE_BUGREPORT$])
-m4trace:configure.ac:20: -1- AC_SUBST([PACKAGE_URL], [m4_ifdef([AC_PACKAGE_URL], ['AC_PACKAGE_URL'])])
-m4trace:configure.ac:20: -1- AC_SUBST_TRACE([PACKAGE_URL])
-m4trace:configure.ac:20: -1- m4_pattern_allow([^PACKAGE_URL$])
-m4trace:configure.ac:20: -1- AC_SUBST([exec_prefix], [NONE])
-m4trace:configure.ac:20: -1- AC_SUBST_TRACE([exec_prefix])
-m4trace:configure.ac:20: -1- m4_pattern_allow([^exec_prefix$])
-m4trace:configure.ac:20: -1- AC_SUBST([prefix], [NONE])
-m4trace:configure.ac:20: -1- AC_SUBST_TRACE([prefix])
-m4trace:configure.ac:20: -1- m4_pattern_allow([^prefix$])
-m4trace:configure.ac:20: -1- AC_SUBST([program_transform_name], [s,x,x,])
-m4trace:configure.ac:20: -1- AC_SUBST_TRACE([program_transform_name])
-m4trace:configure.ac:20: -1- m4_pattern_allow([^program_transform_name$])
-m4trace:configure.ac:20: -1- AC_SUBST([bindir], ['${exec_prefix}/bin'])
-m4trace:configure.ac:20: -1- AC_SUBST_TRACE([bindir])
-m4trace:configure.ac:20: -1- m4_pattern_allow([^bindir$])
-m4trace:configure.ac:20: -1- AC_SUBST([sbindir], ['${exec_prefix}/sbin'])
-m4trace:configure.ac:20: -1- AC_SUBST_TRACE([sbindir])
-m4trace:configure.ac:20: -1- m4_pattern_allow([^sbindir$])
-m4trace:configure.ac:20: -1- AC_SUBST([libexecdir], ['${exec_prefix}/libexec'])
-m4trace:configure.ac:20: -1- AC_SUBST_TRACE([libexecdir])
-m4trace:configure.ac:20: -1- m4_pattern_allow([^libexecdir$])
-m4trace:configure.ac:20: -1- AC_SUBST([datarootdir], ['${prefix}/share'])
-m4trace:configure.ac:20: -1- AC_SUBST_TRACE([datarootdir])
-m4trace:configure.ac:20: -1- m4_pattern_allow([^datarootdir$])
-m4trace:configure.ac:20: -1- AC_SUBST([datadir], ['${datarootdir}'])
-m4trace:configure.ac:20: -1- AC_SUBST_TRACE([datadir])
-m4trace:configure.ac:20: -1- m4_pattern_allow([^datadir$])
-m4trace:configure.ac:20: -1- AC_SUBST([sysconfdir], ['${prefix}/etc'])
-m4trace:configure.ac:20: -1- AC_SUBST_TRACE([sysconfdir])
-m4trace:configure.ac:20: -1- m4_pattern_allow([^sysconfdir$])
-m4trace:configure.ac:20: -1- AC_SUBST([sharedstatedir], ['${prefix}/com'])
-m4trace:configure.ac:20: -1- AC_SUBST_TRACE([sharedstatedir])
-m4trace:configure.ac:20: -1- m4_pattern_allow([^sharedstatedir$])
-m4trace:configure.ac:20: -1- AC_SUBST([localstatedir], ['${prefix}/var'])
-m4trace:configure.ac:20: -1- AC_SUBST_TRACE([localstatedir])
-m4trace:configure.ac:20: -1- m4_pattern_allow([^localstatedir$])
-m4trace:configure.ac:20: -1- AC_SUBST([includedir], ['${prefix}/include'])
-m4trace:configure.ac:20: -1- AC_SUBST_TRACE([includedir])
-m4trace:configure.ac:20: -1- m4_pattern_allow([^includedir$])
-m4trace:configure.ac:20: -1- AC_SUBST([oldincludedir], ['/usr/include'])
-m4trace:configure.ac:20: -1- AC_SUBST_TRACE([oldincludedir])
-m4trace:configure.ac:20: -1- m4_pattern_allow([^oldincludedir$])
-m4trace:configure.ac:20: -1- AC_SUBST([docdir], [m4_ifset([AC_PACKAGE_TARNAME],
+m4trace:configure.ac:21: -3- m4_include([VERSION])
+m4trace:configure.ac:21: -1- AC_INIT([alpine], [2.10.9], [chappa@washington.edu])
+m4trace:configure.ac:21: -1- m4_pattern_forbid([^_?A[CHUM]_])
+m4trace:configure.ac:21: -1- m4_pattern_forbid([_AC_])
+m4trace:configure.ac:21: -1- m4_pattern_forbid([^LIBOBJS$], [do not use LIBOBJS directly, use AC_LIBOBJ (see section `AC_LIBOBJ vs LIBOBJS'])
+m4trace:configure.ac:21: -1- m4_pattern_allow([^AS_FLAGS$])
+m4trace:configure.ac:21: -1- m4_pattern_forbid([^_?m4_])
+m4trace:configure.ac:21: -1- m4_pattern_forbid([^dnl$])
+m4trace:configure.ac:21: -1- m4_pattern_forbid([^_?AS_])
+m4trace:configure.ac:21: -1- AC_SUBST([SHELL])
+m4trace:configure.ac:21: -1- AC_SUBST_TRACE([SHELL])
+m4trace:configure.ac:21: -1- m4_pattern_allow([^SHELL$])
+m4trace:configure.ac:21: -1- AC_SUBST([PATH_SEPARATOR])
+m4trace:configure.ac:21: -1- AC_SUBST_TRACE([PATH_SEPARATOR])
+m4trace:configure.ac:21: -1- m4_pattern_allow([^PATH_SEPARATOR$])
+m4trace:configure.ac:21: -1- AC_SUBST([PACKAGE_NAME], [m4_ifdef([AC_PACKAGE_NAME], ['AC_PACKAGE_NAME'])])
+m4trace:configure.ac:21: -1- AC_SUBST_TRACE([PACKAGE_NAME])
+m4trace:configure.ac:21: -1- m4_pattern_allow([^PACKAGE_NAME$])
+m4trace:configure.ac:21: -1- AC_SUBST([PACKAGE_TARNAME], [m4_ifdef([AC_PACKAGE_TARNAME], ['AC_PACKAGE_TARNAME'])])
+m4trace:configure.ac:21: -1- AC_SUBST_TRACE([PACKAGE_TARNAME])
+m4trace:configure.ac:21: -1- m4_pattern_allow([^PACKAGE_TARNAME$])
+m4trace:configure.ac:21: -1- AC_SUBST([PACKAGE_VERSION], [m4_ifdef([AC_PACKAGE_VERSION], ['AC_PACKAGE_VERSION'])])
+m4trace:configure.ac:21: -1- AC_SUBST_TRACE([PACKAGE_VERSION])
+m4trace:configure.ac:21: -1- m4_pattern_allow([^PACKAGE_VERSION$])
+m4trace:configure.ac:21: -1- AC_SUBST([PACKAGE_STRING], [m4_ifdef([AC_PACKAGE_STRING], ['AC_PACKAGE_STRING'])])
+m4trace:configure.ac:21: -1- AC_SUBST_TRACE([PACKAGE_STRING])
+m4trace:configure.ac:21: -1- m4_pattern_allow([^PACKAGE_STRING$])
+m4trace:configure.ac:21: -1- AC_SUBST([PACKAGE_BUGREPORT], [m4_ifdef([AC_PACKAGE_BUGREPORT], ['AC_PACKAGE_BUGREPORT'])])
+m4trace:configure.ac:21: -1- AC_SUBST_TRACE([PACKAGE_BUGREPORT])
+m4trace:configure.ac:21: -1- m4_pattern_allow([^PACKAGE_BUGREPORT$])
+m4trace:configure.ac:21: -1- AC_SUBST([PACKAGE_URL], [m4_ifdef([AC_PACKAGE_URL], ['AC_PACKAGE_URL'])])
+m4trace:configure.ac:21: -1- AC_SUBST_TRACE([PACKAGE_URL])
+m4trace:configure.ac:21: -1- m4_pattern_allow([^PACKAGE_URL$])
+m4trace:configure.ac:21: -1- AC_SUBST([exec_prefix], [NONE])
+m4trace:configure.ac:21: -1- AC_SUBST_TRACE([exec_prefix])
+m4trace:configure.ac:21: -1- m4_pattern_allow([^exec_prefix$])
+m4trace:configure.ac:21: -1- AC_SUBST([prefix], [NONE])
+m4trace:configure.ac:21: -1- AC_SUBST_TRACE([prefix])
+m4trace:configure.ac:21: -1- m4_pattern_allow([^prefix$])
+m4trace:configure.ac:21: -1- AC_SUBST([program_transform_name], [s,x,x,])
+m4trace:configure.ac:21: -1- AC_SUBST_TRACE([program_transform_name])
+m4trace:configure.ac:21: -1- m4_pattern_allow([^program_transform_name$])
+m4trace:configure.ac:21: -1- AC_SUBST([bindir], ['${exec_prefix}/bin'])
+m4trace:configure.ac:21: -1- AC_SUBST_TRACE([bindir])
+m4trace:configure.ac:21: -1- m4_pattern_allow([^bindir$])
+m4trace:configure.ac:21: -1- AC_SUBST([sbindir], ['${exec_prefix}/sbin'])
+m4trace:configure.ac:21: -1- AC_SUBST_TRACE([sbindir])
+m4trace:configure.ac:21: -1- m4_pattern_allow([^sbindir$])
+m4trace:configure.ac:21: -1- AC_SUBST([libexecdir], ['${exec_prefix}/libexec'])
+m4trace:configure.ac:21: -1- AC_SUBST_TRACE([libexecdir])
+m4trace:configure.ac:21: -1- m4_pattern_allow([^libexecdir$])
+m4trace:configure.ac:21: -1- AC_SUBST([datarootdir], ['${prefix}/share'])
+m4trace:configure.ac:21: -1- AC_SUBST_TRACE([datarootdir])
+m4trace:configure.ac:21: -1- m4_pattern_allow([^datarootdir$])
+m4trace:configure.ac:21: -1- AC_SUBST([datadir], ['${datarootdir}'])
+m4trace:configure.ac:21: -1- AC_SUBST_TRACE([datadir])
+m4trace:configure.ac:21: -1- m4_pattern_allow([^datadir$])
+m4trace:configure.ac:21: -1- AC_SUBST([sysconfdir], ['${prefix}/etc'])
+m4trace:configure.ac:21: -1- AC_SUBST_TRACE([sysconfdir])
+m4trace:configure.ac:21: -1- m4_pattern_allow([^sysconfdir$])
+m4trace:configure.ac:21: -1- AC_SUBST([sharedstatedir], ['${prefix}/com'])
+m4trace:configure.ac:21: -1- AC_SUBST_TRACE([sharedstatedir])
+m4trace:configure.ac:21: -1- m4_pattern_allow([^sharedstatedir$])
+m4trace:configure.ac:21: -1- AC_SUBST([localstatedir], ['${prefix}/var'])
+m4trace:configure.ac:21: -1- AC_SUBST_TRACE([localstatedir])
+m4trace:configure.ac:21: -1- m4_pattern_allow([^localstatedir$])
+m4trace:configure.ac:21: -1- AC_SUBST([includedir], ['${prefix}/include'])
+m4trace:configure.ac:21: -1- AC_SUBST_TRACE([includedir])
+m4trace:configure.ac:21: -1- m4_pattern_allow([^includedir$])
+m4trace:configure.ac:21: -1- AC_SUBST([oldincludedir], ['/usr/include'])
+m4trace:configure.ac:21: -1- AC_SUBST_TRACE([oldincludedir])
+m4trace:configure.ac:21: -1- m4_pattern_allow([^oldincludedir$])
+m4trace:configure.ac:21: -1- AC_SUBST([docdir], [m4_ifset([AC_PACKAGE_TARNAME],
['${datarootdir}/doc/${PACKAGE_TARNAME}'],
['${datarootdir}/doc/${PACKAGE}'])])
-m4trace:configure.ac:20: -1- AC_SUBST_TRACE([docdir])
-m4trace:configure.ac:20: -1- m4_pattern_allow([^docdir$])
-m4trace:configure.ac:20: -1- AC_SUBST([infodir], ['${datarootdir}/info'])
-m4trace:configure.ac:20: -1- AC_SUBST_TRACE([infodir])
-m4trace:configure.ac:20: -1- m4_pattern_allow([^infodir$])
-m4trace:configure.ac:20: -1- AC_SUBST([htmldir], ['${docdir}'])
-m4trace:configure.ac:20: -1- AC_SUBST_TRACE([htmldir])
-m4trace:configure.ac:20: -1- m4_pattern_allow([^htmldir$])
-m4trace:configure.ac:20: -1- AC_SUBST([dvidir], ['${docdir}'])
-m4trace:configure.ac:20: -1- AC_SUBST_TRACE([dvidir])
-m4trace:configure.ac:20: -1- m4_pattern_allow([^dvidir$])
-m4trace:configure.ac:20: -1- AC_SUBST([pdfdir], ['${docdir}'])
-m4trace:configure.ac:20: -1- AC_SUBST_TRACE([pdfdir])
-m4trace:configure.ac:20: -1- m4_pattern_allow([^pdfdir$])
-m4trace:configure.ac:20: -1- AC_SUBST([psdir], ['${docdir}'])
-m4trace:configure.ac:20: -1- AC_SUBST_TRACE([psdir])
-m4trace:configure.ac:20: -1- m4_pattern_allow([^psdir$])
-m4trace:configure.ac:20: -1- AC_SUBST([libdir], ['${exec_prefix}/lib'])
-m4trace:configure.ac:20: -1- AC_SUBST_TRACE([libdir])
-m4trace:configure.ac:20: -1- m4_pattern_allow([^libdir$])
-m4trace:configure.ac:20: -1- AC_SUBST([localedir], ['${datarootdir}/locale'])
-m4trace:configure.ac:20: -1- AC_SUBST_TRACE([localedir])
-m4trace:configure.ac:20: -1- m4_pattern_allow([^localedir$])
-m4trace:configure.ac:20: -1- AC_SUBST([mandir], ['${datarootdir}/man'])
-m4trace:configure.ac:20: -1- AC_SUBST_TRACE([mandir])
-m4trace:configure.ac:20: -1- m4_pattern_allow([^mandir$])
-m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([PACKAGE_NAME])
-m4trace:configure.ac:20: -1- m4_pattern_allow([^PACKAGE_NAME$])
-m4trace:configure.ac:20: -1- AH_OUTPUT([PACKAGE_NAME], [/* Define to the full name of this package. */
+m4trace:configure.ac:21: -1- AC_SUBST_TRACE([docdir])
+m4trace:configure.ac:21: -1- m4_pattern_allow([^docdir$])
+m4trace:configure.ac:21: -1- AC_SUBST([infodir], ['${datarootdir}/info'])
+m4trace:configure.ac:21: -1- AC_SUBST_TRACE([infodir])
+m4trace:configure.ac:21: -1- m4_pattern_allow([^infodir$])
+m4trace:configure.ac:21: -1- AC_SUBST([htmldir], ['${docdir}'])
+m4trace:configure.ac:21: -1- AC_SUBST_TRACE([htmldir])
+m4trace:configure.ac:21: -1- m4_pattern_allow([^htmldir$])
+m4trace:configure.ac:21: -1- AC_SUBST([dvidir], ['${docdir}'])
+m4trace:configure.ac:21: -1- AC_SUBST_TRACE([dvidir])
+m4trace:configure.ac:21: -1- m4_pattern_allow([^dvidir$])
+m4trace:configure.ac:21: -1- AC_SUBST([pdfdir], ['${docdir}'])
+m4trace:configure.ac:21: -1- AC_SUBST_TRACE([pdfdir])
+m4trace:configure.ac:21: -1- m4_pattern_allow([^pdfdir$])
+m4trace:configure.ac:21: -1- AC_SUBST([psdir], ['${docdir}'])
+m4trace:configure.ac:21: -1- AC_SUBST_TRACE([psdir])
+m4trace:configure.ac:21: -1- m4_pattern_allow([^psdir$])
+m4trace:configure.ac:21: -1- AC_SUBST([libdir], ['${exec_prefix}/lib'])
+m4trace:configure.ac:21: -1- AC_SUBST_TRACE([libdir])
+m4trace:configure.ac:21: -1- m4_pattern_allow([^libdir$])
+m4trace:configure.ac:21: -1- AC_SUBST([localedir], ['${datarootdir}/locale'])
+m4trace:configure.ac:21: -1- AC_SUBST_TRACE([localedir])
+m4trace:configure.ac:21: -1- m4_pattern_allow([^localedir$])
+m4trace:configure.ac:21: -1- AC_SUBST([mandir], ['${datarootdir}/man'])
+m4trace:configure.ac:21: -1- AC_SUBST_TRACE([mandir])
+m4trace:configure.ac:21: -1- m4_pattern_allow([^mandir$])
+m4trace:configure.ac:21: -1- AC_DEFINE_TRACE_LITERAL([PACKAGE_NAME])
+m4trace:configure.ac:21: -1- m4_pattern_allow([^PACKAGE_NAME$])
+m4trace:configure.ac:21: -1- AH_OUTPUT([PACKAGE_NAME], [/* Define to the full name of this package. */
@%:@undef PACKAGE_NAME])
-m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([PACKAGE_TARNAME])
-m4trace:configure.ac:20: -1- m4_pattern_allow([^PACKAGE_TARNAME$])
-m4trace:configure.ac:20: -1- AH_OUTPUT([PACKAGE_TARNAME], [/* Define to the one symbol short name of this package. */
+m4trace:configure.ac:21: -1- AC_DEFINE_TRACE_LITERAL([PACKAGE_TARNAME])
+m4trace:configure.ac:21: -1- m4_pattern_allow([^PACKAGE_TARNAME$])
+m4trace:configure.ac:21: -1- AH_OUTPUT([PACKAGE_TARNAME], [/* Define to the one symbol short name of this package. */
@%:@undef PACKAGE_TARNAME])
-m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([PACKAGE_VERSION])
-m4trace:configure.ac:20: -1- m4_pattern_allow([^PACKAGE_VERSION$])
-m4trace:configure.ac:20: -1- AH_OUTPUT([PACKAGE_VERSION], [/* Define to the version of this package. */
+m4trace:configure.ac:21: -1- AC_DEFINE_TRACE_LITERAL([PACKAGE_VERSION])
+m4trace:configure.ac:21: -1- m4_pattern_allow([^PACKAGE_VERSION$])
+m4trace:configure.ac:21: -1- AH_OUTPUT([PACKAGE_VERSION], [/* Define to the version of this package. */
@%:@undef PACKAGE_VERSION])
-m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([PACKAGE_STRING])
-m4trace:configure.ac:20: -1- m4_pattern_allow([^PACKAGE_STRING$])
-m4trace:configure.ac:20: -1- AH_OUTPUT([PACKAGE_STRING], [/* Define to the full name and version of this package. */
+m4trace:configure.ac:21: -1- AC_DEFINE_TRACE_LITERAL([PACKAGE_STRING])
+m4trace:configure.ac:21: -1- m4_pattern_allow([^PACKAGE_STRING$])
+m4trace:configure.ac:21: -1- AH_OUTPUT([PACKAGE_STRING], [/* Define to the full name and version of this package. */
@%:@undef PACKAGE_STRING])
-m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([PACKAGE_BUGREPORT])
-m4trace:configure.ac:20: -1- m4_pattern_allow([^PACKAGE_BUGREPORT$])
-m4trace:configure.ac:20: -1- AH_OUTPUT([PACKAGE_BUGREPORT], [/* Define to the address where bug reports for this package should be sent. */
+m4trace:configure.ac:21: -1- AC_DEFINE_TRACE_LITERAL([PACKAGE_BUGREPORT])
+m4trace:configure.ac:21: -1- m4_pattern_allow([^PACKAGE_BUGREPORT$])
+m4trace:configure.ac:21: -1- AH_OUTPUT([PACKAGE_BUGREPORT], [/* Define to the address where bug reports for this package should be sent. */
@%:@undef PACKAGE_BUGREPORT])
-m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([PACKAGE_URL])
-m4trace:configure.ac:20: -1- m4_pattern_allow([^PACKAGE_URL$])
-m4trace:configure.ac:20: -1- AH_OUTPUT([PACKAGE_URL], [/* Define to the home page for this package. */
+m4trace:configure.ac:21: -1- AC_DEFINE_TRACE_LITERAL([PACKAGE_URL])
+m4trace:configure.ac:21: -1- m4_pattern_allow([^PACKAGE_URL$])
+m4trace:configure.ac:21: -1- AH_OUTPUT([PACKAGE_URL], [/* Define to the home page for this package. */
@%:@undef PACKAGE_URL])
-m4trace:configure.ac:20: -1- AC_SUBST([DEFS])
-m4trace:configure.ac:20: -1- AC_SUBST_TRACE([DEFS])
-m4trace:configure.ac:20: -1- m4_pattern_allow([^DEFS$])
-m4trace:configure.ac:20: -1- AC_SUBST([ECHO_C])
-m4trace:configure.ac:20: -1- AC_SUBST_TRACE([ECHO_C])
-m4trace:configure.ac:20: -1- m4_pattern_allow([^ECHO_C$])
-m4trace:configure.ac:20: -1- AC_SUBST([ECHO_N])
-m4trace:configure.ac:20: -1- AC_SUBST_TRACE([ECHO_N])
-m4trace:configure.ac:20: -1- m4_pattern_allow([^ECHO_N$])
-m4trace:configure.ac:20: -1- AC_SUBST([ECHO_T])
-m4trace:configure.ac:20: -1- AC_SUBST_TRACE([ECHO_T])
-m4trace:configure.ac:20: -1- m4_pattern_allow([^ECHO_T$])
-m4trace:configure.ac:20: -1- AC_SUBST([LIBS])
-m4trace:configure.ac:20: -1- AC_SUBST_TRACE([LIBS])
-m4trace:configure.ac:20: -1- m4_pattern_allow([^LIBS$])
-m4trace:configure.ac:20: -1- AC_SUBST([build_alias])
-m4trace:configure.ac:20: -1- AC_SUBST_TRACE([build_alias])
-m4trace:configure.ac:20: -1- m4_pattern_allow([^build_alias$])
-m4trace:configure.ac:20: -1- AC_SUBST([host_alias])
-m4trace:configure.ac:20: -1- AC_SUBST_TRACE([host_alias])
-m4trace:configure.ac:20: -1- m4_pattern_allow([^host_alias$])
-m4trace:configure.ac:20: -1- AC_SUBST([target_alias])
-m4trace:configure.ac:20: -1- AC_SUBST_TRACE([target_alias])
-m4trace:configure.ac:20: -1- m4_pattern_allow([^target_alias$])
-m4trace:configure.ac:23: -1- AC_CONFIG_HEADERS([include/config.h])
-m4trace:configure.ac:25: -1- AM_INIT_AUTOMAKE([foreign nostdinc])
-m4trace:configure.ac:25: -1- m4_pattern_allow([^AM_[A-Z]+FLAGS$])
-m4trace:configure.ac:25: -1- AM_AUTOMAKE_VERSION([1.11.1])
-m4trace:configure.ac:25: -1- AC_REQUIRE_AUX_FILE([install-sh])
-m4trace:configure.ac:25: -1- AC_SUBST([INSTALL_PROGRAM])
-m4trace:configure.ac:25: -1- AC_SUBST_TRACE([INSTALL_PROGRAM])
-m4trace:configure.ac:25: -1- m4_pattern_allow([^INSTALL_PROGRAM$])
-m4trace:configure.ac:25: -1- AC_SUBST([INSTALL_SCRIPT])
-m4trace:configure.ac:25: -1- AC_SUBST_TRACE([INSTALL_SCRIPT])
-m4trace:configure.ac:25: -1- m4_pattern_allow([^INSTALL_SCRIPT$])
-m4trace:configure.ac:25: -1- AC_SUBST([INSTALL_DATA])
-m4trace:configure.ac:25: -1- AC_SUBST_TRACE([INSTALL_DATA])
-m4trace:configure.ac:25: -1- m4_pattern_allow([^INSTALL_DATA$])
-m4trace:configure.ac:25: -1- AC_SUBST([am__isrc], [' -I$(srcdir)'])
-m4trace:configure.ac:25: -1- AC_SUBST_TRACE([am__isrc])
-m4trace:configure.ac:25: -1- m4_pattern_allow([^am__isrc$])
-m4trace:configure.ac:25: -1- _AM_SUBST_NOTMAKE([am__isrc])
-m4trace:configure.ac:25: -1- AC_SUBST([CYGPATH_W])
-m4trace:configure.ac:25: -1- AC_SUBST_TRACE([CYGPATH_W])
-m4trace:configure.ac:25: -1- m4_pattern_allow([^CYGPATH_W$])
-m4trace:configure.ac:25: -1- AC_SUBST([PACKAGE], ['AC_PACKAGE_TARNAME'])
-m4trace:configure.ac:25: -1- AC_SUBST_TRACE([PACKAGE])
-m4trace:configure.ac:25: -1- m4_pattern_allow([^PACKAGE$])
-m4trace:configure.ac:25: -1- AC_SUBST([VERSION], ['AC_PACKAGE_VERSION'])
-m4trace:configure.ac:25: -1- AC_SUBST_TRACE([VERSION])
-m4trace:configure.ac:25: -1- m4_pattern_allow([^VERSION$])
-m4trace:configure.ac:25: -1- AC_DEFINE_TRACE_LITERAL([PACKAGE])
-m4trace:configure.ac:25: -1- m4_pattern_allow([^PACKAGE$])
-m4trace:configure.ac:25: -1- AH_OUTPUT([PACKAGE], [/* Name of package */
+m4trace:configure.ac:21: -1- AC_SUBST([DEFS])
+m4trace:configure.ac:21: -1- AC_SUBST_TRACE([DEFS])
+m4trace:configure.ac:21: -1- m4_pattern_allow([^DEFS$])
+m4trace:configure.ac:21: -1- AC_SUBST([ECHO_C])
+m4trace:configure.ac:21: -1- AC_SUBST_TRACE([ECHO_C])
+m4trace:configure.ac:21: -1- m4_pattern_allow([^ECHO_C$])
+m4trace:configure.ac:21: -1- AC_SUBST([ECHO_N])
+m4trace:configure.ac:21: -1- AC_SUBST_TRACE([ECHO_N])
+m4trace:configure.ac:21: -1- m4_pattern_allow([^ECHO_N$])
+m4trace:configure.ac:21: -1- AC_SUBST([ECHO_T])
+m4trace:configure.ac:21: -1- AC_SUBST_TRACE([ECHO_T])
+m4trace:configure.ac:21: -1- m4_pattern_allow([^ECHO_T$])
+m4trace:configure.ac:21: -1- AC_SUBST([LIBS])
+m4trace:configure.ac:21: -1- AC_SUBST_TRACE([LIBS])
+m4trace:configure.ac:21: -1- m4_pattern_allow([^LIBS$])
+m4trace:configure.ac:21: -1- AC_SUBST([build_alias])
+m4trace:configure.ac:21: -1- AC_SUBST_TRACE([build_alias])
+m4trace:configure.ac:21: -1- m4_pattern_allow([^build_alias$])
+m4trace:configure.ac:21: -1- AC_SUBST([host_alias])
+m4trace:configure.ac:21: -1- AC_SUBST_TRACE([host_alias])
+m4trace:configure.ac:21: -1- m4_pattern_allow([^host_alias$])
+m4trace:configure.ac:21: -1- AC_SUBST([target_alias])
+m4trace:configure.ac:21: -1- AC_SUBST_TRACE([target_alias])
+m4trace:configure.ac:21: -1- m4_pattern_allow([^target_alias$])
+m4trace:configure.ac:24: -1- AC_CONFIG_HEADERS([include/config.h])
+m4trace:configure.ac:26: -1- AM_INIT_AUTOMAKE([foreign nostdinc])
+m4trace:configure.ac:26: -1- m4_pattern_allow([^AM_[A-Z]+FLAGS$])
+m4trace:configure.ac:26: -1- AM_AUTOMAKE_VERSION([1.11.1])
+m4trace:configure.ac:26: -1- AC_REQUIRE_AUX_FILE([install-sh])
+m4trace:configure.ac:26: -1- AC_SUBST([INSTALL_PROGRAM])
+m4trace:configure.ac:26: -1- AC_SUBST_TRACE([INSTALL_PROGRAM])
+m4trace:configure.ac:26: -1- m4_pattern_allow([^INSTALL_PROGRAM$])
+m4trace:configure.ac:26: -1- AC_SUBST([INSTALL_SCRIPT])
+m4trace:configure.ac:26: -1- AC_SUBST_TRACE([INSTALL_SCRIPT])
+m4trace:configure.ac:26: -1- m4_pattern_allow([^INSTALL_SCRIPT$])
+m4trace:configure.ac:26: -1- AC_SUBST([INSTALL_DATA])
+m4trace:configure.ac:26: -1- AC_SUBST_TRACE([INSTALL_DATA])
+m4trace:configure.ac:26: -1- m4_pattern_allow([^INSTALL_DATA$])
+m4trace:configure.ac:26: -1- AC_SUBST([am__isrc], [' -I$(srcdir)'])
+m4trace:configure.ac:26: -1- AC_SUBST_TRACE([am__isrc])
+m4trace:configure.ac:26: -1- m4_pattern_allow([^am__isrc$])
+m4trace:configure.ac:26: -1- _AM_SUBST_NOTMAKE([am__isrc])
+m4trace:configure.ac:26: -1- AC_SUBST([CYGPATH_W])
+m4trace:configure.ac:26: -1- AC_SUBST_TRACE([CYGPATH_W])
+m4trace:configure.ac:26: -1- m4_pattern_allow([^CYGPATH_W$])
+m4trace:configure.ac:26: -1- AC_SUBST([PACKAGE], ['AC_PACKAGE_TARNAME'])
+m4trace:configure.ac:26: -1- AC_SUBST_TRACE([PACKAGE])
+m4trace:configure.ac:26: -1- m4_pattern_allow([^PACKAGE$])
+m4trace:configure.ac:26: -1- AC_SUBST([VERSION], ['AC_PACKAGE_VERSION'])
+m4trace:configure.ac:26: -1- AC_SUBST_TRACE([VERSION])
+m4trace:configure.ac:26: -1- m4_pattern_allow([^VERSION$])
+m4trace:configure.ac:26: -1- AC_DEFINE_TRACE_LITERAL([PACKAGE])
+m4trace:configure.ac:26: -1- m4_pattern_allow([^PACKAGE$])
+m4trace:configure.ac:26: -1- AH_OUTPUT([PACKAGE], [/* Name of package */
@%:@undef PACKAGE])
-m4trace:configure.ac:25: -1- AC_DEFINE_TRACE_LITERAL([VERSION])
-m4trace:configure.ac:25: -1- m4_pattern_allow([^VERSION$])
-m4trace:configure.ac:25: -1- AH_OUTPUT([VERSION], [/* Version number of package */
+m4trace:configure.ac:26: -1- AC_DEFINE_TRACE_LITERAL([VERSION])
+m4trace:configure.ac:26: -1- m4_pattern_allow([^VERSION$])
+m4trace:configure.ac:26: -1- AH_OUTPUT([VERSION], [/* Version number of package */
@%:@undef VERSION])
-m4trace:configure.ac:25: -1- AC_REQUIRE_AUX_FILE([missing])
-m4trace:configure.ac:25: -1- AC_SUBST([ACLOCAL])
-m4trace:configure.ac:25: -1- AC_SUBST_TRACE([ACLOCAL])
-m4trace:configure.ac:25: -1- m4_pattern_allow([^ACLOCAL$])
-m4trace:configure.ac:25: -1- AC_SUBST([AUTOCONF])
-m4trace:configure.ac:25: -1- AC_SUBST_TRACE([AUTOCONF])
-m4trace:configure.ac:25: -1- m4_pattern_allow([^AUTOCONF$])
-m4trace:configure.ac:25: -1- AC_SUBST([AUTOMAKE])
-m4trace:configure.ac:25: -1- AC_SUBST_TRACE([AUTOMAKE])
-m4trace:configure.ac:25: -1- m4_pattern_allow([^AUTOMAKE$])
-m4trace:configure.ac:25: -1- AC_SUBST([AUTOHEADER])
-m4trace:configure.ac:25: -1- AC_SUBST_TRACE([AUTOHEADER])
-m4trace:configure.ac:25: -1- m4_pattern_allow([^AUTOHEADER$])
-m4trace:configure.ac:25: -1- AC_SUBST([MAKEINFO])
-m4trace:configure.ac:25: -1- AC_SUBST_TRACE([MAKEINFO])
-m4trace:configure.ac:25: -1- m4_pattern_allow([^MAKEINFO$])
-m4trace:configure.ac:25: -1- AC_SUBST([install_sh])
-m4trace:configure.ac:25: -1- AC_SUBST_TRACE([install_sh])
-m4trace:configure.ac:25: -1- m4_pattern_allow([^install_sh$])
-m4trace:configure.ac:25: -1- AC_SUBST([STRIP])
-m4trace:configure.ac:25: -1- AC_SUBST_TRACE([STRIP])
-m4trace:configure.ac:25: -1- m4_pattern_allow([^STRIP$])
-m4trace:configure.ac:25: -1- AC_SUBST([INSTALL_STRIP_PROGRAM])
-m4trace:configure.ac:25: -1- AC_SUBST_TRACE([INSTALL_STRIP_PROGRAM])
-m4trace:configure.ac:25: -1- m4_pattern_allow([^INSTALL_STRIP_PROGRAM$])
-m4trace:configure.ac:25: -1- AC_REQUIRE_AUX_FILE([install-sh])
-m4trace:configure.ac:25: -1- AC_SUBST([MKDIR_P])
-m4trace:configure.ac:25: -1- AC_SUBST_TRACE([MKDIR_P])
-m4trace:configure.ac:25: -1- m4_pattern_allow([^MKDIR_P$])
-m4trace:configure.ac:25: -1- AC_SUBST([mkdir_p], ["$MKDIR_P"])
-m4trace:configure.ac:25: -1- AC_SUBST_TRACE([mkdir_p])
-m4trace:configure.ac:25: -1- m4_pattern_allow([^mkdir_p$])
-m4trace:configure.ac:25: -1- AC_SUBST([AWK])
-m4trace:configure.ac:25: -1- AC_SUBST_TRACE([AWK])
-m4trace:configure.ac:25: -1- m4_pattern_allow([^AWK$])
-m4trace:configure.ac:25: -1- AC_SUBST([SET_MAKE])
-m4trace:configure.ac:25: -1- AC_SUBST_TRACE([SET_MAKE])
-m4trace:configure.ac:25: -1- m4_pattern_allow([^SET_MAKE$])
-m4trace:configure.ac:25: -1- AC_SUBST([am__leading_dot])
-m4trace:configure.ac:25: -1- AC_SUBST_TRACE([am__leading_dot])
-m4trace:configure.ac:25: -1- m4_pattern_allow([^am__leading_dot$])
-m4trace:configure.ac:25: -1- AC_SUBST([AMTAR])
-m4trace:configure.ac:25: -1- AC_SUBST_TRACE([AMTAR])
-m4trace:configure.ac:25: -1- m4_pattern_allow([^AMTAR$])
-m4trace:configure.ac:25: -1- AC_SUBST([am__tar])
-m4trace:configure.ac:25: -1- AC_SUBST_TRACE([am__tar])
-m4trace:configure.ac:25: -1- m4_pattern_allow([^am__tar$])
-m4trace:configure.ac:25: -1- AC_SUBST([am__untar])
-m4trace:configure.ac:25: -1- AC_SUBST_TRACE([am__untar])
-m4trace:configure.ac:25: -1- m4_pattern_allow([^am__untar$])
-m4trace:configure.ac:27: -1- AM_MAINTAINER_MODE
-m4trace:configure.ac:27: -1- AM_CONDITIONAL([MAINTAINER_MODE], [test $USE_MAINTAINER_MODE = yes])
-m4trace:configure.ac:27: -1- AC_SUBST([MAINTAINER_MODE_TRUE])
-m4trace:configure.ac:27: -1- AC_SUBST_TRACE([MAINTAINER_MODE_TRUE])
-m4trace:configure.ac:27: -1- m4_pattern_allow([^MAINTAINER_MODE_TRUE$])
-m4trace:configure.ac:27: -1- AC_SUBST([MAINTAINER_MODE_FALSE])
-m4trace:configure.ac:27: -1- AC_SUBST_TRACE([MAINTAINER_MODE_FALSE])
-m4trace:configure.ac:27: -1- m4_pattern_allow([^MAINTAINER_MODE_FALSE$])
-m4trace:configure.ac:27: -1- _AM_SUBST_NOTMAKE([MAINTAINER_MODE_TRUE])
-m4trace:configure.ac:27: -1- _AM_SUBST_NOTMAKE([MAINTAINER_MODE_FALSE])
-m4trace:configure.ac:27: -1- AC_SUBST([MAINT])
-m4trace:configure.ac:27: -1- AC_SUBST_TRACE([MAINT])
-m4trace:configure.ac:27: -1- m4_pattern_allow([^MAINT$])
-m4trace:configure.ac:29: -1- AC_CANONICAL_HOST
-m4trace:configure.ac:29: -1- AC_CANONICAL_BUILD
-m4trace:configure.ac:29: -1- AC_REQUIRE_AUX_FILE([config.sub])
-m4trace:configure.ac:29: -1- AC_REQUIRE_AUX_FILE([config.guess])
-m4trace:configure.ac:29: -1- AC_SUBST([build], [$ac_cv_build])
-m4trace:configure.ac:29: -1- AC_SUBST_TRACE([build])
-m4trace:configure.ac:29: -1- m4_pattern_allow([^build$])
-m4trace:configure.ac:29: -1- AC_SUBST([build_cpu], [$[1]])
-m4trace:configure.ac:29: -1- AC_SUBST_TRACE([build_cpu])
-m4trace:configure.ac:29: -1- m4_pattern_allow([^build_cpu$])
-m4trace:configure.ac:29: -1- AC_SUBST([build_vendor], [$[2]])
-m4trace:configure.ac:29: -1- AC_SUBST_TRACE([build_vendor])
-m4trace:configure.ac:29: -1- m4_pattern_allow([^build_vendor$])
-m4trace:configure.ac:29: -1- AC_SUBST([build_os])
-m4trace:configure.ac:29: -1- AC_SUBST_TRACE([build_os])
-m4trace:configure.ac:29: -1- m4_pattern_allow([^build_os$])
-m4trace:configure.ac:29: -1- AC_SUBST([host], [$ac_cv_host])
-m4trace:configure.ac:29: -1- AC_SUBST_TRACE([host])
-m4trace:configure.ac:29: -1- m4_pattern_allow([^host$])
-m4trace:configure.ac:29: -1- AC_SUBST([host_cpu], [$[1]])
-m4trace:configure.ac:29: -1- AC_SUBST_TRACE([host_cpu])
-m4trace:configure.ac:29: -1- m4_pattern_allow([^host_cpu$])
-m4trace:configure.ac:29: -1- AC_SUBST([host_vendor], [$[2]])
-m4trace:configure.ac:29: -1- AC_SUBST_TRACE([host_vendor])
-m4trace:configure.ac:29: -1- m4_pattern_allow([^host_vendor$])
-m4trace:configure.ac:29: -1- AC_SUBST([host_os])
-m4trace:configure.ac:29: -1- AC_SUBST_TRACE([host_os])
-m4trace:configure.ac:29: -1- m4_pattern_allow([^host_os$])
-m4trace:configure.ac:40: -1- AC_SUBST([CC])
-m4trace:configure.ac:40: -1- AC_SUBST_TRACE([CC])
-m4trace:configure.ac:40: -1- m4_pattern_allow([^CC$])
-m4trace:configure.ac:40: -1- AC_SUBST([CFLAGS])
-m4trace:configure.ac:40: -1- AC_SUBST_TRACE([CFLAGS])
-m4trace:configure.ac:40: -1- m4_pattern_allow([^CFLAGS$])
-m4trace:configure.ac:40: -1- AC_SUBST([LDFLAGS])
-m4trace:configure.ac:40: -1- AC_SUBST_TRACE([LDFLAGS])
-m4trace:configure.ac:40: -1- m4_pattern_allow([^LDFLAGS$])
-m4trace:configure.ac:40: -1- AC_SUBST([LIBS])
-m4trace:configure.ac:40: -1- AC_SUBST_TRACE([LIBS])
-m4trace:configure.ac:40: -1- m4_pattern_allow([^LIBS$])
-m4trace:configure.ac:40: -1- AC_SUBST([CPPFLAGS])
-m4trace:configure.ac:40: -1- AC_SUBST_TRACE([CPPFLAGS])
-m4trace:configure.ac:40: -1- m4_pattern_allow([^CPPFLAGS$])
-m4trace:configure.ac:40: -1- AC_SUBST([CC])
-m4trace:configure.ac:40: -1- AC_SUBST_TRACE([CC])
-m4trace:configure.ac:40: -1- m4_pattern_allow([^CC$])
-m4trace:configure.ac:40: -1- AC_SUBST([CC])
-m4trace:configure.ac:40: -1- AC_SUBST_TRACE([CC])
-m4trace:configure.ac:40: -1- m4_pattern_allow([^CC$])
-m4trace:configure.ac:40: -1- AC_SUBST([CC])
-m4trace:configure.ac:40: -1- AC_SUBST_TRACE([CC])
-m4trace:configure.ac:40: -1- m4_pattern_allow([^CC$])
-m4trace:configure.ac:40: -1- AC_SUBST([CC])
-m4trace:configure.ac:40: -1- AC_SUBST_TRACE([CC])
-m4trace:configure.ac:40: -1- m4_pattern_allow([^CC$])
-m4trace:configure.ac:40: -1- AC_SUBST([ac_ct_CC])
-m4trace:configure.ac:40: -1- AC_SUBST_TRACE([ac_ct_CC])
-m4trace:configure.ac:40: -1- m4_pattern_allow([^ac_ct_CC$])
-m4trace:configure.ac:40: -1- AC_SUBST([EXEEXT], [$ac_cv_exeext])
-m4trace:configure.ac:40: -1- AC_SUBST_TRACE([EXEEXT])
-m4trace:configure.ac:40: -1- m4_pattern_allow([^EXEEXT$])
-m4trace:configure.ac:40: -1- AC_SUBST([OBJEXT], [$ac_cv_objext])
-m4trace:configure.ac:40: -1- AC_SUBST_TRACE([OBJEXT])
-m4trace:configure.ac:40: -1- m4_pattern_allow([^OBJEXT$])
-m4trace:configure.ac:40: -1- AC_SUBST([DEPDIR], ["${am__leading_dot}deps"])
-m4trace:configure.ac:40: -1- AC_SUBST_TRACE([DEPDIR])
-m4trace:configure.ac:40: -1- m4_pattern_allow([^DEPDIR$])
-m4trace:configure.ac:40: -1- AC_SUBST([am__include])
-m4trace:configure.ac:40: -1- AC_SUBST_TRACE([am__include])
-m4trace:configure.ac:40: -1- m4_pattern_allow([^am__include$])
-m4trace:configure.ac:40: -1- AC_SUBST([am__quote])
-m4trace:configure.ac:40: -1- AC_SUBST_TRACE([am__quote])
-m4trace:configure.ac:40: -1- m4_pattern_allow([^am__quote$])
-m4trace:configure.ac:40: -1- AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno])
-m4trace:configure.ac:40: -1- AC_SUBST([AMDEP_TRUE])
-m4trace:configure.ac:40: -1- AC_SUBST_TRACE([AMDEP_TRUE])
-m4trace:configure.ac:40: -1- m4_pattern_allow([^AMDEP_TRUE$])
-m4trace:configure.ac:40: -1- AC_SUBST([AMDEP_FALSE])
-m4trace:configure.ac:40: -1- AC_SUBST_TRACE([AMDEP_FALSE])
-m4trace:configure.ac:40: -1- m4_pattern_allow([^AMDEP_FALSE$])
-m4trace:configure.ac:40: -1- _AM_SUBST_NOTMAKE([AMDEP_TRUE])
-m4trace:configure.ac:40: -1- _AM_SUBST_NOTMAKE([AMDEP_FALSE])
-m4trace:configure.ac:40: -1- AC_SUBST([AMDEPBACKSLASH])
-m4trace:configure.ac:40: -1- AC_SUBST_TRACE([AMDEPBACKSLASH])
-m4trace:configure.ac:40: -1- m4_pattern_allow([^AMDEPBACKSLASH$])
-m4trace:configure.ac:40: -1- _AM_SUBST_NOTMAKE([AMDEPBACKSLASH])
-m4trace:configure.ac:40: -1- AC_SUBST([CCDEPMODE], [depmode=$am_cv_CC_dependencies_compiler_type])
-m4trace:configure.ac:40: -1- AC_SUBST_TRACE([CCDEPMODE])
-m4trace:configure.ac:40: -1- m4_pattern_allow([^CCDEPMODE$])
-m4trace:configure.ac:40: -1- AM_CONDITIONAL([am__fastdepCC], [
+m4trace:configure.ac:26: -1- AC_REQUIRE_AUX_FILE([missing])
+m4trace:configure.ac:26: -1- AC_SUBST([ACLOCAL])
+m4trace:configure.ac:26: -1- AC_SUBST_TRACE([ACLOCAL])
+m4trace:configure.ac:26: -1- m4_pattern_allow([^ACLOCAL$])
+m4trace:configure.ac:26: -1- AC_SUBST([AUTOCONF])
+m4trace:configure.ac:26: -1- AC_SUBST_TRACE([AUTOCONF])
+m4trace:configure.ac:26: -1- m4_pattern_allow([^AUTOCONF$])
+m4trace:configure.ac:26: -1- AC_SUBST([AUTOMAKE])
+m4trace:configure.ac:26: -1- AC_SUBST_TRACE([AUTOMAKE])
+m4trace:configure.ac:26: -1- m4_pattern_allow([^AUTOMAKE$])
+m4trace:configure.ac:26: -1- AC_SUBST([AUTOHEADER])
+m4trace:configure.ac:26: -1- AC_SUBST_TRACE([AUTOHEADER])
+m4trace:configure.ac:26: -1- m4_pattern_allow([^AUTOHEADER$])
+m4trace:configure.ac:26: -1- AC_SUBST([MAKEINFO])
+m4trace:configure.ac:26: -1- AC_SUBST_TRACE([MAKEINFO])
+m4trace:configure.ac:26: -1- m4_pattern_allow([^MAKEINFO$])
+m4trace:configure.ac:26: -1- AC_SUBST([install_sh])
+m4trace:configure.ac:26: -1- AC_SUBST_TRACE([install_sh])
+m4trace:configure.ac:26: -1- m4_pattern_allow([^install_sh$])
+m4trace:configure.ac:26: -1- AC_SUBST([STRIP])
+m4trace:configure.ac:26: -1- AC_SUBST_TRACE([STRIP])
+m4trace:configure.ac:26: -1- m4_pattern_allow([^STRIP$])
+m4trace:configure.ac:26: -1- AC_SUBST([INSTALL_STRIP_PROGRAM])
+m4trace:configure.ac:26: -1- AC_SUBST_TRACE([INSTALL_STRIP_PROGRAM])
+m4trace:configure.ac:26: -1- m4_pattern_allow([^INSTALL_STRIP_PROGRAM$])
+m4trace:configure.ac:26: -1- AC_REQUIRE_AUX_FILE([install-sh])
+m4trace:configure.ac:26: -1- AC_SUBST([MKDIR_P])
+m4trace:configure.ac:26: -1- AC_SUBST_TRACE([MKDIR_P])
+m4trace:configure.ac:26: -1- m4_pattern_allow([^MKDIR_P$])
+m4trace:configure.ac:26: -1- AC_SUBST([mkdir_p], ["$MKDIR_P"])
+m4trace:configure.ac:26: -1- AC_SUBST_TRACE([mkdir_p])
+m4trace:configure.ac:26: -1- m4_pattern_allow([^mkdir_p$])
+m4trace:configure.ac:26: -1- AC_SUBST([AWK])
+m4trace:configure.ac:26: -1- AC_SUBST_TRACE([AWK])
+m4trace:configure.ac:26: -1- m4_pattern_allow([^AWK$])
+m4trace:configure.ac:26: -1- AC_SUBST([SET_MAKE])
+m4trace:configure.ac:26: -1- AC_SUBST_TRACE([SET_MAKE])
+m4trace:configure.ac:26: -1- m4_pattern_allow([^SET_MAKE$])
+m4trace:configure.ac:26: -1- AC_SUBST([am__leading_dot])
+m4trace:configure.ac:26: -1- AC_SUBST_TRACE([am__leading_dot])
+m4trace:configure.ac:26: -1- m4_pattern_allow([^am__leading_dot$])
+m4trace:configure.ac:26: -1- AC_SUBST([AMTAR])
+m4trace:configure.ac:26: -1- AC_SUBST_TRACE([AMTAR])
+m4trace:configure.ac:26: -1- m4_pattern_allow([^AMTAR$])
+m4trace:configure.ac:26: -1- AC_SUBST([am__tar])
+m4trace:configure.ac:26: -1- AC_SUBST_TRACE([am__tar])
+m4trace:configure.ac:26: -1- m4_pattern_allow([^am__tar$])
+m4trace:configure.ac:26: -1- AC_SUBST([am__untar])
+m4trace:configure.ac:26: -1- AC_SUBST_TRACE([am__untar])
+m4trace:configure.ac:26: -1- m4_pattern_allow([^am__untar$])
+m4trace:configure.ac:28: -1- AM_MAINTAINER_MODE
+m4trace:configure.ac:28: -1- AM_CONDITIONAL([MAINTAINER_MODE], [test $USE_MAINTAINER_MODE = yes])
+m4trace:configure.ac:28: -1- AC_SUBST([MAINTAINER_MODE_TRUE])
+m4trace:configure.ac:28: -1- AC_SUBST_TRACE([MAINTAINER_MODE_TRUE])
+m4trace:configure.ac:28: -1- m4_pattern_allow([^MAINTAINER_MODE_TRUE$])
+m4trace:configure.ac:28: -1- AC_SUBST([MAINTAINER_MODE_FALSE])
+m4trace:configure.ac:28: -1- AC_SUBST_TRACE([MAINTAINER_MODE_FALSE])
+m4trace:configure.ac:28: -1- m4_pattern_allow([^MAINTAINER_MODE_FALSE$])
+m4trace:configure.ac:28: -1- _AM_SUBST_NOTMAKE([MAINTAINER_MODE_TRUE])
+m4trace:configure.ac:28: -1- _AM_SUBST_NOTMAKE([MAINTAINER_MODE_FALSE])
+m4trace:configure.ac:28: -1- AC_SUBST([MAINT])
+m4trace:configure.ac:28: -1- AC_SUBST_TRACE([MAINT])
+m4trace:configure.ac:28: -1- m4_pattern_allow([^MAINT$])
+m4trace:configure.ac:30: -1- AC_CANONICAL_HOST
+m4trace:configure.ac:30: -1- AC_CANONICAL_BUILD
+m4trace:configure.ac:30: -1- AC_REQUIRE_AUX_FILE([config.sub])
+m4trace:configure.ac:30: -1- AC_REQUIRE_AUX_FILE([config.guess])
+m4trace:configure.ac:30: -1- AC_SUBST([build], [$ac_cv_build])
+m4trace:configure.ac:30: -1- AC_SUBST_TRACE([build])
+m4trace:configure.ac:30: -1- m4_pattern_allow([^build$])
+m4trace:configure.ac:30: -1- AC_SUBST([build_cpu], [$[1]])
+m4trace:configure.ac:30: -1- AC_SUBST_TRACE([build_cpu])
+m4trace:configure.ac:30: -1- m4_pattern_allow([^build_cpu$])
+m4trace:configure.ac:30: -1- AC_SUBST([build_vendor], [$[2]])
+m4trace:configure.ac:30: -1- AC_SUBST_TRACE([build_vendor])
+m4trace:configure.ac:30: -1- m4_pattern_allow([^build_vendor$])
+m4trace:configure.ac:30: -1- AC_SUBST([build_os])
+m4trace:configure.ac:30: -1- AC_SUBST_TRACE([build_os])
+m4trace:configure.ac:30: -1- m4_pattern_allow([^build_os$])
+m4trace:configure.ac:30: -1- AC_SUBST([host], [$ac_cv_host])
+m4trace:configure.ac:30: -1- AC_SUBST_TRACE([host])
+m4trace:configure.ac:30: -1- m4_pattern_allow([^host$])
+m4trace:configure.ac:30: -1- AC_SUBST([host_cpu], [$[1]])
+m4trace:configure.ac:30: -1- AC_SUBST_TRACE([host_cpu])
+m4trace:configure.ac:30: -1- m4_pattern_allow([^host_cpu$])
+m4trace:configure.ac:30: -1- AC_SUBST([host_vendor], [$[2]])
+m4trace:configure.ac:30: -1- AC_SUBST_TRACE([host_vendor])
+m4trace:configure.ac:30: -1- m4_pattern_allow([^host_vendor$])
+m4trace:configure.ac:30: -1- AC_SUBST([host_os])
+m4trace:configure.ac:30: -1- AC_SUBST_TRACE([host_os])
+m4trace:configure.ac:30: -1- m4_pattern_allow([^host_os$])
+m4trace:configure.ac:41: -1- AC_SUBST([CC])
+m4trace:configure.ac:41: -1- AC_SUBST_TRACE([CC])
+m4trace:configure.ac:41: -1- m4_pattern_allow([^CC$])
+m4trace:configure.ac:41: -1- AC_SUBST([CFLAGS])
+m4trace:configure.ac:41: -1- AC_SUBST_TRACE([CFLAGS])
+m4trace:configure.ac:41: -1- m4_pattern_allow([^CFLAGS$])
+m4trace:configure.ac:41: -1- AC_SUBST([LDFLAGS])
+m4trace:configure.ac:41: -1- AC_SUBST_TRACE([LDFLAGS])
+m4trace:configure.ac:41: -1- m4_pattern_allow([^LDFLAGS$])
+m4trace:configure.ac:41: -1- AC_SUBST([LIBS])
+m4trace:configure.ac:41: -1- AC_SUBST_TRACE([LIBS])
+m4trace:configure.ac:41: -1- m4_pattern_allow([^LIBS$])
+m4trace:configure.ac:41: -1- AC_SUBST([CPPFLAGS])
+m4trace:configure.ac:41: -1- AC_SUBST_TRACE([CPPFLAGS])
+m4trace:configure.ac:41: -1- m4_pattern_allow([^CPPFLAGS$])
+m4trace:configure.ac:41: -1- AC_SUBST([CC])
+m4trace:configure.ac:41: -1- AC_SUBST_TRACE([CC])
+m4trace:configure.ac:41: -1- m4_pattern_allow([^CC$])
+m4trace:configure.ac:41: -1- AC_SUBST([CC])
+m4trace:configure.ac:41: -1- AC_SUBST_TRACE([CC])
+m4trace:configure.ac:41: -1- m4_pattern_allow([^CC$])
+m4trace:configure.ac:41: -1- AC_SUBST([CC])
+m4trace:configure.ac:41: -1- AC_SUBST_TRACE([CC])
+m4trace:configure.ac:41: -1- m4_pattern_allow([^CC$])
+m4trace:configure.ac:41: -1- AC_SUBST([CC])
+m4trace:configure.ac:41: -1- AC_SUBST_TRACE([CC])
+m4trace:configure.ac:41: -1- m4_pattern_allow([^CC$])
+m4trace:configure.ac:41: -1- AC_SUBST([ac_ct_CC])
+m4trace:configure.ac:41: -1- AC_SUBST_TRACE([ac_ct_CC])
+m4trace:configure.ac:41: -1- m4_pattern_allow([^ac_ct_CC$])
+m4trace:configure.ac:41: -1- AC_SUBST([EXEEXT], [$ac_cv_exeext])
+m4trace:configure.ac:41: -1- AC_SUBST_TRACE([EXEEXT])
+m4trace:configure.ac:41: -1- m4_pattern_allow([^EXEEXT$])
+m4trace:configure.ac:41: -1- AC_SUBST([OBJEXT], [$ac_cv_objext])
+m4trace:configure.ac:41: -1- AC_SUBST_TRACE([OBJEXT])
+m4trace:configure.ac:41: -1- m4_pattern_allow([^OBJEXT$])
+m4trace:configure.ac:41: -1- AC_SUBST([DEPDIR], ["${am__leading_dot}deps"])
+m4trace:configure.ac:41: -1- AC_SUBST_TRACE([DEPDIR])
+m4trace:configure.ac:41: -1- m4_pattern_allow([^DEPDIR$])
+m4trace:configure.ac:41: -1- AC_SUBST([am__include])
+m4trace:configure.ac:41: -1- AC_SUBST_TRACE([am__include])
+m4trace:configure.ac:41: -1- m4_pattern_allow([^am__include$])
+m4trace:configure.ac:41: -1- AC_SUBST([am__quote])
+m4trace:configure.ac:41: -1- AC_SUBST_TRACE([am__quote])
+m4trace:configure.ac:41: -1- m4_pattern_allow([^am__quote$])
+m4trace:configure.ac:41: -1- AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno])
+m4trace:configure.ac:41: -1- AC_SUBST([AMDEP_TRUE])
+m4trace:configure.ac:41: -1- AC_SUBST_TRACE([AMDEP_TRUE])
+m4trace:configure.ac:41: -1- m4_pattern_allow([^AMDEP_TRUE$])
+m4trace:configure.ac:41: -1- AC_SUBST([AMDEP_FALSE])
+m4trace:configure.ac:41: -1- AC_SUBST_TRACE([AMDEP_FALSE])
+m4trace:configure.ac:41: -1- m4_pattern_allow([^AMDEP_FALSE$])
+m4trace:configure.ac:41: -1- _AM_SUBST_NOTMAKE([AMDEP_TRUE])
+m4trace:configure.ac:41: -1- _AM_SUBST_NOTMAKE([AMDEP_FALSE])
+m4trace:configure.ac:41: -1- AC_SUBST([AMDEPBACKSLASH])
+m4trace:configure.ac:41: -1- AC_SUBST_TRACE([AMDEPBACKSLASH])
+m4trace:configure.ac:41: -1- m4_pattern_allow([^AMDEPBACKSLASH$])
+m4trace:configure.ac:41: -1- _AM_SUBST_NOTMAKE([AMDEPBACKSLASH])
+m4trace:configure.ac:41: -1- AC_SUBST([CCDEPMODE], [depmode=$am_cv_CC_dependencies_compiler_type])
+m4trace:configure.ac:41: -1- AC_SUBST_TRACE([CCDEPMODE])
+m4trace:configure.ac:41: -1- m4_pattern_allow([^CCDEPMODE$])
+m4trace:configure.ac:41: -1- AM_CONDITIONAL([am__fastdepCC], [
test "x$enable_dependency_tracking" != xno \
&& test "$am_cv_CC_dependencies_compiler_type" = gcc3])
-m4trace:configure.ac:40: -1- AC_SUBST([am__fastdepCC_TRUE])
-m4trace:configure.ac:40: -1- AC_SUBST_TRACE([am__fastdepCC_TRUE])
-m4trace:configure.ac:40: -1- m4_pattern_allow([^am__fastdepCC_TRUE$])
-m4trace:configure.ac:40: -1- AC_SUBST([am__fastdepCC_FALSE])
-m4trace:configure.ac:40: -1- AC_SUBST_TRACE([am__fastdepCC_FALSE])
-m4trace:configure.ac:40: -1- m4_pattern_allow([^am__fastdepCC_FALSE$])
-m4trace:configure.ac:40: -1- _AM_SUBST_NOTMAKE([am__fastdepCC_TRUE])
-m4trace:configure.ac:40: -1- _AM_SUBST_NOTMAKE([am__fastdepCC_FALSE])
-m4trace:configure.ac:43: -1- AC_SUBST([SET_MAKE])
-m4trace:configure.ac:43: -1- AC_SUBST_TRACE([SET_MAKE])
-m4trace:configure.ac:43: -1- m4_pattern_allow([^SET_MAKE$])
-m4trace:configure.ac:44: -1- AC_SUBST([LN_S], [$as_ln_s])
-m4trace:configure.ac:44: -1- AC_SUBST_TRACE([LN_S])
-m4trace:configure.ac:44: -1- m4_pattern_allow([^LN_S$])
-m4trace:configure.ac:45: -1- AC_SUBST([AWK])
-m4trace:configure.ac:45: -1- AC_SUBST_TRACE([AWK])
-m4trace:configure.ac:45: -1- m4_pattern_allow([^AWK$])
-m4trace:configure.ac:46: -1- AC_SUBST([RANLIB])
-m4trace:configure.ac:46: -1- AC_SUBST_TRACE([RANLIB])
-m4trace:configure.ac:46: -1- m4_pattern_allow([^RANLIB$])
-m4trace:configure.ac:47: -1- AC_PROG_LIBTOOL
-m4trace:configure.ac:47: -1- _m4_warn([obsolete], [The macro `AC_PROG_LIBTOOL' is obsolete.
-You should run autoupdate.], [m4/libtool.m4:102: AC_PROG_LIBTOOL is expanded from...
-configure.ac:47: the top level])
-m4trace:configure.ac:47: -1- LT_INIT
-m4trace:configure.ac:47: -1- m4_pattern_forbid([^_?LT_[A-Z_]+$])
-m4trace:configure.ac:47: -1- m4_pattern_allow([^(_LT_EOF|LT_DLGLOBAL|LT_DLLAZY_OR_NOW|LT_MULTI_MODULE)$])
-m4trace:configure.ac:47: -1- AC_REQUIRE_AUX_FILE([ltmain.sh])
-m4trace:configure.ac:47: -1- AC_SUBST([LIBTOOL])
-m4trace:configure.ac:47: -1- AC_SUBST_TRACE([LIBTOOL])
-m4trace:configure.ac:47: -1- m4_pattern_allow([^LIBTOOL$])
-m4trace:configure.ac:47: -1- AC_SUBST([SED])
-m4trace:configure.ac:47: -1- AC_SUBST_TRACE([SED])
-m4trace:configure.ac:47: -1- m4_pattern_allow([^SED$])
-m4trace:configure.ac:47: -1- AC_SUBST([GREP])
-m4trace:configure.ac:47: -1- AC_SUBST_TRACE([GREP])
-m4trace:configure.ac:47: -1- m4_pattern_allow([^GREP$])
-m4trace:configure.ac:47: -1- AC_SUBST([EGREP])
-m4trace:configure.ac:47: -1- AC_SUBST_TRACE([EGREP])
-m4trace:configure.ac:47: -1- m4_pattern_allow([^EGREP$])
-m4trace:configure.ac:47: -1- AC_SUBST([FGREP])
-m4trace:configure.ac:47: -1- AC_SUBST_TRACE([FGREP])
-m4trace:configure.ac:47: -1- m4_pattern_allow([^FGREP$])
-m4trace:configure.ac:47: -1- AC_SUBST([GREP])
-m4trace:configure.ac:47: -1- AC_SUBST_TRACE([GREP])
-m4trace:configure.ac:47: -1- m4_pattern_allow([^GREP$])
-m4trace:configure.ac:47: -1- AC_SUBST([LD])
-m4trace:configure.ac:47: -1- AC_SUBST_TRACE([LD])
-m4trace:configure.ac:47: -1- m4_pattern_allow([^LD$])
-m4trace:configure.ac:47: -1- AC_SUBST([DUMPBIN])
-m4trace:configure.ac:47: -1- AC_SUBST_TRACE([DUMPBIN])
-m4trace:configure.ac:47: -1- m4_pattern_allow([^DUMPBIN$])
-m4trace:configure.ac:47: -1- AC_SUBST([ac_ct_DUMPBIN])
-m4trace:configure.ac:47: -1- AC_SUBST_TRACE([ac_ct_DUMPBIN])
-m4trace:configure.ac:47: -1- m4_pattern_allow([^ac_ct_DUMPBIN$])
-m4trace:configure.ac:47: -1- AC_SUBST([DUMPBIN])
-m4trace:configure.ac:47: -1- AC_SUBST_TRACE([DUMPBIN])
-m4trace:configure.ac:47: -1- m4_pattern_allow([^DUMPBIN$])
-m4trace:configure.ac:47: -1- AC_SUBST([NM])
-m4trace:configure.ac:47: -1- AC_SUBST_TRACE([NM])
-m4trace:configure.ac:47: -1- m4_pattern_allow([^NM$])
-m4trace:configure.ac:47: -1- AC_SUBST([OBJDUMP])
-m4trace:configure.ac:47: -1- AC_SUBST_TRACE([OBJDUMP])
-m4trace:configure.ac:47: -1- m4_pattern_allow([^OBJDUMP$])
-m4trace:configure.ac:47: -1- AC_SUBST([OBJDUMP])
-m4trace:configure.ac:47: -1- AC_SUBST_TRACE([OBJDUMP])
-m4trace:configure.ac:47: -1- m4_pattern_allow([^OBJDUMP$])
-m4trace:configure.ac:47: -1- AC_SUBST([AR])
-m4trace:configure.ac:47: -1- AC_SUBST_TRACE([AR])
-m4trace:configure.ac:47: -1- m4_pattern_allow([^AR$])
-m4trace:configure.ac:47: -1- AC_SUBST([STRIP])
-m4trace:configure.ac:47: -1- AC_SUBST_TRACE([STRIP])
-m4trace:configure.ac:47: -1- m4_pattern_allow([^STRIP$])
+m4trace:configure.ac:41: -1- AC_SUBST([am__fastdepCC_TRUE])
+m4trace:configure.ac:41: -1- AC_SUBST_TRACE([am__fastdepCC_TRUE])
+m4trace:configure.ac:41: -1- m4_pattern_allow([^am__fastdepCC_TRUE$])
+m4trace:configure.ac:41: -1- AC_SUBST([am__fastdepCC_FALSE])
+m4trace:configure.ac:41: -1- AC_SUBST_TRACE([am__fastdepCC_FALSE])
+m4trace:configure.ac:41: -1- m4_pattern_allow([^am__fastdepCC_FALSE$])
+m4trace:configure.ac:41: -1- _AM_SUBST_NOTMAKE([am__fastdepCC_TRUE])
+m4trace:configure.ac:41: -1- _AM_SUBST_NOTMAKE([am__fastdepCC_FALSE])
+m4trace:configure.ac:44: -1- AC_SUBST([SET_MAKE])
+m4trace:configure.ac:44: -1- AC_SUBST_TRACE([SET_MAKE])
+m4trace:configure.ac:44: -1- m4_pattern_allow([^SET_MAKE$])
+m4trace:configure.ac:45: -1- AC_SUBST([LN_S], [$as_ln_s])
+m4trace:configure.ac:45: -1- AC_SUBST_TRACE([LN_S])
+m4trace:configure.ac:45: -1- m4_pattern_allow([^LN_S$])
+m4trace:configure.ac:46: -1- AC_SUBST([AWK])
+m4trace:configure.ac:46: -1- AC_SUBST_TRACE([AWK])
+m4trace:configure.ac:46: -1- m4_pattern_allow([^AWK$])
m4trace:configure.ac:47: -1- AC_SUBST([RANLIB])
m4trace:configure.ac:47: -1- AC_SUBST_TRACE([RANLIB])
m4trace:configure.ac:47: -1- m4_pattern_allow([^RANLIB$])
-m4trace:configure.ac:47: -1- m4_pattern_allow([LT_OBJDIR])
-m4trace:configure.ac:47: -1- AC_DEFINE_TRACE_LITERAL([LT_OBJDIR])
-m4trace:configure.ac:47: -1- m4_pattern_allow([^LT_OBJDIR$])
-m4trace:configure.ac:47: -1- AH_OUTPUT([LT_OBJDIR], [/* Define to the sub-directory in which libtool stores uninstalled libraries.
+m4trace:configure.ac:48: -1- AC_PROG_LIBTOOL
+m4trace:configure.ac:48: -1- _m4_warn([obsolete], [The macro `AC_PROG_LIBTOOL' is obsolete.
+You should run autoupdate.], [m4/libtool.m4:102: AC_PROG_LIBTOOL is expanded from...
+configure.ac:48: the top level])
+m4trace:configure.ac:48: -1- LT_INIT
+m4trace:configure.ac:48: -1- m4_pattern_forbid([^_?LT_[A-Z_]+$])
+m4trace:configure.ac:48: -1- m4_pattern_allow([^(_LT_EOF|LT_DLGLOBAL|LT_DLLAZY_OR_NOW|LT_MULTI_MODULE)$])
+m4trace:configure.ac:48: -1- AC_REQUIRE_AUX_FILE([ltmain.sh])
+m4trace:configure.ac:48: -1- AC_SUBST([LIBTOOL])
+m4trace:configure.ac:48: -1- AC_SUBST_TRACE([LIBTOOL])
+m4trace:configure.ac:48: -1- m4_pattern_allow([^LIBTOOL$])
+m4trace:configure.ac:48: -1- AC_SUBST([SED])
+m4trace:configure.ac:48: -1- AC_SUBST_TRACE([SED])
+m4trace:configure.ac:48: -1- m4_pattern_allow([^SED$])
+m4trace:configure.ac:48: -1- AC_SUBST([GREP])
+m4trace:configure.ac:48: -1- AC_SUBST_TRACE([GREP])
+m4trace:configure.ac:48: -1- m4_pattern_allow([^GREP$])
+m4trace:configure.ac:48: -1- AC_SUBST([EGREP])
+m4trace:configure.ac:48: -1- AC_SUBST_TRACE([EGREP])
+m4trace:configure.ac:48: -1- m4_pattern_allow([^EGREP$])
+m4trace:configure.ac:48: -1- AC_SUBST([FGREP])
+m4trace:configure.ac:48: -1- AC_SUBST_TRACE([FGREP])
+m4trace:configure.ac:48: -1- m4_pattern_allow([^FGREP$])
+m4trace:configure.ac:48: -1- AC_SUBST([GREP])
+m4trace:configure.ac:48: -1- AC_SUBST_TRACE([GREP])
+m4trace:configure.ac:48: -1- m4_pattern_allow([^GREP$])
+m4trace:configure.ac:48: -1- AC_SUBST([LD])
+m4trace:configure.ac:48: -1- AC_SUBST_TRACE([LD])
+m4trace:configure.ac:48: -1- m4_pattern_allow([^LD$])
+m4trace:configure.ac:48: -1- AC_SUBST([DUMPBIN])
+m4trace:configure.ac:48: -1- AC_SUBST_TRACE([DUMPBIN])
+m4trace:configure.ac:48: -1- m4_pattern_allow([^DUMPBIN$])
+m4trace:configure.ac:48: -1- AC_SUBST([ac_ct_DUMPBIN])
+m4trace:configure.ac:48: -1- AC_SUBST_TRACE([ac_ct_DUMPBIN])
+m4trace:configure.ac:48: -1- m4_pattern_allow([^ac_ct_DUMPBIN$])
+m4trace:configure.ac:48: -1- AC_SUBST([DUMPBIN])
+m4trace:configure.ac:48: -1- AC_SUBST_TRACE([DUMPBIN])
+m4trace:configure.ac:48: -1- m4_pattern_allow([^DUMPBIN$])
+m4trace:configure.ac:48: -1- AC_SUBST([NM])
+m4trace:configure.ac:48: -1- AC_SUBST_TRACE([NM])
+m4trace:configure.ac:48: -1- m4_pattern_allow([^NM$])
+m4trace:configure.ac:48: -1- AC_SUBST([OBJDUMP])
+m4trace:configure.ac:48: -1- AC_SUBST_TRACE([OBJDUMP])
+m4trace:configure.ac:48: -1- m4_pattern_allow([^OBJDUMP$])
+m4trace:configure.ac:48: -1- AC_SUBST([OBJDUMP])
+m4trace:configure.ac:48: -1- AC_SUBST_TRACE([OBJDUMP])
+m4trace:configure.ac:48: -1- m4_pattern_allow([^OBJDUMP$])
+m4trace:configure.ac:48: -1- AC_SUBST([AR])
+m4trace:configure.ac:48: -1- AC_SUBST_TRACE([AR])
+m4trace:configure.ac:48: -1- m4_pattern_allow([^AR$])
+m4trace:configure.ac:48: -1- AC_SUBST([STRIP])
+m4trace:configure.ac:48: -1- AC_SUBST_TRACE([STRIP])
+m4trace:configure.ac:48: -1- m4_pattern_allow([^STRIP$])
+m4trace:configure.ac:48: -1- AC_SUBST([RANLIB])
+m4trace:configure.ac:48: -1- AC_SUBST_TRACE([RANLIB])
+m4trace:configure.ac:48: -1- m4_pattern_allow([^RANLIB$])
+m4trace:configure.ac:48: -1- m4_pattern_allow([LT_OBJDIR])
+m4trace:configure.ac:48: -1- AC_DEFINE_TRACE_LITERAL([LT_OBJDIR])
+m4trace:configure.ac:48: -1- m4_pattern_allow([^LT_OBJDIR$])
+m4trace:configure.ac:48: -1- AH_OUTPUT([LT_OBJDIR], [/* Define to the sub-directory in which libtool stores uninstalled libraries.
*/
@%:@undef LT_OBJDIR])
-m4trace:configure.ac:47: -1- AC_SUBST([lt_ECHO])
-m4trace:configure.ac:47: -1- AC_SUBST_TRACE([lt_ECHO])
-m4trace:configure.ac:47: -1- m4_pattern_allow([^lt_ECHO$])
-m4trace:configure.ac:47: -1- LT_SUPPORTED_TAG([CC])
-m4trace:configure.ac:47: -1- AC_SUBST([DSYMUTIL])
-m4trace:configure.ac:47: -1- AC_SUBST_TRACE([DSYMUTIL])
-m4trace:configure.ac:47: -1- m4_pattern_allow([^DSYMUTIL$])
-m4trace:configure.ac:47: -1- AC_SUBST([NMEDIT])
-m4trace:configure.ac:47: -1- AC_SUBST_TRACE([NMEDIT])
-m4trace:configure.ac:47: -1- m4_pattern_allow([^NMEDIT$])
-m4trace:configure.ac:47: -1- AC_SUBST([LIPO])
-m4trace:configure.ac:47: -1- AC_SUBST_TRACE([LIPO])
-m4trace:configure.ac:47: -1- m4_pattern_allow([^LIPO$])
-m4trace:configure.ac:47: -1- AC_SUBST([OTOOL])
-m4trace:configure.ac:47: -1- AC_SUBST_TRACE([OTOOL])
-m4trace:configure.ac:47: -1- m4_pattern_allow([^OTOOL$])
-m4trace:configure.ac:47: -1- AC_SUBST([OTOOL64])
-m4trace:configure.ac:47: -1- AC_SUBST_TRACE([OTOOL64])
-m4trace:configure.ac:47: -1- m4_pattern_allow([^OTOOL64$])
-m4trace:configure.ac:47: -1- AH_OUTPUT([HAVE_DLFCN_H], [/* Define to 1 if you have the <dlfcn.h> header file. */
+m4trace:configure.ac:48: -1- AC_SUBST([lt_ECHO])
+m4trace:configure.ac:48: -1- AC_SUBST_TRACE([lt_ECHO])
+m4trace:configure.ac:48: -1- m4_pattern_allow([^lt_ECHO$])
+m4trace:configure.ac:48: -1- LT_SUPPORTED_TAG([CC])
+m4trace:configure.ac:48: -1- AC_SUBST([DSYMUTIL])
+m4trace:configure.ac:48: -1- AC_SUBST_TRACE([DSYMUTIL])
+m4trace:configure.ac:48: -1- m4_pattern_allow([^DSYMUTIL$])
+m4trace:configure.ac:48: -1- AC_SUBST([NMEDIT])
+m4trace:configure.ac:48: -1- AC_SUBST_TRACE([NMEDIT])
+m4trace:configure.ac:48: -1- m4_pattern_allow([^NMEDIT$])
+m4trace:configure.ac:48: -1- AC_SUBST([LIPO])
+m4trace:configure.ac:48: -1- AC_SUBST_TRACE([LIPO])
+m4trace:configure.ac:48: -1- m4_pattern_allow([^LIPO$])
+m4trace:configure.ac:48: -1- AC_SUBST([OTOOL])
+m4trace:configure.ac:48: -1- AC_SUBST_TRACE([OTOOL])
+m4trace:configure.ac:48: -1- m4_pattern_allow([^OTOOL$])
+m4trace:configure.ac:48: -1- AC_SUBST([OTOOL64])
+m4trace:configure.ac:48: -1- AC_SUBST_TRACE([OTOOL64])
+m4trace:configure.ac:48: -1- m4_pattern_allow([^OTOOL64$])
+m4trace:configure.ac:48: -1- AH_OUTPUT([HAVE_DLFCN_H], [/* Define to 1 if you have the <dlfcn.h> header file. */
@%:@undef HAVE_DLFCN_H])
-m4trace:configure.ac:47: -1- AC_SUBST([CPP])
-m4trace:configure.ac:47: -1- AC_SUBST_TRACE([CPP])
-m4trace:configure.ac:47: -1- m4_pattern_allow([^CPP$])
-m4trace:configure.ac:47: -1- AC_SUBST([CPPFLAGS])
-m4trace:configure.ac:47: -1- AC_SUBST_TRACE([CPPFLAGS])
-m4trace:configure.ac:47: -1- m4_pattern_allow([^CPPFLAGS$])
-m4trace:configure.ac:47: -1- AC_SUBST([CPP])
-m4trace:configure.ac:47: -1- AC_SUBST_TRACE([CPP])
-m4trace:configure.ac:47: -1- m4_pattern_allow([^CPP$])
-m4trace:configure.ac:47: -1- AC_DEFINE_TRACE_LITERAL([STDC_HEADERS])
-m4trace:configure.ac:47: -1- m4_pattern_allow([^STDC_HEADERS$])
-m4trace:configure.ac:47: -1- AH_OUTPUT([STDC_HEADERS], [/* Define to 1 if you have the ANSI C header files. */
+m4trace:configure.ac:48: -1- AC_SUBST([CPP])
+m4trace:configure.ac:48: -1- AC_SUBST_TRACE([CPP])
+m4trace:configure.ac:48: -1- m4_pattern_allow([^CPP$])
+m4trace:configure.ac:48: -1- AC_SUBST([CPPFLAGS])
+m4trace:configure.ac:48: -1- AC_SUBST_TRACE([CPPFLAGS])
+m4trace:configure.ac:48: -1- m4_pattern_allow([^CPPFLAGS$])
+m4trace:configure.ac:48: -1- AC_SUBST([CPP])
+m4trace:configure.ac:48: -1- AC_SUBST_TRACE([CPP])
+m4trace:configure.ac:48: -1- m4_pattern_allow([^CPP$])
+m4trace:configure.ac:48: -1- AC_DEFINE_TRACE_LITERAL([STDC_HEADERS])
+m4trace:configure.ac:48: -1- m4_pattern_allow([^STDC_HEADERS$])
+m4trace:configure.ac:48: -1- AH_OUTPUT([STDC_HEADERS], [/* Define to 1 if you have the ANSI C header files. */
@%:@undef STDC_HEADERS])
-m4trace:configure.ac:47: -1- AH_OUTPUT([HAVE_SYS_TYPES_H], [/* Define to 1 if you have the <sys/types.h> header file. */
+m4trace:configure.ac:48: -1- AH_OUTPUT([HAVE_SYS_TYPES_H], [/* Define to 1 if you have the <sys/types.h> header file. */
@%:@undef HAVE_SYS_TYPES_H])
-m4trace:configure.ac:47: -1- AH_OUTPUT([HAVE_SYS_STAT_H], [/* Define to 1 if you have the <sys/stat.h> header file. */
+m4trace:configure.ac:48: -1- AH_OUTPUT([HAVE_SYS_STAT_H], [/* Define to 1 if you have the <sys/stat.h> header file. */
@%:@undef HAVE_SYS_STAT_H])
-m4trace:configure.ac:47: -1- AH_OUTPUT([HAVE_STDLIB_H], [/* Define to 1 if you have the <stdlib.h> header file. */
+m4trace:configure.ac:48: -1- AH_OUTPUT([HAVE_STDLIB_H], [/* Define to 1 if you have the <stdlib.h> header file. */
@%:@undef HAVE_STDLIB_H])
-m4trace:configure.ac:47: -1- AH_OUTPUT([HAVE_STRING_H], [/* Define to 1 if you have the <string.h> header file. */
+m4trace:configure.ac:48: -1- AH_OUTPUT([HAVE_STRING_H], [/* Define to 1 if you have the <string.h> header file. */
@%:@undef HAVE_STRING_H])
-m4trace:configure.ac:47: -1- AH_OUTPUT([HAVE_MEMORY_H], [/* Define to 1 if you have the <memory.h> header file. */
+m4trace:configure.ac:48: -1- AH_OUTPUT([HAVE_MEMORY_H], [/* Define to 1 if you have the <memory.h> header file. */
@%:@undef HAVE_MEMORY_H])
-m4trace:configure.ac:47: -1- AH_OUTPUT([HAVE_STRINGS_H], [/* Define to 1 if you have the <strings.h> header file. */
+m4trace:configure.ac:48: -1- AH_OUTPUT([HAVE_STRINGS_H], [/* Define to 1 if you have the <strings.h> header file. */
@%:@undef HAVE_STRINGS_H])
-m4trace:configure.ac:47: -1- AH_OUTPUT([HAVE_INTTYPES_H], [/* Define to 1 if you have the <inttypes.h> header file. */
+m4trace:configure.ac:48: -1- AH_OUTPUT([HAVE_INTTYPES_H], [/* Define to 1 if you have the <inttypes.h> header file. */
@%:@undef HAVE_INTTYPES_H])
-m4trace:configure.ac:47: -1- AH_OUTPUT([HAVE_STDINT_H], [/* Define to 1 if you have the <stdint.h> header file. */
+m4trace:configure.ac:48: -1- AH_OUTPUT([HAVE_STDINT_H], [/* Define to 1 if you have the <stdint.h> header file. */
@%:@undef HAVE_STDINT_H])
-m4trace:configure.ac:47: -1- AH_OUTPUT([HAVE_UNISTD_H], [/* Define to 1 if you have the <unistd.h> header file. */
+m4trace:configure.ac:48: -1- AH_OUTPUT([HAVE_UNISTD_H], [/* Define to 1 if you have the <unistd.h> header file. */
@%:@undef HAVE_UNISTD_H])
-m4trace:configure.ac:47: -1- AC_DEFINE_TRACE_LITERAL([HAVE_DLFCN_H])
-m4trace:configure.ac:47: -1- m4_pattern_allow([^HAVE_DLFCN_H$])
-m4trace:configure.ac:49: -1- AC_SUBST([AR])
-m4trace:configure.ac:49: -1- AC_SUBST_TRACE([AR])
-m4trace:configure.ac:49: -1- m4_pattern_allow([^AR$])
-m4trace:configure.ac:50: -1- AC_SUBST([RM])
-m4trace:configure.ac:50: -1- AC_SUBST_TRACE([RM])
-m4trace:configure.ac:50: -1- m4_pattern_allow([^RM$])
-m4trace:configure.ac:51: -1- AC_SUBST([CP])
-m4trace:configure.ac:51: -1- AC_SUBST_TRACE([CP])
-m4trace:configure.ac:51: -1- m4_pattern_allow([^CP$])
-m4trace:configure.ac:52: -1- AC_SUBST([LN])
-m4trace:configure.ac:52: -1- AC_SUBST_TRACE([LN])
-m4trace:configure.ac:52: -1- m4_pattern_allow([^LN$])
-m4trace:configure.ac:53: -1- AC_SUBST([SED])
-m4trace:configure.ac:53: -1- AC_SUBST_TRACE([SED])
-m4trace:configure.ac:53: -1- m4_pattern_allow([^SED$])
-m4trace:configure.ac:54: -1- AC_SUBST([MAKE])
-m4trace:configure.ac:54: -1- AC_SUBST_TRACE([MAKE])
-m4trace:configure.ac:54: -1- m4_pattern_allow([^MAKE$])
-m4trace:configure.ac:59: -1- AM_GNU_GETTEXT([external])
-m4trace:configure.ac:59: -1- AM_NLS
-m4trace:configure.ac:59: -1- AC_SUBST([USE_NLS])
-m4trace:configure.ac:59: -1- AC_SUBST_TRACE([USE_NLS])
-m4trace:configure.ac:59: -1- m4_pattern_allow([^USE_NLS$])
-m4trace:configure.ac:59: -1- AC_SUBST([MSGFMT])
-m4trace:configure.ac:59: -1- AC_SUBST_TRACE([MSGFMT])
-m4trace:configure.ac:59: -1- m4_pattern_allow([^MSGFMT$])
-m4trace:configure.ac:59: -1- AC_SUBST([GMSGFMT])
-m4trace:configure.ac:59: -1- AC_SUBST_TRACE([GMSGFMT])
-m4trace:configure.ac:59: -1- m4_pattern_allow([^GMSGFMT$])
-m4trace:configure.ac:59: -1- AC_SUBST([MSGFMT_015])
-m4trace:configure.ac:59: -1- AC_SUBST_TRACE([MSGFMT_015])
-m4trace:configure.ac:59: -1- m4_pattern_allow([^MSGFMT_015$])
-m4trace:configure.ac:59: -1- AC_SUBST([GMSGFMT_015])
-m4trace:configure.ac:59: -1- AC_SUBST_TRACE([GMSGFMT_015])
-m4trace:configure.ac:59: -1- m4_pattern_allow([^GMSGFMT_015$])
-m4trace:configure.ac:59: -1- AC_SUBST([XGETTEXT])
-m4trace:configure.ac:59: -1- AC_SUBST_TRACE([XGETTEXT])
-m4trace:configure.ac:59: -1- m4_pattern_allow([^XGETTEXT$])
-m4trace:configure.ac:59: -1- AC_SUBST([XGETTEXT_015])
-m4trace:configure.ac:59: -1- AC_SUBST_TRACE([XGETTEXT_015])
-m4trace:configure.ac:59: -1- m4_pattern_allow([^XGETTEXT_015$])
-m4trace:configure.ac:59: -1- AC_SUBST([MSGMERGE])
-m4trace:configure.ac:59: -1- AC_SUBST_TRACE([MSGMERGE])
-m4trace:configure.ac:59: -1- m4_pattern_allow([^MSGMERGE$])
-m4trace:configure.ac:59: -1- AC_SUBST([localedir])
-m4trace:configure.ac:59: -1- AC_SUBST_TRACE([localedir])
-m4trace:configure.ac:59: -1- m4_pattern_allow([^localedir$])
-m4trace:configure.ac:59: -1- AC_REQUIRE_AUX_FILE([config.rpath])
-m4trace:configure.ac:59: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
+m4trace:configure.ac:48: -1- AC_DEFINE_TRACE_LITERAL([HAVE_DLFCN_H])
+m4trace:configure.ac:48: -1- m4_pattern_allow([^HAVE_DLFCN_H$])
+m4trace:configure.ac:50: -1- AC_SUBST([AR])
+m4trace:configure.ac:50: -1- AC_SUBST_TRACE([AR])
+m4trace:configure.ac:50: -1- m4_pattern_allow([^AR$])
+m4trace:configure.ac:51: -1- AC_SUBST([RM])
+m4trace:configure.ac:51: -1- AC_SUBST_TRACE([RM])
+m4trace:configure.ac:51: -1- m4_pattern_allow([^RM$])
+m4trace:configure.ac:52: -1- AC_SUBST([CP])
+m4trace:configure.ac:52: -1- AC_SUBST_TRACE([CP])
+m4trace:configure.ac:52: -1- m4_pattern_allow([^CP$])
+m4trace:configure.ac:53: -1- AC_SUBST([LN])
+m4trace:configure.ac:53: -1- AC_SUBST_TRACE([LN])
+m4trace:configure.ac:53: -1- m4_pattern_allow([^LN$])
+m4trace:configure.ac:54: -1- AC_SUBST([SED])
+m4trace:configure.ac:54: -1- AC_SUBST_TRACE([SED])
+m4trace:configure.ac:54: -1- m4_pattern_allow([^SED$])
+m4trace:configure.ac:55: -1- AC_SUBST([MAKE])
+m4trace:configure.ac:55: -1- AC_SUBST_TRACE([MAKE])
+m4trace:configure.ac:55: -1- m4_pattern_allow([^MAKE$])
+m4trace:configure.ac:60: -1- AM_GNU_GETTEXT([external])
+m4trace:configure.ac:60: -1- AM_NLS
+m4trace:configure.ac:60: -1- AC_SUBST([USE_NLS])
+m4trace:configure.ac:60: -1- AC_SUBST_TRACE([USE_NLS])
+m4trace:configure.ac:60: -1- m4_pattern_allow([^USE_NLS$])
+m4trace:configure.ac:60: -1- AC_SUBST([MSGFMT])
+m4trace:configure.ac:60: -1- AC_SUBST_TRACE([MSGFMT])
+m4trace:configure.ac:60: -1- m4_pattern_allow([^MSGFMT$])
+m4trace:configure.ac:60: -1- AC_SUBST([GMSGFMT])
+m4trace:configure.ac:60: -1- AC_SUBST_TRACE([GMSGFMT])
+m4trace:configure.ac:60: -1- m4_pattern_allow([^GMSGFMT$])
+m4trace:configure.ac:60: -1- AC_SUBST([MSGFMT_015])
+m4trace:configure.ac:60: -1- AC_SUBST_TRACE([MSGFMT_015])
+m4trace:configure.ac:60: -1- m4_pattern_allow([^MSGFMT_015$])
+m4trace:configure.ac:60: -1- AC_SUBST([GMSGFMT_015])
+m4trace:configure.ac:60: -1- AC_SUBST_TRACE([GMSGFMT_015])
+m4trace:configure.ac:60: -1- m4_pattern_allow([^GMSGFMT_015$])
+m4trace:configure.ac:60: -1- AC_SUBST([XGETTEXT])
+m4trace:configure.ac:60: -1- AC_SUBST_TRACE([XGETTEXT])
+m4trace:configure.ac:60: -1- m4_pattern_allow([^XGETTEXT$])
+m4trace:configure.ac:60: -1- AC_SUBST([XGETTEXT_015])
+m4trace:configure.ac:60: -1- AC_SUBST_TRACE([XGETTEXT_015])
+m4trace:configure.ac:60: -1- m4_pattern_allow([^XGETTEXT_015$])
+m4trace:configure.ac:60: -1- AC_SUBST([MSGMERGE])
+m4trace:configure.ac:60: -1- AC_SUBST_TRACE([MSGMERGE])
+m4trace:configure.ac:60: -1- m4_pattern_allow([^MSGMERGE$])
+m4trace:configure.ac:60: -1- AC_SUBST([localedir])
+m4trace:configure.ac:60: -1- AC_SUBST_TRACE([localedir])
+m4trace:configure.ac:60: -1- m4_pattern_allow([^localedir$])
+m4trace:configure.ac:60: -1- AC_REQUIRE_AUX_FILE([config.rpath])
+m4trace:configure.ac:60: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:2688: AC_TRY_LINK is expanded from...
../../lib/m4sugar/m4sh.m4:606: AS_IF is expanded from...
../../lib/autoconf/general.m4:2032: AC_CACHE_VAL is expanded from...
../../lib/autoconf/general.m4:2053: AC_CACHE_CHECK is expanded from...
m4/gettext.m4:367: gt_INTL_MACOSX is expanded from...
m4/gettext.m4:57: AM_GNU_GETTEXT is expanded from...
-configure.ac:59: the top level])
-m4trace:configure.ac:59: -1- AC_DEFINE_TRACE_LITERAL([HAVE_CFPREFERENCESCOPYAPPVALUE])
-m4trace:configure.ac:59: -1- m4_pattern_allow([^HAVE_CFPREFERENCESCOPYAPPVALUE$])
-m4trace:configure.ac:59: -1- AH_OUTPUT([HAVE_CFPREFERENCESCOPYAPPVALUE], [/* Define to 1 if you have the MacOS X function CFPreferencesCopyAppValue in
+configure.ac:60: the top level])
+m4trace:configure.ac:60: -1- AC_DEFINE_TRACE_LITERAL([HAVE_CFPREFERENCESCOPYAPPVALUE])
+m4trace:configure.ac:60: -1- m4_pattern_allow([^HAVE_CFPREFERENCESCOPYAPPVALUE$])
+m4trace:configure.ac:60: -1- AH_OUTPUT([HAVE_CFPREFERENCESCOPYAPPVALUE], [/* Define to 1 if you have the MacOS X function CFPreferencesCopyAppValue in
the CoreFoundation framework. */
@%:@undef HAVE_CFPREFERENCESCOPYAPPVALUE])
-m4trace:configure.ac:59: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
+m4trace:configure.ac:60: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:2688: AC_TRY_LINK is expanded from...
../../lib/m4sugar/m4sh.m4:606: AS_IF is expanded from...
../../lib/autoconf/general.m4:2032: AC_CACHE_VAL is expanded from...
../../lib/autoconf/general.m4:2053: AC_CACHE_CHECK is expanded from...
m4/gettext.m4:367: gt_INTL_MACOSX is expanded from...
m4/gettext.m4:57: AM_GNU_GETTEXT is expanded from...
-configure.ac:59: the top level])
-m4trace:configure.ac:59: -1- AC_DEFINE_TRACE_LITERAL([HAVE_CFLOCALECOPYCURRENT])
-m4trace:configure.ac:59: -1- m4_pattern_allow([^HAVE_CFLOCALECOPYCURRENT$])
-m4trace:configure.ac:59: -1- AH_OUTPUT([HAVE_CFLOCALECOPYCURRENT], [/* Define to 1 if you have the MacOS X function CFLocaleCopyCurrent in the
+configure.ac:60: the top level])
+m4trace:configure.ac:60: -1- AC_DEFINE_TRACE_LITERAL([HAVE_CFLOCALECOPYCURRENT])
+m4trace:configure.ac:60: -1- m4_pattern_allow([^HAVE_CFLOCALECOPYCURRENT$])
+m4trace:configure.ac:60: -1- AH_OUTPUT([HAVE_CFLOCALECOPYCURRENT], [/* Define to 1 if you have the MacOS X function CFLocaleCopyCurrent in the
CoreFoundation framework. */
@%:@undef HAVE_CFLOCALECOPYCURRENT])
-m4trace:configure.ac:59: -1- AC_SUBST([INTL_MACOSX_LIBS])
-m4trace:configure.ac:59: -1- AC_SUBST_TRACE([INTL_MACOSX_LIBS])
-m4trace:configure.ac:59: -1- m4_pattern_allow([^INTL_MACOSX_LIBS$])
-m4trace:configure.ac:59: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
+m4trace:configure.ac:60: -1- AC_SUBST([INTL_MACOSX_LIBS])
+m4trace:configure.ac:60: -1- AC_SUBST_TRACE([INTL_MACOSX_LIBS])
+m4trace:configure.ac:60: -1- m4_pattern_allow([^INTL_MACOSX_LIBS$])
+m4trace:configure.ac:60: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:2688: AC_TRY_LINK is expanded from...
../../lib/m4sugar/m4sh.m4:606: AS_IF is expanded from...
../../lib/autoconf/general.m4:2032: AC_CACHE_VAL is expanded from...
../../lib/autoconf/general.m4:2053: AC_CACHE_CHECK is expanded from...
m4/gettext.m4:57: AM_GNU_GETTEXT is expanded from...
-configure.ac:59: the top level])
-m4trace:configure.ac:59: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
+configure.ac:60: the top level])
+m4trace:configure.ac:60: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:2688: AC_TRY_LINK is expanded from...
../../lib/m4sugar/m4sh.m4:606: AS_IF is expanded from...
../../lib/autoconf/general.m4:2032: AC_CACHE_VAL is expanded from...
../../lib/autoconf/general.m4:2053: AC_CACHE_CHECK is expanded from...
m4/iconv.m4:20: AM_ICONV_LINK is expanded from...
m4/gettext.m4:57: AM_GNU_GETTEXT is expanded from...
-configure.ac:59: the top level])
-m4trace:configure.ac:59: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
+configure.ac:60: the top level])
+m4trace:configure.ac:60: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:2688: AC_TRY_LINK is expanded from...
../../lib/m4sugar/m4sh.m4:606: AS_IF is expanded from...
../../lib/autoconf/general.m4:2032: AC_CACHE_VAL is expanded from...
../../lib/autoconf/general.m4:2053: AC_CACHE_CHECK is expanded from...
m4/iconv.m4:20: AM_ICONV_LINK is expanded from...
m4/gettext.m4:57: AM_GNU_GETTEXT is expanded from...
-configure.ac:59: the top level])
-m4trace:configure.ac:59: -1- AC_DEFINE_TRACE_LITERAL([HAVE_ICONV])
-m4trace:configure.ac:59: -1- m4_pattern_allow([^HAVE_ICONV$])
-m4trace:configure.ac:59: -1- AH_OUTPUT([HAVE_ICONV], [/* Define if you have the iconv() function. */
+configure.ac:60: the top level])
+m4trace:configure.ac:60: -1- AC_DEFINE_TRACE_LITERAL([HAVE_ICONV])
+m4trace:configure.ac:60: -1- m4_pattern_allow([^HAVE_ICONV$])
+m4trace:configure.ac:60: -1- AH_OUTPUT([HAVE_ICONV], [/* Define if you have the iconv() function. */
@%:@undef HAVE_ICONV])
-m4trace:configure.ac:59: -1- AC_SUBST([LIBICONV])
-m4trace:configure.ac:59: -1- AC_SUBST_TRACE([LIBICONV])
-m4trace:configure.ac:59: -1- m4_pattern_allow([^LIBICONV$])
-m4trace:configure.ac:59: -1- AC_SUBST([LTLIBICONV])
-m4trace:configure.ac:59: -1- AC_SUBST_TRACE([LTLIBICONV])
-m4trace:configure.ac:59: -1- m4_pattern_allow([^LTLIBICONV$])
-m4trace:configure.ac:59: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
+m4trace:configure.ac:60: -1- AC_SUBST([LIBICONV])
+m4trace:configure.ac:60: -1- AC_SUBST_TRACE([LIBICONV])
+m4trace:configure.ac:60: -1- m4_pattern_allow([^LIBICONV$])
+m4trace:configure.ac:60: -1- AC_SUBST([LTLIBICONV])
+m4trace:configure.ac:60: -1- AC_SUBST_TRACE([LTLIBICONV])
+m4trace:configure.ac:60: -1- m4_pattern_allow([^LTLIBICONV$])
+m4trace:configure.ac:60: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:2688: AC_TRY_LINK is expanded from...
../../lib/m4sugar/m4sh.m4:606: AS_IF is expanded from...
../../lib/autoconf/general.m4:2032: AC_CACHE_VAL is expanded from...
../../lib/autoconf/general.m4:2053: AC_CACHE_CHECK is expanded from...
m4/gettext.m4:57: AM_GNU_GETTEXT is expanded from...
-configure.ac:59: the top level])
-m4trace:configure.ac:59: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
+configure.ac:60: the top level])
+m4trace:configure.ac:60: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:2688: AC_TRY_LINK is expanded from...
../../lib/m4sugar/m4sh.m4:606: AS_IF is expanded from...
../../lib/autoconf/general.m4:2032: AC_CACHE_VAL is expanded from...
../../lib/autoconf/general.m4:2053: AC_CACHE_CHECK is expanded from...
m4/gettext.m4:57: AM_GNU_GETTEXT is expanded from...
-configure.ac:59: the top level])
-m4trace:configure.ac:59: -1- AC_DEFINE_TRACE_LITERAL([ENABLE_NLS])
-m4trace:configure.ac:59: -1- m4_pattern_allow([^ENABLE_NLS$])
-m4trace:configure.ac:59: -1- AH_OUTPUT([ENABLE_NLS], [/* Define to 1 if translation of program messages to the user\'s native
+configure.ac:60: the top level])
+m4trace:configure.ac:60: -1- AC_DEFINE_TRACE_LITERAL([ENABLE_NLS])
+m4trace:configure.ac:60: -1- m4_pattern_allow([^ENABLE_NLS$])
+m4trace:configure.ac:60: -1- AH_OUTPUT([ENABLE_NLS], [/* Define to 1 if translation of program messages to the user\'s native
language is requested. */
@%:@undef ENABLE_NLS])
-m4trace:configure.ac:59: -1- AC_DEFINE_TRACE_LITERAL([HAVE_GETTEXT])
-m4trace:configure.ac:59: -1- m4_pattern_allow([^HAVE_GETTEXT$])
-m4trace:configure.ac:59: -1- AH_OUTPUT([HAVE_GETTEXT], [/* Define if the GNU gettext() function is already present or preinstalled. */
+m4trace:configure.ac:60: -1- AC_DEFINE_TRACE_LITERAL([HAVE_GETTEXT])
+m4trace:configure.ac:60: -1- m4_pattern_allow([^HAVE_GETTEXT$])
+m4trace:configure.ac:60: -1- AH_OUTPUT([HAVE_GETTEXT], [/* Define if the GNU gettext() function is already present or preinstalled. */
@%:@undef HAVE_GETTEXT])
-m4trace:configure.ac:59: -1- AC_DEFINE_TRACE_LITERAL([HAVE_DCGETTEXT])
-m4trace:configure.ac:59: -1- m4_pattern_allow([^HAVE_DCGETTEXT$])
-m4trace:configure.ac:59: -1- AH_OUTPUT([HAVE_DCGETTEXT], [/* Define if the GNU dcgettext() function is already present or preinstalled.
+m4trace:configure.ac:60: -1- AC_DEFINE_TRACE_LITERAL([HAVE_DCGETTEXT])
+m4trace:configure.ac:60: -1- m4_pattern_allow([^HAVE_DCGETTEXT$])
+m4trace:configure.ac:60: -1- AH_OUTPUT([HAVE_DCGETTEXT], [/* Define if the GNU dcgettext() function is already present or preinstalled.
*/
@%:@undef HAVE_DCGETTEXT])
-m4trace:configure.ac:59: -1- AC_SUBST([INTLLIBS])
-m4trace:configure.ac:59: -1- AC_SUBST_TRACE([INTLLIBS])
-m4trace:configure.ac:59: -1- m4_pattern_allow([^INTLLIBS$])
-m4trace:configure.ac:59: -1- AC_SUBST([LIBINTL])
-m4trace:configure.ac:59: -1- AC_SUBST_TRACE([LIBINTL])
-m4trace:configure.ac:59: -1- m4_pattern_allow([^LIBINTL$])
-m4trace:configure.ac:59: -1- AC_SUBST([LTLIBINTL])
-m4trace:configure.ac:59: -1- AC_SUBST_TRACE([LTLIBINTL])
-m4trace:configure.ac:59: -1- m4_pattern_allow([^LTLIBINTL$])
-m4trace:configure.ac:59: -1- AC_SUBST([POSUB])
-m4trace:configure.ac:59: -1- AC_SUBST_TRACE([POSUB])
-m4trace:configure.ac:59: -1- m4_pattern_allow([^POSUB$])
-m4trace:configure.ac:64: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
-You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:64: the top level])
-m4trace:configure.ac:72: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
-You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:72: the top level])
-m4trace:configure.ac:82: -1- AC_DEFINE_TRACE_LITERAL([ENABLE_DMALLOC])
-m4trace:configure.ac:82: -1- m4_pattern_allow([^ENABLE_DMALLOC$])
-m4trace:configure.ac:82: -1- AH_OUTPUT([ENABLE_DMALLOC], [/* Define enable dmalloc debugging */
+m4trace:configure.ac:60: -1- AC_SUBST([INTLLIBS])
+m4trace:configure.ac:60: -1- AC_SUBST_TRACE([INTLLIBS])
+m4trace:configure.ac:60: -1- m4_pattern_allow([^INTLLIBS$])
+m4trace:configure.ac:60: -1- AC_SUBST([LIBINTL])
+m4trace:configure.ac:60: -1- AC_SUBST_TRACE([LIBINTL])
+m4trace:configure.ac:60: -1- m4_pattern_allow([^LIBINTL$])
+m4trace:configure.ac:60: -1- AC_SUBST([LTLIBINTL])
+m4trace:configure.ac:60: -1- AC_SUBST_TRACE([LTLIBINTL])
+m4trace:configure.ac:60: -1- m4_pattern_allow([^LTLIBINTL$])
+m4trace:configure.ac:60: -1- AC_SUBST([POSUB])
+m4trace:configure.ac:60: -1- AC_SUBST_TRACE([POSUB])
+m4trace:configure.ac:60: -1- m4_pattern_allow([^POSUB$])
+m4trace:configure.ac:65: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
+You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
+configure.ac:65: the top level])
+m4trace:configure.ac:73: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
+You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
+configure.ac:73: the top level])
+m4trace:configure.ac:83: -1- AC_DEFINE_TRACE_LITERAL([ENABLE_DMALLOC])
+m4trace:configure.ac:83: -1- m4_pattern_allow([^ENABLE_DMALLOC$])
+m4trace:configure.ac:83: -1- AH_OUTPUT([ENABLE_DMALLOC], [/* Define enable dmalloc debugging */
@%:@undef ENABLE_DMALLOC])
-m4trace:configure.ac:87: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
+m4trace:configure.ac:88: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:87: the top level])
-m4trace:configure.ac:99: -1- AC_SUBST([localedir], ["$localedir"])
-m4trace:configure.ac:99: -1- AC_SUBST_TRACE([localedir])
-m4trace:configure.ac:99: -1- m4_pattern_allow([^localedir$])
-m4trace:configure.ac:106: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
+configure.ac:88: the top level])
+m4trace:configure.ac:100: -1- AC_SUBST([localedir], ["$localedir"])
+m4trace:configure.ac:100: -1- AC_SUBST_TRACE([localedir])
+m4trace:configure.ac:100: -1- m4_pattern_allow([^localedir$])
+m4trace:configure.ac:107: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:106: the top level])
-m4trace:configure.ac:131: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
+configure.ac:107: the top level])
+m4trace:configure.ac:132: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:131: the top level])
-m4trace:configure.ac:147: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
+configure.ac:132: the top level])
+m4trace:configure.ac:148: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:147: the top level])
-m4trace:configure.ac:163: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
+configure.ac:148: the top level])
+m4trace:configure.ac:164: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:163: the top level])
-m4trace:configure.ac:172: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
+configure.ac:164: the top level])
+m4trace:configure.ac:173: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:172: the top level])
-m4trace:configure.ac:187: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
+configure.ac:173: the top level])
+m4trace:configure.ac:188: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:187: the top level])
-m4trace:configure.ac:190: -1- AC_DEFINE_TRACE_LITERAL([DEBUG])
-m4trace:configure.ac:190: -1- m4_pattern_allow([^DEBUG$])
-m4trace:configure.ac:190: -1- AH_OUTPUT([DEBUG], [/* Compile in debugging */
+configure.ac:188: the top level])
+m4trace:configure.ac:191: -1- AC_DEFINE_TRACE_LITERAL([DEBUG])
+m4trace:configure.ac:191: -1- m4_pattern_allow([^DEBUG$])
+m4trace:configure.ac:191: -1- AH_OUTPUT([DEBUG], [/* Compile in debugging */
@%:@undef DEBUG])
-m4trace:configure.ac:191: -1- AC_DEFINE_TRACE_LITERAL([DEBUGJOURNAL])
-m4trace:configure.ac:191: -1- m4_pattern_allow([^DEBUGJOURNAL$])
-m4trace:configure.ac:191: -1- AH_OUTPUT([DEBUGJOURNAL], [/* Display debug messages in journal */
+m4trace:configure.ac:192: -1- AC_DEFINE_TRACE_LITERAL([DEBUGJOURNAL])
+m4trace:configure.ac:192: -1- m4_pattern_allow([^DEBUGJOURNAL$])
+m4trace:configure.ac:192: -1- AH_OUTPUT([DEBUGJOURNAL], [/* Display debug messages in journal */
@%:@undef DEBUGJOURNAL])
-m4trace:configure.ac:200: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
+m4trace:configure.ac:201: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:200: the top level])
-m4trace:configure.ac:211: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
+configure.ac:201: the top level])
+m4trace:configure.ac:212: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:211: the top level])
-m4trace:configure.ac:213: -1- AC_DEFINE_TRACE_LITERAL([MOUSE])
-m4trace:configure.ac:213: -1- m4_pattern_allow([^MOUSE$])
-m4trace:configure.ac:213: -1- AH_OUTPUT([MOUSE], [/* Compile in mouse support */
+configure.ac:212: the top level])
+m4trace:configure.ac:214: -1- AC_DEFINE_TRACE_LITERAL([MOUSE])
+m4trace:configure.ac:214: -1- m4_pattern_allow([^MOUSE$])
+m4trace:configure.ac:214: -1- AH_OUTPUT([MOUSE], [/* Compile in mouse support */
@%:@undef MOUSE])
-m4trace:configure.ac:221: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
+m4trace:configure.ac:222: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:221: the top level])
-m4trace:configure.ac:223: -1- AC_DEFINE_TRACE_LITERAL([USE_QUOTAS])
-m4trace:configure.ac:223: -1- m4_pattern_allow([^USE_QUOTAS$])
-m4trace:configure.ac:223: -1- AH_OUTPUT([USE_QUOTAS], [/* Compile in quota check on startup */
+configure.ac:222: the top level])
+m4trace:configure.ac:224: -1- AC_DEFINE_TRACE_LITERAL([USE_QUOTAS])
+m4trace:configure.ac:224: -1- m4_pattern_allow([^USE_QUOTAS$])
+m4trace:configure.ac:224: -1- AH_OUTPUT([USE_QUOTAS], [/* Compile in quota check on startup */
@%:@undef USE_QUOTAS])
-m4trace:configure.ac:230: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
+m4trace:configure.ac:231: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:230: the top level])
-m4trace:configure.ac:234: -1- AC_DEFINE_TRACE_LITERAL([NEVER_ALLOW_CHANGING_FROM])
-m4trace:configure.ac:234: -1- m4_pattern_allow([^NEVER_ALLOW_CHANGING_FROM$])
-m4trace:configure.ac:234: -1- AH_OUTPUT([NEVER_ALLOW_CHANGING_FROM], [/* Disallow users changing their From address */
+configure.ac:231: the top level])
+m4trace:configure.ac:235: -1- AC_DEFINE_TRACE_LITERAL([NEVER_ALLOW_CHANGING_FROM])
+m4trace:configure.ac:235: -1- m4_pattern_allow([^NEVER_ALLOW_CHANGING_FROM$])
+m4trace:configure.ac:235: -1- AH_OUTPUT([NEVER_ALLOW_CHANGING_FROM], [/* Disallow users changing their From address */
@%:@undef NEVER_ALLOW_CHANGING_FROM])
-m4trace:configure.ac:240: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
+m4trace:configure.ac:241: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:240: the top level])
-m4trace:configure.ac:242: -1- AC_DEFINE_TRACE_LITERAL([BACKGROUND_POST])
-m4trace:configure.ac:242: -1- m4_pattern_allow([^BACKGROUND_POST$])
-m4trace:configure.ac:242: -1- AH_OUTPUT([BACKGROUND_POST], [/* Enable background posting support */
+configure.ac:241: the top level])
+m4trace:configure.ac:243: -1- AC_DEFINE_TRACE_LITERAL([BACKGROUND_POST])
+m4trace:configure.ac:243: -1- m4_pattern_allow([^BACKGROUND_POST$])
+m4trace:configure.ac:243: -1- AH_OUTPUT([BACKGROUND_POST], [/* Enable background posting support */
@%:@undef BACKGROUND_POST])
-m4trace:configure.ac:250: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
+m4trace:configure.ac:251: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:250: the top level])
-m4trace:configure.ac:252: -1- AC_DEFINE_TRACE_LITERAL([KEYBOARD_LOCK])
-m4trace:configure.ac:252: -1- m4_pattern_allow([^KEYBOARD_LOCK$])
-m4trace:configure.ac:252: -1- AH_OUTPUT([KEYBOARD_LOCK], [/* Enable keyboard lock support */
+configure.ac:251: the top level])
+m4trace:configure.ac:253: -1- AC_DEFINE_TRACE_LITERAL([KEYBOARD_LOCK])
+m4trace:configure.ac:253: -1- m4_pattern_allow([^KEYBOARD_LOCK$])
+m4trace:configure.ac:253: -1- AH_OUTPUT([KEYBOARD_LOCK], [/* Enable keyboard lock support */
@%:@undef KEYBOARD_LOCK])
-m4trace:configure.ac:260: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
+m4trace:configure.ac:261: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:260: the top level])
-m4trace:configure.ac:262: -1- AC_DEFINE_TRACE_LITERAL([ENCODE_FROMS])
-m4trace:configure.ac:262: -1- m4_pattern_allow([^ENCODE_FROMS$])
-m4trace:configure.ac:262: -1- AH_OUTPUT([ENCODE_FROMS], [/* Enable From address encoding in sent messages */
+configure.ac:261: the top level])
+m4trace:configure.ac:263: -1- AC_DEFINE_TRACE_LITERAL([ENCODE_FROMS])
+m4trace:configure.ac:263: -1- m4_pattern_allow([^ENCODE_FROMS$])
+m4trace:configure.ac:263: -1- AH_OUTPUT([ENCODE_FROMS], [/* Enable From address encoding in sent messages */
@%:@undef ENCODE_FROMS])
-m4trace:configure.ac:271: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
-You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:271: the top level])
-m4trace:configure.ac:270: -1- AC_SUBST([SENDMAIL])
-m4trace:configure.ac:270: -1- AC_SUBST_TRACE([SENDMAIL])
-m4trace:configure.ac:270: -1- m4_pattern_allow([^SENDMAIL$])
-m4trace:configure.ac:270: -1- AC_SUBST([SENDMAIL])
-m4trace:configure.ac:270: -1- AC_SUBST_TRACE([SENDMAIL])
-m4trace:configure.ac:270: -1- m4_pattern_allow([^SENDMAIL$])
-m4trace:configure.ac:288: -1- AC_DEFINE_TRACE_LITERAL([SENDMAIL])
-m4trace:configure.ac:288: -1- m4_pattern_allow([^SENDMAIL$])
-m4trace:configure.ac:288: -1- AH_OUTPUT([SENDMAIL], [/* Local mail submission agent */
+m4trace:configure.ac:272: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
+You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
+configure.ac:272: the top level])
+m4trace:configure.ac:271: -1- AC_SUBST([SENDMAIL])
+m4trace:configure.ac:271: -1- AC_SUBST_TRACE([SENDMAIL])
+m4trace:configure.ac:271: -1- m4_pattern_allow([^SENDMAIL$])
+m4trace:configure.ac:271: -1- AC_SUBST([SENDMAIL])
+m4trace:configure.ac:271: -1- AC_SUBST_TRACE([SENDMAIL])
+m4trace:configure.ac:271: -1- m4_pattern_allow([^SENDMAIL$])
+m4trace:configure.ac:289: -1- AC_DEFINE_TRACE_LITERAL([SENDMAIL])
+m4trace:configure.ac:289: -1- m4_pattern_allow([^SENDMAIL$])
+m4trace:configure.ac:289: -1- AH_OUTPUT([SENDMAIL], [/* Local mail submission agent */
@%:@undef SENDMAIL])
-m4trace:configure.ac:294: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
+m4trace:configure.ac:295: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:294: the top level])
-m4trace:configure.ac:300: -1- AC_DEFINE_TRACE_LITERAL([SENDMAILFLAGS])
-m4trace:configure.ac:300: -1- m4_pattern_allow([^SENDMAILFLAGS$])
-m4trace:configure.ac:300: -1- AH_OUTPUT([SENDMAILFLAGS], [/* Local MSA flags for SMTP on stdin/stdout */
+configure.ac:295: the top level])
+m4trace:configure.ac:301: -1- AC_DEFINE_TRACE_LITERAL([SENDMAILFLAGS])
+m4trace:configure.ac:301: -1- m4_pattern_allow([^SENDMAILFLAGS$])
+m4trace:configure.ac:301: -1- AH_OUTPUT([SENDMAILFLAGS], [/* Local MSA flags for SMTP on stdin/stdout */
@%:@undef SENDMAILFLAGS])
-m4trace:configure.ac:305: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
-You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:305: the top level])
-m4trace:configure.ac:304: -1- AC_SUBST([NPA_PROG])
-m4trace:configure.ac:304: -1- AC_SUBST_TRACE([NPA_PROG])
-m4trace:configure.ac:304: -1- m4_pattern_allow([^NPA_PROG$])
-m4trace:configure.ac:304: -1- AC_SUBST([NPA_PROG])
-m4trace:configure.ac:304: -1- AC_SUBST_TRACE([NPA_PROG])
-m4trace:configure.ac:304: -1- m4_pattern_allow([^NPA_PROG$])
-m4trace:configure.ac:324: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
-You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:324: the top level])
-m4trace:configure.ac:331: -1- AC_DEFINE_TRACE_LITERAL([SENDNEWS])
-m4trace:configure.ac:331: -1- m4_pattern_allow([^SENDNEWS$])
-m4trace:configure.ac:331: -1- AH_OUTPUT([SENDNEWS], [/* Posting agent to use when no nntp-servers defined */
+m4trace:configure.ac:306: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
+You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
+configure.ac:306: the top level])
+m4trace:configure.ac:305: -1- AC_SUBST([NPA_PROG])
+m4trace:configure.ac:305: -1- AC_SUBST_TRACE([NPA_PROG])
+m4trace:configure.ac:305: -1- m4_pattern_allow([^NPA_PROG$])
+m4trace:configure.ac:305: -1- AC_SUBST([NPA_PROG])
+m4trace:configure.ac:305: -1- AC_SUBST_TRACE([NPA_PROG])
+m4trace:configure.ac:305: -1- m4_pattern_allow([^NPA_PROG$])
+m4trace:configure.ac:325: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
+You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
+configure.ac:325: the top level])
+m4trace:configure.ac:332: -1- AC_DEFINE_TRACE_LITERAL([SENDNEWS])
+m4trace:configure.ac:332: -1- m4_pattern_allow([^SENDNEWS$])
+m4trace:configure.ac:332: -1- AH_OUTPUT([SENDNEWS], [/* Posting agent to use when no nntp-servers defined */
@%:@undef SENDNEWS])
-m4trace:configure.ac:336: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
-You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:336: the top level])
-m4trace:configure.ac:335: -1- AC_SUBST([PWPROG])
-m4trace:configure.ac:335: -1- AC_SUBST_TRACE([PWPROG])
-m4trace:configure.ac:335: -1- m4_pattern_allow([^PWPROG$])
-m4trace:configure.ac:335: -1- AC_SUBST([PWPROG])
-m4trace:configure.ac:335: -1- AC_SUBST_TRACE([PWPROG])
-m4trace:configure.ac:335: -1- m4_pattern_allow([^PWPROG$])
-m4trace:configure.ac:335: -1- AC_SUBST([PWPROG])
-m4trace:configure.ac:335: -1- AC_SUBST_TRACE([PWPROG])
-m4trace:configure.ac:335: -1- m4_pattern_allow([^PWPROG$])
-m4trace:configure.ac:353: -1- AC_DEFINE_TRACE_LITERAL([PASSWD_PROG])
-m4trace:configure.ac:353: -1- m4_pattern_allow([^PASSWD_PROG$])
-m4trace:configure.ac:353: -1- AH_OUTPUT([PASSWD_PROG], [/* Program users use to change their password */
+m4trace:configure.ac:337: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
+You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
+configure.ac:337: the top level])
+m4trace:configure.ac:336: -1- AC_SUBST([PWPROG])
+m4trace:configure.ac:336: -1- AC_SUBST_TRACE([PWPROG])
+m4trace:configure.ac:336: -1- m4_pattern_allow([^PWPROG$])
+m4trace:configure.ac:336: -1- AC_SUBST([PWPROG])
+m4trace:configure.ac:336: -1- AC_SUBST_TRACE([PWPROG])
+m4trace:configure.ac:336: -1- m4_pattern_allow([^PWPROG$])
+m4trace:configure.ac:336: -1- AC_SUBST([PWPROG])
+m4trace:configure.ac:336: -1- AC_SUBST_TRACE([PWPROG])
+m4trace:configure.ac:336: -1- m4_pattern_allow([^PWPROG$])
+m4trace:configure.ac:354: -1- AC_DEFINE_TRACE_LITERAL([PASSWD_PROG])
+m4trace:configure.ac:354: -1- m4_pattern_allow([^PASSWD_PROG$])
+m4trace:configure.ac:354: -1- AH_OUTPUT([PASSWD_PROG], [/* Program users use to change their password */
@%:@undef PASSWD_PROG])
-m4trace:configure.ac:358: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
-You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:358: the top level])
-m4trace:configure.ac:357: -1- AC_SUBST([SPELLPROG])
-m4trace:configure.ac:357: -1- AC_SUBST_TRACE([SPELLPROG])
-m4trace:configure.ac:357: -1- m4_pattern_allow([^SPELLPROG$])
-m4trace:configure.ac:357: -1- AC_SUBST([SPELLPROG])
-m4trace:configure.ac:357: -1- AC_SUBST_TRACE([SPELLPROG])
-m4trace:configure.ac:357: -1- m4_pattern_allow([^SPELLPROG$])
-m4trace:configure.ac:357: -1- AC_SUBST([SPELLPROG])
-m4trace:configure.ac:357: -1- AC_SUBST_TRACE([SPELLPROG])
-m4trace:configure.ac:357: -1- m4_pattern_allow([^SPELLPROG$])
-m4trace:configure.ac:378: -1- AC_SUBST([alpine_simple_spellcheck])
-m4trace:configure.ac:378: -1- AC_SUBST_TRACE([alpine_simple_spellcheck])
-m4trace:configure.ac:378: -1- m4_pattern_allow([^alpine_simple_spellcheck$])
-m4trace:configure.ac:398: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
-You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:398: the top level])
-m4trace:configure.ac:397: -1- AC_SUBST([ISPELLPROG])
-m4trace:configure.ac:397: -1- AC_SUBST_TRACE([ISPELLPROG])
-m4trace:configure.ac:397: -1- m4_pattern_allow([^ISPELLPROG$])
-m4trace:configure.ac:397: -1- AC_SUBST([ISPELLPROG])
-m4trace:configure.ac:397: -1- AC_SUBST_TRACE([ISPELLPROG])
-m4trace:configure.ac:397: -1- m4_pattern_allow([^ISPELLPROG$])
-m4trace:configure.ac:415: -1- AC_SUBST([alpine_interactive_spellcheck])
-m4trace:configure.ac:415: -1- AC_SUBST_TRACE([alpine_interactive_spellcheck])
-m4trace:configure.ac:415: -1- m4_pattern_allow([^alpine_interactive_spellcheck$])
-m4trace:configure.ac:428: -1- AC_DEFINE_TRACE_LITERAL([DF_VAR_SPELLER])
-m4trace:configure.ac:428: -1- m4_pattern_allow([^DF_VAR_SPELLER$])
-m4trace:configure.ac:428: -1- AH_OUTPUT([DF_VAR_SPELLER], [/* Interactive, filewise spell checker */
+m4trace:configure.ac:359: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
+You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
+configure.ac:359: the top level])
+m4trace:configure.ac:358: -1- AC_SUBST([SPELLPROG])
+m4trace:configure.ac:358: -1- AC_SUBST_TRACE([SPELLPROG])
+m4trace:configure.ac:358: -1- m4_pattern_allow([^SPELLPROG$])
+m4trace:configure.ac:358: -1- AC_SUBST([SPELLPROG])
+m4trace:configure.ac:358: -1- AC_SUBST_TRACE([SPELLPROG])
+m4trace:configure.ac:358: -1- m4_pattern_allow([^SPELLPROG$])
+m4trace:configure.ac:358: -1- AC_SUBST([SPELLPROG])
+m4trace:configure.ac:358: -1- AC_SUBST_TRACE([SPELLPROG])
+m4trace:configure.ac:358: -1- m4_pattern_allow([^SPELLPROG$])
+m4trace:configure.ac:379: -1- AC_SUBST([alpine_simple_spellcheck])
+m4trace:configure.ac:379: -1- AC_SUBST_TRACE([alpine_simple_spellcheck])
+m4trace:configure.ac:379: -1- m4_pattern_allow([^alpine_simple_spellcheck$])
+m4trace:configure.ac:399: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
+You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
+configure.ac:399: the top level])
+m4trace:configure.ac:398: -1- AC_SUBST([ISPELLPROG])
+m4trace:configure.ac:398: -1- AC_SUBST_TRACE([ISPELLPROG])
+m4trace:configure.ac:398: -1- m4_pattern_allow([^ISPELLPROG$])
+m4trace:configure.ac:398: -1- AC_SUBST([ISPELLPROG])
+m4trace:configure.ac:398: -1- AC_SUBST_TRACE([ISPELLPROG])
+m4trace:configure.ac:398: -1- m4_pattern_allow([^ISPELLPROG$])
+m4trace:configure.ac:416: -1- AC_SUBST([alpine_interactive_spellcheck])
+m4trace:configure.ac:416: -1- AC_SUBST_TRACE([alpine_interactive_spellcheck])
+m4trace:configure.ac:416: -1- m4_pattern_allow([^alpine_interactive_spellcheck$])
+m4trace:configure.ac:429: -1- AC_DEFINE_TRACE_LITERAL([DF_VAR_SPELLER])
+m4trace:configure.ac:429: -1- m4_pattern_allow([^DF_VAR_SPELLER$])
+m4trace:configure.ac:429: -1- AH_OUTPUT([DF_VAR_SPELLER], [/* Interactive, filewise spell checker */
@%:@undef DF_VAR_SPELLER])
-m4trace:configure.ac:434: -1- AC_DEFINE_TRACE_LITERAL([SPELLER])
-m4trace:configure.ac:434: -1- m4_pattern_allow([^SPELLER$])
-m4trace:configure.ac:434: -1- AH_OUTPUT([SPELLER], [/* Simple spell checker: reads stdin, emits misspellings on stdout */
+m4trace:configure.ac:435: -1- AC_DEFINE_TRACE_LITERAL([SPELLER])
+m4trace:configure.ac:435: -1- m4_pattern_allow([^SPELLER$])
+m4trace:configure.ac:435: -1- AH_OUTPUT([SPELLER], [/* Simple spell checker: reads stdin, emits misspellings on stdout */
@%:@undef SPELLER])
-m4trace:configure.ac:445: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
+m4trace:configure.ac:446: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:445: the top level])
-m4trace:configure.ac:457: -1- AC_DEFINE_TRACE_LITERAL([SYSTEM_PINERC])
-m4trace:configure.ac:457: -1- m4_pattern_allow([^SYSTEM_PINERC$])
-m4trace:configure.ac:457: -1- AH_OUTPUT([SYSTEM_PINERC], [/* System pinerc */
+configure.ac:446: the top level])
+m4trace:configure.ac:458: -1- AC_DEFINE_TRACE_LITERAL([SYSTEM_PINERC])
+m4trace:configure.ac:458: -1- m4_pattern_allow([^SYSTEM_PINERC$])
+m4trace:configure.ac:458: -1- AH_OUTPUT([SYSTEM_PINERC], [/* System pinerc */
@%:@undef SYSTEM_PINERC])
-m4trace:configure.ac:468: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
+m4trace:configure.ac:469: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:468: the top level])
-m4trace:configure.ac:480: -1- AC_DEFINE_TRACE_LITERAL([SYSTEM_PINERC_FIXED])
-m4trace:configure.ac:480: -1- m4_pattern_allow([^SYSTEM_PINERC_FIXED$])
-m4trace:configure.ac:480: -1- AH_OUTPUT([SYSTEM_PINERC_FIXED], [/* System fixed pinerc */
+configure.ac:469: the top level])
+m4trace:configure.ac:481: -1- AC_DEFINE_TRACE_LITERAL([SYSTEM_PINERC_FIXED])
+m4trace:configure.ac:481: -1- m4_pattern_allow([^SYSTEM_PINERC_FIXED$])
+m4trace:configure.ac:481: -1- AH_OUTPUT([SYSTEM_PINERC_FIXED], [/* System fixed pinerc */
@%:@undef SYSTEM_PINERC_FIXED])
-m4trace:configure.ac:512: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
-You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:484: PINEVAR is expanded from...
-configure.ac:512: the top level])
-m4trace:configure.ac:512: -1- AC_DEFINE_TRACE_LITERAL([DF_MAILCHECK])
-m4trace:configure.ac:512: -1- m4_pattern_allow([^DF_MAILCHECK$])
-m4trace:configure.ac:512: -1- AH_OUTPUT([DF_MAILCHECK], [/* Default configuration value */
-@%:@undef DF_MAILCHECK])
m4trace:configure.ac:513: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:499: PINEVAR_UNQUOTED is expanded from...
+configure.ac:485: PINEVAR is expanded from...
configure.ac:513: the top level])
-m4trace:configure.ac:513: -1- AC_DEFINE_TRACE_LITERAL([CHECK_POINT_TIME])
-m4trace:configure.ac:513: -1- m4_pattern_allow([^CHECK_POINT_TIME$])
-m4trace:configure.ac:513: -1- AH_OUTPUT([CHECK_POINT_TIME], [/* Default configuration value */
-@%:@undef CHECK_POINT_TIME])
+m4trace:configure.ac:513: -1- AC_DEFINE_TRACE_LITERAL([DF_MAILCHECK])
+m4trace:configure.ac:513: -1- m4_pattern_allow([^DF_MAILCHECK$])
+m4trace:configure.ac:513: -1- AH_OUTPUT([DF_MAILCHECK], [/* Default configuration value */
+@%:@undef DF_MAILCHECK])
m4trace:configure.ac:514: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:499: PINEVAR_UNQUOTED is expanded from...
+configure.ac:500: PINEVAR_UNQUOTED is expanded from...
configure.ac:514: the top level])
-m4trace:configure.ac:514: -1- AC_DEFINE_TRACE_LITERAL([CHECK_POINT_FREQ])
-m4trace:configure.ac:514: -1- m4_pattern_allow([^CHECK_POINT_FREQ$])
-m4trace:configure.ac:514: -1- AH_OUTPUT([CHECK_POINT_FREQ], [/* Default configuration value */
-@%:@undef CHECK_POINT_FREQ])
+m4trace:configure.ac:514: -1- AC_DEFINE_TRACE_LITERAL([CHECK_POINT_TIME])
+m4trace:configure.ac:514: -1- m4_pattern_allow([^CHECK_POINT_TIME$])
+m4trace:configure.ac:514: -1- AH_OUTPUT([CHECK_POINT_TIME], [/* Default configuration value */
+@%:@undef CHECK_POINT_TIME])
m4trace:configure.ac:515: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:499: PINEVAR_UNQUOTED is expanded from...
+configure.ac:500: PINEVAR_UNQUOTED is expanded from...
configure.ac:515: the top level])
-m4trace:configure.ac:515: -1- AC_DEFINE_TRACE_LITERAL([DEFAULT_LINES_ON_TERMINAL])
-m4trace:configure.ac:515: -1- m4_pattern_allow([^DEFAULT_LINES_ON_TERMINAL$])
-m4trace:configure.ac:515: -1- AH_OUTPUT([DEFAULT_LINES_ON_TERMINAL], [/* Default configuration value */
-@%:@undef DEFAULT_LINES_ON_TERMINAL])
+m4trace:configure.ac:515: -1- AC_DEFINE_TRACE_LITERAL([CHECK_POINT_FREQ])
+m4trace:configure.ac:515: -1- m4_pattern_allow([^CHECK_POINT_FREQ$])
+m4trace:configure.ac:515: -1- AH_OUTPUT([CHECK_POINT_FREQ], [/* Default configuration value */
+@%:@undef CHECK_POINT_FREQ])
m4trace:configure.ac:516: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:499: PINEVAR_UNQUOTED is expanded from...
+configure.ac:500: PINEVAR_UNQUOTED is expanded from...
configure.ac:516: the top level])
-m4trace:configure.ac:516: -1- AC_DEFINE_TRACE_LITERAL([DEFAULT_COLUMNS_ON_TERMINAL])
-m4trace:configure.ac:516: -1- m4_pattern_allow([^DEFAULT_COLUMNS_ON_TERMINAL$])
-m4trace:configure.ac:516: -1- AH_OUTPUT([DEFAULT_COLUMNS_ON_TERMINAL], [/* Default configuration value */
-@%:@undef DEFAULT_COLUMNS_ON_TERMINAL])
+m4trace:configure.ac:516: -1- AC_DEFINE_TRACE_LITERAL([DEFAULT_LINES_ON_TERMINAL])
+m4trace:configure.ac:516: -1- m4_pattern_allow([^DEFAULT_LINES_ON_TERMINAL$])
+m4trace:configure.ac:516: -1- AH_OUTPUT([DEFAULT_LINES_ON_TERMINAL], [/* Default configuration value */
+@%:@undef DEFAULT_LINES_ON_TERMINAL])
m4trace:configure.ac:517: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:499: PINEVAR_UNQUOTED is expanded from...
+configure.ac:500: PINEVAR_UNQUOTED is expanded from...
configure.ac:517: the top level])
-m4trace:configure.ac:517: -1- AC_DEFINE_TRACE_LITERAL([MAX_SCREEN_ROWS])
-m4trace:configure.ac:517: -1- m4_pattern_allow([^MAX_SCREEN_ROWS$])
-m4trace:configure.ac:517: -1- AH_OUTPUT([MAX_SCREEN_ROWS], [/* Default configuration value */
-@%:@undef MAX_SCREEN_ROWS])
+m4trace:configure.ac:517: -1- AC_DEFINE_TRACE_LITERAL([DEFAULT_COLUMNS_ON_TERMINAL])
+m4trace:configure.ac:517: -1- m4_pattern_allow([^DEFAULT_COLUMNS_ON_TERMINAL$])
+m4trace:configure.ac:517: -1- AH_OUTPUT([DEFAULT_COLUMNS_ON_TERMINAL], [/* Default configuration value */
+@%:@undef DEFAULT_COLUMNS_ON_TERMINAL])
m4trace:configure.ac:518: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:499: PINEVAR_UNQUOTED is expanded from...
+configure.ac:500: PINEVAR_UNQUOTED is expanded from...
configure.ac:518: the top level])
-m4trace:configure.ac:518: -1- AC_DEFINE_TRACE_LITERAL([MAX_SCREEN_COLS])
-m4trace:configure.ac:518: -1- m4_pattern_allow([^MAX_SCREEN_COLS$])
-m4trace:configure.ac:518: -1- AH_OUTPUT([MAX_SCREEN_COLS], [/* Default configuration value */
-@%:@undef MAX_SCREEN_COLS])
+m4trace:configure.ac:518: -1- AC_DEFINE_TRACE_LITERAL([MAX_SCREEN_ROWS])
+m4trace:configure.ac:518: -1- m4_pattern_allow([^MAX_SCREEN_ROWS$])
+m4trace:configure.ac:518: -1- AH_OUTPUT([MAX_SCREEN_ROWS], [/* Default configuration value */
+@%:@undef MAX_SCREEN_ROWS])
m4trace:configure.ac:519: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:484: PINEVAR is expanded from...
+configure.ac:500: PINEVAR_UNQUOTED is expanded from...
configure.ac:519: the top level])
-m4trace:configure.ac:519: -1- AC_DEFINE_TRACE_LITERAL([DF_FILLCOL])
-m4trace:configure.ac:519: -1- m4_pattern_allow([^DF_FILLCOL$])
-m4trace:configure.ac:519: -1- AH_OUTPUT([DF_FILLCOL], [/* Default configuration value */
-@%:@undef DF_FILLCOL])
+m4trace:configure.ac:519: -1- AC_DEFINE_TRACE_LITERAL([MAX_SCREEN_COLS])
+m4trace:configure.ac:519: -1- m4_pattern_allow([^MAX_SCREEN_COLS$])
+m4trace:configure.ac:519: -1- AH_OUTPUT([MAX_SCREEN_COLS], [/* Default configuration value */
+@%:@undef MAX_SCREEN_COLS])
m4trace:configure.ac:520: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:499: PINEVAR_UNQUOTED is expanded from...
+configure.ac:485: PINEVAR is expanded from...
configure.ac:520: the top level])
-m4trace:configure.ac:520: -1- AC_DEFINE_TRACE_LITERAL([MAX_FILLCOL])
-m4trace:configure.ac:520: -1- m4_pattern_allow([^MAX_FILLCOL$])
-m4trace:configure.ac:520: -1- AH_OUTPUT([MAX_FILLCOL], [/* Default configuration value */
-@%:@undef MAX_FILLCOL])
+m4trace:configure.ac:520: -1- AC_DEFINE_TRACE_LITERAL([DF_FILLCOL])
+m4trace:configure.ac:520: -1- m4_pattern_allow([^DF_FILLCOL$])
+m4trace:configure.ac:520: -1- AH_OUTPUT([DF_FILLCOL], [/* Default configuration value */
+@%:@undef DF_FILLCOL])
m4trace:configure.ac:521: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:499: PINEVAR_UNQUOTED is expanded from...
+configure.ac:500: PINEVAR_UNQUOTED is expanded from...
configure.ac:521: the top level])
-m4trace:configure.ac:521: -1- AC_DEFINE_TRACE_LITERAL([DEFAULT_DEBUG])
-m4trace:configure.ac:521: -1- m4_pattern_allow([^DEFAULT_DEBUG$])
-m4trace:configure.ac:521: -1- AH_OUTPUT([DEFAULT_DEBUG], [/* Default configuration value */
-@%:@undef DEFAULT_DEBUG])
+m4trace:configure.ac:521: -1- AC_DEFINE_TRACE_LITERAL([MAX_FILLCOL])
+m4trace:configure.ac:521: -1- m4_pattern_allow([^MAX_FILLCOL$])
+m4trace:configure.ac:521: -1- AH_OUTPUT([MAX_FILLCOL], [/* Default configuration value */
+@%:@undef MAX_FILLCOL])
m4trace:configure.ac:522: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:499: PINEVAR_UNQUOTED is expanded from...
+configure.ac:500: PINEVAR_UNQUOTED is expanded from...
configure.ac:522: the top level])
-m4trace:configure.ac:522: -1- AC_DEFINE_TRACE_LITERAL([NUMDEBUGFILES])
-m4trace:configure.ac:522: -1- m4_pattern_allow([^NUMDEBUGFILES$])
-m4trace:configure.ac:522: -1- AH_OUTPUT([NUMDEBUGFILES], [/* Default configuration value */
-@%:@undef NUMDEBUGFILES])
+m4trace:configure.ac:522: -1- AC_DEFINE_TRACE_LITERAL([DEFAULT_DEBUG])
+m4trace:configure.ac:522: -1- m4_pattern_allow([^DEFAULT_DEBUG$])
+m4trace:configure.ac:522: -1- AH_OUTPUT([DEFAULT_DEBUG], [/* Default configuration value */
+@%:@undef DEFAULT_DEBUG])
m4trace:configure.ac:523: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:484: PINEVAR is expanded from...
+configure.ac:500: PINEVAR_UNQUOTED is expanded from...
configure.ac:523: the top level])
-m4trace:configure.ac:523: -1- AC_DEFINE_TRACE_LITERAL([DEBUGFILE])
-m4trace:configure.ac:523: -1- m4_pattern_allow([^DEBUGFILE$])
-m4trace:configure.ac:523: -1- AH_OUTPUT([DEBUGFILE], [/* Default configuration value */
-@%:@undef DEBUGFILE])
+m4trace:configure.ac:523: -1- AC_DEFINE_TRACE_LITERAL([NUMDEBUGFILES])
+m4trace:configure.ac:523: -1- m4_pattern_allow([^NUMDEBUGFILES$])
+m4trace:configure.ac:523: -1- AH_OUTPUT([NUMDEBUGFILES], [/* Default configuration value */
+@%:@undef NUMDEBUGFILES])
m4trace:configure.ac:524: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:484: PINEVAR is expanded from...
+configure.ac:485: PINEVAR is expanded from...
configure.ac:524: the top level])
-m4trace:configure.ac:524: -1- AC_DEFINE_TRACE_LITERAL([FORWARDED_FLAG])
-m4trace:configure.ac:524: -1- m4_pattern_allow([^FORWARDED_FLAG$])
-m4trace:configure.ac:524: -1- AH_OUTPUT([FORWARDED_FLAG], [/* Default configuration value */
-@%:@undef FORWARDED_FLAG])
+m4trace:configure.ac:524: -1- AC_DEFINE_TRACE_LITERAL([DEBUGFILE])
+m4trace:configure.ac:524: -1- m4_pattern_allow([^DEBUGFILE$])
+m4trace:configure.ac:524: -1- AH_OUTPUT([DEBUGFILE], [/* Default configuration value */
+@%:@undef DEBUGFILE])
m4trace:configure.ac:525: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:484: PINEVAR is expanded from...
+configure.ac:485: PINEVAR is expanded from...
configure.ac:525: the top level])
-m4trace:configure.ac:525: -1- AC_DEFINE_TRACE_LITERAL([DF_OVERLAP])
-m4trace:configure.ac:525: -1- m4_pattern_allow([^DF_OVERLAP$])
-m4trace:configure.ac:525: -1- AH_OUTPUT([DF_OVERLAP], [/* Default configuration value */
-@%:@undef DF_OVERLAP])
+m4trace:configure.ac:525: -1- AC_DEFINE_TRACE_LITERAL([FORWARDED_FLAG])
+m4trace:configure.ac:525: -1- m4_pattern_allow([^FORWARDED_FLAG$])
+m4trace:configure.ac:525: -1- AH_OUTPUT([FORWARDED_FLAG], [/* Default configuration value */
+@%:@undef FORWARDED_FLAG])
m4trace:configure.ac:526: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:484: PINEVAR is expanded from...
+configure.ac:485: PINEVAR is expanded from...
configure.ac:526: the top level])
-m4trace:configure.ac:526: -1- AC_DEFINE_TRACE_LITERAL([DF_MARGIN])
-m4trace:configure.ac:526: -1- m4_pattern_allow([^DF_MARGIN$])
-m4trace:configure.ac:526: -1- AH_OUTPUT([DF_MARGIN], [/* Default configuration value */
-@%:@undef DF_MARGIN])
+m4trace:configure.ac:526: -1- AC_DEFINE_TRACE_LITERAL([DF_OVERLAP])
+m4trace:configure.ac:526: -1- m4_pattern_allow([^DF_OVERLAP$])
+m4trace:configure.ac:526: -1- AH_OUTPUT([DF_OVERLAP], [/* Default configuration value */
+@%:@undef DF_OVERLAP])
m4trace:configure.ac:527: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:484: PINEVAR is expanded from...
+configure.ac:485: PINEVAR is expanded from...
configure.ac:527: the top level])
-m4trace:configure.ac:527: -1- AC_DEFINE_TRACE_LITERAL([DF_DEFAULT_FCC])
-m4trace:configure.ac:527: -1- m4_pattern_allow([^DF_DEFAULT_FCC$])
-m4trace:configure.ac:527: -1- AH_OUTPUT([DF_DEFAULT_FCC], [/* Default configuration value */
-@%:@undef DF_DEFAULT_FCC])
+m4trace:configure.ac:527: -1- AC_DEFINE_TRACE_LITERAL([DF_MARGIN])
+m4trace:configure.ac:527: -1- m4_pattern_allow([^DF_MARGIN$])
+m4trace:configure.ac:527: -1- AH_OUTPUT([DF_MARGIN], [/* Default configuration value */
+@%:@undef DF_MARGIN])
m4trace:configure.ac:528: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:484: PINEVAR is expanded from...
+configure.ac:485: PINEVAR is expanded from...
configure.ac:528: the top level])
-m4trace:configure.ac:528: -1- AC_DEFINE_TRACE_LITERAL([DEFAULT_SAVE])
-m4trace:configure.ac:528: -1- m4_pattern_allow([^DEFAULT_SAVE$])
-m4trace:configure.ac:528: -1- AH_OUTPUT([DEFAULT_SAVE], [/* Default configuration value */
-@%:@undef DEFAULT_SAVE])
+m4trace:configure.ac:528: -1- AC_DEFINE_TRACE_LITERAL([DF_DEFAULT_FCC])
+m4trace:configure.ac:528: -1- m4_pattern_allow([^DF_DEFAULT_FCC$])
+m4trace:configure.ac:528: -1- AH_OUTPUT([DF_DEFAULT_FCC], [/* Default configuration value */
+@%:@undef DF_DEFAULT_FCC])
m4trace:configure.ac:529: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:484: PINEVAR is expanded from...
+configure.ac:485: PINEVAR is expanded from...
configure.ac:529: the top level])
-m4trace:configure.ac:529: -1- AC_DEFINE_TRACE_LITERAL([POSTPONED_MAIL])
-m4trace:configure.ac:529: -1- m4_pattern_allow([^POSTPONED_MAIL$])
-m4trace:configure.ac:529: -1- AH_OUTPUT([POSTPONED_MAIL], [/* Default configuration value */
-@%:@undef POSTPONED_MAIL])
+m4trace:configure.ac:529: -1- AC_DEFINE_TRACE_LITERAL([DEFAULT_SAVE])
+m4trace:configure.ac:529: -1- m4_pattern_allow([^DEFAULT_SAVE$])
+m4trace:configure.ac:529: -1- AH_OUTPUT([DEFAULT_SAVE], [/* Default configuration value */
+@%:@undef DEFAULT_SAVE])
m4trace:configure.ac:530: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:484: PINEVAR is expanded from...
+configure.ac:485: PINEVAR is expanded from...
configure.ac:530: the top level])
-m4trace:configure.ac:530: -1- AC_DEFINE_TRACE_LITERAL([POSTPONED_MSGS])
-m4trace:configure.ac:530: -1- m4_pattern_allow([^POSTPONED_MSGS$])
-m4trace:configure.ac:530: -1- AH_OUTPUT([POSTPONED_MSGS], [/* Default configuration value */
-@%:@undef POSTPONED_MSGS])
+m4trace:configure.ac:530: -1- AC_DEFINE_TRACE_LITERAL([POSTPONED_MAIL])
+m4trace:configure.ac:530: -1- m4_pattern_allow([^POSTPONED_MAIL$])
+m4trace:configure.ac:530: -1- AH_OUTPUT([POSTPONED_MAIL], [/* Default configuration value */
+@%:@undef POSTPONED_MAIL])
m4trace:configure.ac:531: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:484: PINEVAR is expanded from...
+configure.ac:485: PINEVAR is expanded from...
configure.ac:531: the top level])
-m4trace:configure.ac:531: -1- AC_DEFINE_TRACE_LITERAL([TRASH_FOLDER])
-m4trace:configure.ac:531: -1- m4_pattern_allow([^TRASH_FOLDER$])
-m4trace:configure.ac:531: -1- AH_OUTPUT([TRASH_FOLDER], [/* Default configuration value */
-@%:@undef TRASH_FOLDER])
+m4trace:configure.ac:531: -1- AC_DEFINE_TRACE_LITERAL([POSTPONED_MSGS])
+m4trace:configure.ac:531: -1- m4_pattern_allow([^POSTPONED_MSGS$])
+m4trace:configure.ac:531: -1- AH_OUTPUT([POSTPONED_MSGS], [/* Default configuration value */
+@%:@undef POSTPONED_MSGS])
m4trace:configure.ac:532: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:484: PINEVAR is expanded from...
+configure.ac:485: PINEVAR is expanded from...
configure.ac:532: the top level])
-m4trace:configure.ac:532: -1- AC_DEFINE_TRACE_LITERAL([INTERRUPTED_MAIL])
-m4trace:configure.ac:532: -1- m4_pattern_allow([^INTERRUPTED_MAIL$])
-m4trace:configure.ac:532: -1- AH_OUTPUT([INTERRUPTED_MAIL], [/* Default configuration value */
-@%:@undef INTERRUPTED_MAIL])
+m4trace:configure.ac:532: -1- AC_DEFINE_TRACE_LITERAL([TRASH_FOLDER])
+m4trace:configure.ac:532: -1- m4_pattern_allow([^TRASH_FOLDER$])
+m4trace:configure.ac:532: -1- AH_OUTPUT([TRASH_FOLDER], [/* Default configuration value */
+@%:@undef TRASH_FOLDER])
m4trace:configure.ac:533: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:484: PINEVAR is expanded from...
+configure.ac:485: PINEVAR is expanded from...
configure.ac:533: the top level])
-m4trace:configure.ac:533: -1- AC_DEFINE_TRACE_LITERAL([DEADLETTER])
-m4trace:configure.ac:533: -1- m4_pattern_allow([^DEADLETTER$])
-m4trace:configure.ac:533: -1- AH_OUTPUT([DEADLETTER], [/* Default configuration value */
-@%:@undef DEADLETTER])
+m4trace:configure.ac:533: -1- AC_DEFINE_TRACE_LITERAL([INTERRUPTED_MAIL])
+m4trace:configure.ac:533: -1- m4_pattern_allow([^INTERRUPTED_MAIL$])
+m4trace:configure.ac:533: -1- AH_OUTPUT([INTERRUPTED_MAIL], [/* Default configuration value */
+@%:@undef INTERRUPTED_MAIL])
m4trace:configure.ac:534: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:484: PINEVAR is expanded from...
+configure.ac:485: PINEVAR is expanded from...
configure.ac:534: the top level])
-m4trace:configure.ac:534: -1- AC_DEFINE_TRACE_LITERAL([DF_MAIL_DIRECTORY])
-m4trace:configure.ac:534: -1- m4_pattern_allow([^DF_MAIL_DIRECTORY$])
-m4trace:configure.ac:534: -1- AH_OUTPUT([DF_MAIL_DIRECTORY], [/* Default configuration value */
-@%:@undef DF_MAIL_DIRECTORY])
+m4trace:configure.ac:534: -1- AC_DEFINE_TRACE_LITERAL([DEADLETTER])
+m4trace:configure.ac:534: -1- m4_pattern_allow([^DEADLETTER$])
+m4trace:configure.ac:534: -1- AH_OUTPUT([DEADLETTER], [/* Default configuration value */
+@%:@undef DEADLETTER])
m4trace:configure.ac:535: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:484: PINEVAR is expanded from...
+configure.ac:485: PINEVAR is expanded from...
configure.ac:535: the top level])
-m4trace:configure.ac:535: -1- AC_DEFINE_TRACE_LITERAL([INBOX_NAME])
-m4trace:configure.ac:535: -1- m4_pattern_allow([^INBOX_NAME$])
-m4trace:configure.ac:535: -1- AH_OUTPUT([INBOX_NAME], [/* Default configuration value */
-@%:@undef INBOX_NAME])
+m4trace:configure.ac:535: -1- AC_DEFINE_TRACE_LITERAL([DF_MAIL_DIRECTORY])
+m4trace:configure.ac:535: -1- m4_pattern_allow([^DF_MAIL_DIRECTORY$])
+m4trace:configure.ac:535: -1- AH_OUTPUT([DF_MAIL_DIRECTORY], [/* Default configuration value */
+@%:@undef DF_MAIL_DIRECTORY])
m4trace:configure.ac:536: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:484: PINEVAR is expanded from...
+configure.ac:485: PINEVAR is expanded from...
configure.ac:536: the top level])
-m4trace:configure.ac:536: -1- AC_DEFINE_TRACE_LITERAL([DF_SIGNATURE_FILE])
-m4trace:configure.ac:536: -1- m4_pattern_allow([^DF_SIGNATURE_FILE$])
-m4trace:configure.ac:536: -1- AH_OUTPUT([DF_SIGNATURE_FILE], [/* Default configuration value */
-@%:@undef DF_SIGNATURE_FILE])
+m4trace:configure.ac:536: -1- AC_DEFINE_TRACE_LITERAL([INBOX_NAME])
+m4trace:configure.ac:536: -1- m4_pattern_allow([^INBOX_NAME$])
+m4trace:configure.ac:536: -1- AH_OUTPUT([INBOX_NAME], [/* Default configuration value */
+@%:@undef INBOX_NAME])
m4trace:configure.ac:537: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:484: PINEVAR is expanded from...
+configure.ac:485: PINEVAR is expanded from...
configure.ac:537: the top level])
-m4trace:configure.ac:537: -1- AC_DEFINE_TRACE_LITERAL([DF_ELM_STYLE_SAVE])
-m4trace:configure.ac:537: -1- m4_pattern_allow([^DF_ELM_STYLE_SAVE$])
-m4trace:configure.ac:537: -1- AH_OUTPUT([DF_ELM_STYLE_SAVE], [/* Default configuration value */
-@%:@undef DF_ELM_STYLE_SAVE])
+m4trace:configure.ac:537: -1- AC_DEFINE_TRACE_LITERAL([DF_SIGNATURE_FILE])
+m4trace:configure.ac:537: -1- m4_pattern_allow([^DF_SIGNATURE_FILE$])
+m4trace:configure.ac:537: -1- AH_OUTPUT([DF_SIGNATURE_FILE], [/* Default configuration value */
+@%:@undef DF_SIGNATURE_FILE])
m4trace:configure.ac:538: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:484: PINEVAR is expanded from...
+configure.ac:485: PINEVAR is expanded from...
configure.ac:538: the top level])
-m4trace:configure.ac:538: -1- AC_DEFINE_TRACE_LITERAL([DF_HEADER_IN_REPLY])
-m4trace:configure.ac:538: -1- m4_pattern_allow([^DF_HEADER_IN_REPLY$])
-m4trace:configure.ac:538: -1- AH_OUTPUT([DF_HEADER_IN_REPLY], [/* Default configuration value */
-@%:@undef DF_HEADER_IN_REPLY])
+m4trace:configure.ac:538: -1- AC_DEFINE_TRACE_LITERAL([DF_ELM_STYLE_SAVE])
+m4trace:configure.ac:538: -1- m4_pattern_allow([^DF_ELM_STYLE_SAVE$])
+m4trace:configure.ac:538: -1- AH_OUTPUT([DF_ELM_STYLE_SAVE], [/* Default configuration value */
+@%:@undef DF_ELM_STYLE_SAVE])
m4trace:configure.ac:539: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:484: PINEVAR is expanded from...
+configure.ac:485: PINEVAR is expanded from...
configure.ac:539: the top level])
-m4trace:configure.ac:539: -1- AC_DEFINE_TRACE_LITERAL([DF_OLD_STYLE_REPLY])
-m4trace:configure.ac:539: -1- m4_pattern_allow([^DF_OLD_STYLE_REPLY$])
-m4trace:configure.ac:539: -1- AH_OUTPUT([DF_OLD_STYLE_REPLY], [/* Default configuration value */
-@%:@undef DF_OLD_STYLE_REPLY])
+m4trace:configure.ac:539: -1- AC_DEFINE_TRACE_LITERAL([DF_HEADER_IN_REPLY])
+m4trace:configure.ac:539: -1- m4_pattern_allow([^DF_HEADER_IN_REPLY$])
+m4trace:configure.ac:539: -1- AH_OUTPUT([DF_HEADER_IN_REPLY], [/* Default configuration value */
+@%:@undef DF_HEADER_IN_REPLY])
m4trace:configure.ac:540: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:484: PINEVAR is expanded from...
+configure.ac:485: PINEVAR is expanded from...
configure.ac:540: the top level])
-m4trace:configure.ac:540: -1- AC_DEFINE_TRACE_LITERAL([DF_USE_ONLY_DOMAIN_NAME])
-m4trace:configure.ac:540: -1- m4_pattern_allow([^DF_USE_ONLY_DOMAIN_NAME$])
-m4trace:configure.ac:540: -1- AH_OUTPUT([DF_USE_ONLY_DOMAIN_NAME], [/* Default configuration value */
-@%:@undef DF_USE_ONLY_DOMAIN_NAME])
+m4trace:configure.ac:540: -1- AC_DEFINE_TRACE_LITERAL([DF_OLD_STYLE_REPLY])
+m4trace:configure.ac:540: -1- m4_pattern_allow([^DF_OLD_STYLE_REPLY$])
+m4trace:configure.ac:540: -1- AH_OUTPUT([DF_OLD_STYLE_REPLY], [/* Default configuration value */
+@%:@undef DF_OLD_STYLE_REPLY])
m4trace:configure.ac:541: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:484: PINEVAR is expanded from...
+configure.ac:485: PINEVAR is expanded from...
configure.ac:541: the top level])
-m4trace:configure.ac:541: -1- AC_DEFINE_TRACE_LITERAL([DF_SAVE_BY_SENDER])
-m4trace:configure.ac:541: -1- m4_pattern_allow([^DF_SAVE_BY_SENDER$])
-m4trace:configure.ac:541: -1- AH_OUTPUT([DF_SAVE_BY_SENDER], [/* Default configuration value */
-@%:@undef DF_SAVE_BY_SENDER])
+m4trace:configure.ac:541: -1- AC_DEFINE_TRACE_LITERAL([DF_USE_ONLY_DOMAIN_NAME])
+m4trace:configure.ac:541: -1- m4_pattern_allow([^DF_USE_ONLY_DOMAIN_NAME$])
+m4trace:configure.ac:541: -1- AH_OUTPUT([DF_USE_ONLY_DOMAIN_NAME], [/* Default configuration value */
+@%:@undef DF_USE_ONLY_DOMAIN_NAME])
m4trace:configure.ac:542: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:484: PINEVAR is expanded from...
+configure.ac:485: PINEVAR is expanded from...
configure.ac:542: the top level])
-m4trace:configure.ac:542: -1- AC_DEFINE_TRACE_LITERAL([DF_SORT_KEY])
-m4trace:configure.ac:542: -1- m4_pattern_allow([^DF_SORT_KEY$])
-m4trace:configure.ac:542: -1- AH_OUTPUT([DF_SORT_KEY], [/* Default configuration value */
-@%:@undef DF_SORT_KEY])
+m4trace:configure.ac:542: -1- AC_DEFINE_TRACE_LITERAL([DF_SAVE_BY_SENDER])
+m4trace:configure.ac:542: -1- m4_pattern_allow([^DF_SAVE_BY_SENDER$])
+m4trace:configure.ac:542: -1- AH_OUTPUT([DF_SAVE_BY_SENDER], [/* Default configuration value */
+@%:@undef DF_SAVE_BY_SENDER])
m4trace:configure.ac:543: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:484: PINEVAR is expanded from...
+configure.ac:485: PINEVAR is expanded from...
configure.ac:543: the top level])
-m4trace:configure.ac:543: -1- AC_DEFINE_TRACE_LITERAL([DF_AB_SORT_RULE])
-m4trace:configure.ac:543: -1- m4_pattern_allow([^DF_AB_SORT_RULE$])
-m4trace:configure.ac:543: -1- AH_OUTPUT([DF_AB_SORT_RULE], [/* Default configuration value */
-@%:@undef DF_AB_SORT_RULE])
+m4trace:configure.ac:543: -1- AC_DEFINE_TRACE_LITERAL([DF_SORT_KEY])
+m4trace:configure.ac:543: -1- m4_pattern_allow([^DF_SORT_KEY$])
+m4trace:configure.ac:543: -1- AH_OUTPUT([DF_SORT_KEY], [/* Default configuration value */
+@%:@undef DF_SORT_KEY])
m4trace:configure.ac:544: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:484: PINEVAR is expanded from...
+configure.ac:485: PINEVAR is expanded from...
configure.ac:544: the top level])
-m4trace:configure.ac:544: -1- AC_DEFINE_TRACE_LITERAL([DF_FLD_SORT_RULE])
-m4trace:configure.ac:544: -1- m4_pattern_allow([^DF_FLD_SORT_RULE$])
-m4trace:configure.ac:544: -1- AH_OUTPUT([DF_FLD_SORT_RULE], [/* Default configuration value */
-@%:@undef DF_FLD_SORT_RULE])
+m4trace:configure.ac:544: -1- AC_DEFINE_TRACE_LITERAL([DF_AB_SORT_RULE])
+m4trace:configure.ac:544: -1- m4_pattern_allow([^DF_AB_SORT_RULE$])
+m4trace:configure.ac:544: -1- AH_OUTPUT([DF_AB_SORT_RULE], [/* Default configuration value */
+@%:@undef DF_AB_SORT_RULE])
m4trace:configure.ac:545: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:484: PINEVAR is expanded from...
+configure.ac:485: PINEVAR is expanded from...
configure.ac:545: the top level])
-m4trace:configure.ac:545: -1- AC_DEFINE_TRACE_LITERAL([DF_SAVED_MSG_NAME_RULE])
-m4trace:configure.ac:545: -1- m4_pattern_allow([^DF_SAVED_MSG_NAME_RULE$])
-m4trace:configure.ac:545: -1- AH_OUTPUT([DF_SAVED_MSG_NAME_RULE], [/* Default configuration value */
-@%:@undef DF_SAVED_MSG_NAME_RULE])
+m4trace:configure.ac:545: -1- AC_DEFINE_TRACE_LITERAL([DF_FLD_SORT_RULE])
+m4trace:configure.ac:545: -1- m4_pattern_allow([^DF_FLD_SORT_RULE$])
+m4trace:configure.ac:545: -1- AH_OUTPUT([DF_FLD_SORT_RULE], [/* Default configuration value */
+@%:@undef DF_FLD_SORT_RULE])
m4trace:configure.ac:546: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:484: PINEVAR is expanded from...
+configure.ac:485: PINEVAR is expanded from...
configure.ac:546: the top level])
-m4trace:configure.ac:546: -1- AC_DEFINE_TRACE_LITERAL([DF_FCC_RULE])
-m4trace:configure.ac:546: -1- m4_pattern_allow([^DF_FCC_RULE$])
-m4trace:configure.ac:546: -1- AH_OUTPUT([DF_FCC_RULE], [/* Default configuration value */
-@%:@undef DF_FCC_RULE])
+m4trace:configure.ac:546: -1- AC_DEFINE_TRACE_LITERAL([DF_SAVED_MSG_NAME_RULE])
+m4trace:configure.ac:546: -1- m4_pattern_allow([^DF_SAVED_MSG_NAME_RULE$])
+m4trace:configure.ac:546: -1- AH_OUTPUT([DF_SAVED_MSG_NAME_RULE], [/* Default configuration value */
+@%:@undef DF_SAVED_MSG_NAME_RULE])
m4trace:configure.ac:547: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:484: PINEVAR is expanded from...
+configure.ac:485: PINEVAR is expanded from...
configure.ac:547: the top level])
-m4trace:configure.ac:547: -1- AC_DEFINE_TRACE_LITERAL([DF_STANDARD_PRINTER])
-m4trace:configure.ac:547: -1- m4_pattern_allow([^DF_STANDARD_PRINTER$])
-m4trace:configure.ac:547: -1- AH_OUTPUT([DF_STANDARD_PRINTER], [/* Default configuration value */
-@%:@undef DF_STANDARD_PRINTER])
+m4trace:configure.ac:547: -1- AC_DEFINE_TRACE_LITERAL([DF_FCC_RULE])
+m4trace:configure.ac:547: -1- m4_pattern_allow([^DF_FCC_RULE$])
+m4trace:configure.ac:547: -1- AH_OUTPUT([DF_FCC_RULE], [/* Default configuration value */
+@%:@undef DF_FCC_RULE])
m4trace:configure.ac:548: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:484: PINEVAR is expanded from...
+configure.ac:485: PINEVAR is expanded from...
configure.ac:548: the top level])
-m4trace:configure.ac:548: -1- AC_DEFINE_TRACE_LITERAL([ANSI_PRINTER])
-m4trace:configure.ac:548: -1- m4_pattern_allow([^ANSI_PRINTER$])
-m4trace:configure.ac:548: -1- AH_OUTPUT([ANSI_PRINTER], [/* Default configuration value */
-@%:@undef ANSI_PRINTER])
+m4trace:configure.ac:548: -1- AC_DEFINE_TRACE_LITERAL([DF_STANDARD_PRINTER])
+m4trace:configure.ac:548: -1- m4_pattern_allow([^DF_STANDARD_PRINTER$])
+m4trace:configure.ac:548: -1- AH_OUTPUT([DF_STANDARD_PRINTER], [/* Default configuration value */
+@%:@undef DF_STANDARD_PRINTER])
m4trace:configure.ac:549: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:484: PINEVAR is expanded from...
+configure.ac:485: PINEVAR is expanded from...
configure.ac:549: the top level])
-m4trace:configure.ac:549: -1- AC_DEFINE_TRACE_LITERAL([DF_ADDRESSBOOK])
-m4trace:configure.ac:549: -1- m4_pattern_allow([^DF_ADDRESSBOOK$])
-m4trace:configure.ac:549: -1- AH_OUTPUT([DF_ADDRESSBOOK], [/* Default configuration value */
-@%:@undef DF_ADDRESSBOOK])
+m4trace:configure.ac:549: -1- AC_DEFINE_TRACE_LITERAL([ANSI_PRINTER])
+m4trace:configure.ac:549: -1- m4_pattern_allow([^ANSI_PRINTER$])
+m4trace:configure.ac:549: -1- AH_OUTPUT([ANSI_PRINTER], [/* Default configuration value */
+@%:@undef ANSI_PRINTER])
m4trace:configure.ac:550: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:484: PINEVAR is expanded from...
+configure.ac:485: PINEVAR is expanded from...
configure.ac:550: the top level])
-m4trace:configure.ac:550: -1- AC_DEFINE_TRACE_LITERAL([DF_LOCAL_FULLNAME])
-m4trace:configure.ac:550: -1- m4_pattern_allow([^DF_LOCAL_FULLNAME$])
-m4trace:configure.ac:550: -1- AH_OUTPUT([DF_LOCAL_FULLNAME], [/* Default configuration value */
-@%:@undef DF_LOCAL_FULLNAME])
+m4trace:configure.ac:550: -1- AC_DEFINE_TRACE_LITERAL([DF_ADDRESSBOOK])
+m4trace:configure.ac:550: -1- m4_pattern_allow([^DF_ADDRESSBOOK$])
+m4trace:configure.ac:550: -1- AH_OUTPUT([DF_ADDRESSBOOK], [/* Default configuration value */
+@%:@undef DF_ADDRESSBOOK])
m4trace:configure.ac:551: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:484: PINEVAR is expanded from...
+configure.ac:485: PINEVAR is expanded from...
configure.ac:551: the top level])
-m4trace:configure.ac:551: -1- AC_DEFINE_TRACE_LITERAL([DF_LOCAL_ADDRESS])
-m4trace:configure.ac:551: -1- m4_pattern_allow([^DF_LOCAL_ADDRESS$])
-m4trace:configure.ac:551: -1- AH_OUTPUT([DF_LOCAL_ADDRESS], [/* Default configuration value */
-@%:@undef DF_LOCAL_ADDRESS])
+m4trace:configure.ac:551: -1- AC_DEFINE_TRACE_LITERAL([DF_LOCAL_FULLNAME])
+m4trace:configure.ac:551: -1- m4_pattern_allow([^DF_LOCAL_FULLNAME$])
+m4trace:configure.ac:551: -1- AH_OUTPUT([DF_LOCAL_FULLNAME], [/* Default configuration value */
+@%:@undef DF_LOCAL_FULLNAME])
m4trace:configure.ac:552: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:484: PINEVAR is expanded from...
+configure.ac:485: PINEVAR is expanded from...
configure.ac:552: the top level])
-m4trace:configure.ac:552: -1- AC_DEFINE_TRACE_LITERAL([DF_KBLOCK_PASSWD_COUNT])
-m4trace:configure.ac:552: -1- m4_pattern_allow([^DF_KBLOCK_PASSWD_COUNT$])
-m4trace:configure.ac:552: -1- AH_OUTPUT([DF_KBLOCK_PASSWD_COUNT], [/* Default configuration value */
-@%:@undef DF_KBLOCK_PASSWD_COUNT])
+m4trace:configure.ac:552: -1- AC_DEFINE_TRACE_LITERAL([DF_LOCAL_ADDRESS])
+m4trace:configure.ac:552: -1- m4_pattern_allow([^DF_LOCAL_ADDRESS$])
+m4trace:configure.ac:552: -1- AH_OUTPUT([DF_LOCAL_ADDRESS], [/* Default configuration value */
+@%:@undef DF_LOCAL_ADDRESS])
m4trace:configure.ac:553: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:484: PINEVAR is expanded from...
+configure.ac:485: PINEVAR is expanded from...
configure.ac:553: the top level])
-m4trace:configure.ac:553: -1- AC_DEFINE_TRACE_LITERAL([DF_REMOTE_ABOOK_HISTORY])
-m4trace:configure.ac:553: -1- m4_pattern_allow([^DF_REMOTE_ABOOK_HISTORY$])
-m4trace:configure.ac:553: -1- AH_OUTPUT([DF_REMOTE_ABOOK_HISTORY], [/* Default configuration value */
-@%:@undef DF_REMOTE_ABOOK_HISTORY])
+m4trace:configure.ac:553: -1- AC_DEFINE_TRACE_LITERAL([DF_KBLOCK_PASSWD_COUNT])
+m4trace:configure.ac:553: -1- m4_pattern_allow([^DF_KBLOCK_PASSWD_COUNT$])
+m4trace:configure.ac:553: -1- AH_OUTPUT([DF_KBLOCK_PASSWD_COUNT], [/* Default configuration value */
+@%:@undef DF_KBLOCK_PASSWD_COUNT])
m4trace:configure.ac:554: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:484: PINEVAR is expanded from...
+configure.ac:485: PINEVAR is expanded from...
configure.ac:554: the top level])
-m4trace:configure.ac:554: -1- AC_DEFINE_TRACE_LITERAL([DF_PUBLICCERT_DIR])
-m4trace:configure.ac:554: -1- m4_pattern_allow([^DF_PUBLICCERT_DIR$])
-m4trace:configure.ac:554: -1- AH_OUTPUT([DF_PUBLICCERT_DIR], [/* Default configuration value */
-@%:@undef DF_PUBLICCERT_DIR])
+m4trace:configure.ac:554: -1- AC_DEFINE_TRACE_LITERAL([DF_REMOTE_ABOOK_HISTORY])
+m4trace:configure.ac:554: -1- m4_pattern_allow([^DF_REMOTE_ABOOK_HISTORY$])
+m4trace:configure.ac:554: -1- AH_OUTPUT([DF_REMOTE_ABOOK_HISTORY], [/* Default configuration value */
+@%:@undef DF_REMOTE_ABOOK_HISTORY])
m4trace:configure.ac:555: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:484: PINEVAR is expanded from...
+configure.ac:485: PINEVAR is expanded from...
configure.ac:555: the top level])
-m4trace:configure.ac:555: -1- AC_DEFINE_TRACE_LITERAL([DF_PRIVATEKEY_DIR])
-m4trace:configure.ac:555: -1- m4_pattern_allow([^DF_PRIVATEKEY_DIR$])
-m4trace:configure.ac:555: -1- AH_OUTPUT([DF_PRIVATEKEY_DIR], [/* Default configuration value */
-@%:@undef DF_PRIVATEKEY_DIR])
+m4trace:configure.ac:555: -1- AC_DEFINE_TRACE_LITERAL([DF_PUBLICCERT_DIR])
+m4trace:configure.ac:555: -1- m4_pattern_allow([^DF_PUBLICCERT_DIR$])
+m4trace:configure.ac:555: -1- AH_OUTPUT([DF_PUBLICCERT_DIR], [/* Default configuration value */
+@%:@undef DF_PUBLICCERT_DIR])
m4trace:configure.ac:556: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:484: PINEVAR is expanded from...
+configure.ac:485: PINEVAR is expanded from...
configure.ac:556: the top level])
-m4trace:configure.ac:556: -1- AC_DEFINE_TRACE_LITERAL([DF_CACERT_DIR])
-m4trace:configure.ac:556: -1- m4_pattern_allow([^DF_CACERT_DIR$])
-m4trace:configure.ac:556: -1- AH_OUTPUT([DF_CACERT_DIR], [/* Default configuration value */
-@%:@undef DF_CACERT_DIR])
+m4trace:configure.ac:556: -1- AC_DEFINE_TRACE_LITERAL([DF_PRIVATEKEY_DIR])
+m4trace:configure.ac:556: -1- m4_pattern_allow([^DF_PRIVATEKEY_DIR$])
+m4trace:configure.ac:556: -1- AH_OUTPUT([DF_PRIVATEKEY_DIR], [/* Default configuration value */
+@%:@undef DF_PRIVATEKEY_DIR])
m4trace:configure.ac:557: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:499: PINEVAR_UNQUOTED is expanded from...
+configure.ac:485: PINEVAR is expanded from...
configure.ac:557: the top level])
-m4trace:configure.ac:557: -1- AC_DEFINE_TRACE_LITERAL([DF_DEFAULT_PRINTER])
-m4trace:configure.ac:557: -1- m4_pattern_allow([^DF_DEFAULT_PRINTER$])
-m4trace:configure.ac:557: -1- AH_OUTPUT([DF_DEFAULT_PRINTER], [/* Default configuration value */
+m4trace:configure.ac:557: -1- AC_DEFINE_TRACE_LITERAL([DF_CACERT_DIR])
+m4trace:configure.ac:557: -1- m4_pattern_allow([^DF_CACERT_DIR$])
+m4trace:configure.ac:557: -1- AH_OUTPUT([DF_CACERT_DIR], [/* Default configuration value */
+@%:@undef DF_CACERT_DIR])
+m4trace:configure.ac:558: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
+You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
+configure.ac:500: PINEVAR_UNQUOTED is expanded from...
+configure.ac:558: the top level])
+m4trace:configure.ac:558: -1- AC_DEFINE_TRACE_LITERAL([DF_DEFAULT_PRINTER])
+m4trace:configure.ac:558: -1- m4_pattern_allow([^DF_DEFAULT_PRINTER$])
+m4trace:configure.ac:558: -1- AH_OUTPUT([DF_DEFAULT_PRINTER], [/* Default configuration value */
@%:@undef DF_DEFAULT_PRINTER])
-m4trace:configure.ac:561: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
+m4trace:configure.ac:562: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:561: the top level])
-m4trace:configure.ac:576: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
+configure.ac:562: the top level])
+m4trace:configure.ac:577: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:576: the top level])
-m4trace:configure.ac:583: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
+configure.ac:577: the top level])
+m4trace:configure.ac:584: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:583: the top level])
-m4trace:configure.ac:597: -1- AC_DEFINE_TRACE_LITERAL([PASSFILE])
-m4trace:configure.ac:597: -1- m4_pattern_allow([^PASSFILE$])
-m4trace:configure.ac:597: -1- AH_OUTPUT([PASSFILE], [/* Password cache file (NOT secure. NOT recommended) */
+configure.ac:584: the top level])
+m4trace:configure.ac:598: -1- AC_DEFINE_TRACE_LITERAL([PASSFILE])
+m4trace:configure.ac:598: -1- m4_pattern_allow([^PASSFILE$])
+m4trace:configure.ac:598: -1- AH_OUTPUT([PASSFILE], [/* Password cache file (NOT secure. NOT recommended) */
@%:@undef PASSFILE])
-m4trace:configure.ac:602: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
+m4trace:configure.ac:603: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:602: the top level])
-m4trace:configure.ac:601: -1- AC_DEFINE_TRACE_LITERAL([DF_SSHPATH])
-m4trace:configure.ac:601: -1- m4_pattern_allow([^DF_SSHPATH$])
-m4trace:configure.ac:601: -1- AH_OUTPUT([DF_SSHPATH], [/* set default value of ssh command path (defining should cause ssh to be
+configure.ac:603: the top level])
+m4trace:configure.ac:602: -1- AC_DEFINE_TRACE_LITERAL([DF_SSHPATH])
+m4trace:configure.ac:602: -1- m4_pattern_allow([^DF_SSHPATH$])
+m4trace:configure.ac:602: -1- AH_OUTPUT([DF_SSHPATH], [/* set default value of ssh command path (defining should cause ssh to be
preferred to rsh) */
@%:@undef DF_SSHPATH])
-m4trace:configure.ac:617: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
+m4trace:configure.ac:618: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:617: the top level])
-m4trace:configure.ac:616: -1- AC_DEFINE_TRACE_LITERAL([DF_SSHCMD])
-m4trace:configure.ac:616: -1- m4_pattern_allow([^DF_SSHCMD$])
-m4trace:configure.ac:616: -1- AH_OUTPUT([DF_SSHCMD], [/* set default value of ssh command string (usually "%s %s -l %s exec
+configure.ac:618: the top level])
+m4trace:configure.ac:617: -1- AC_DEFINE_TRACE_LITERAL([DF_SSHCMD])
+m4trace:configure.ac:617: -1- m4_pattern_allow([^DF_SSHCMD$])
+m4trace:configure.ac:617: -1- AH_OUTPUT([DF_SSHCMD], [/* set default value of ssh command string (usually "%s %s -l %s exec
/etc/r%sd") */
@%:@undef DF_SSHCMD])
-m4trace:configure.ac:633: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
+m4trace:configure.ac:634: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:633: the top level])
-m4trace:configure.ac:696: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
+configure.ac:634: the top level])
+m4trace:configure.ac:697: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:696: the top level])
-m4trace:configure.ac:704: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
+configure.ac:697: the top level])
+m4trace:configure.ac:705: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:704: the top level])
-m4trace:configure.ac:712: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
+configure.ac:705: the top level])
+m4trace:configure.ac:713: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:712: the top level])
-m4trace:configure.ac:720: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
+configure.ac:713: the top level])
+m4trace:configure.ac:721: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:720: the top level])
-m4trace:configure.ac:742: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
+configure.ac:721: the top level])
+m4trace:configure.ac:743: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:742: the top level])
-m4trace:configure.ac:751: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
+configure.ac:743: the top level])
+m4trace:configure.ac:752: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:751: the top level])
-m4trace:configure.ac:760: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
+configure.ac:752: the top level])
+m4trace:configure.ac:761: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:760: the top level])
-m4trace:configure.ac:768: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
+configure.ac:761: the top level])
+m4trace:configure.ac:769: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:768: the top level])
-m4trace:configure.ac:778: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
+configure.ac:769: the top level])
+m4trace:configure.ac:779: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:778: the top level])
-m4trace:configure.ac:789: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
+configure.ac:779: the top level])
+m4trace:configure.ac:790: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:789: the top level])
-m4trace:configure.ac:798: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
+configure.ac:790: the top level])
+m4trace:configure.ac:799: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:798: the top level])
-m4trace:configure.ac:806: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
+configure.ac:799: the top level])
+m4trace:configure.ac:807: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:806: the top level])
-m4trace:configure.ac:816: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
+configure.ac:807: the top level])
+m4trace:configure.ac:817: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:816: the top level])
-m4trace:configure.ac:821: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
+configure.ac:817: the top level])
+m4trace:configure.ac:822: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:821: the top level])
-m4trace:configure.ac:829: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
+configure.ac:822: the top level])
+m4trace:configure.ac:830: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:829: the top level])
-m4trace:configure.ac:836: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
+configure.ac:830: the top level])
+m4trace:configure.ac:837: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:836: the top level])
-m4trace:configure.ac:846: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
+configure.ac:837: the top level])
+m4trace:configure.ac:847: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:846: the top level])
-m4trace:configure.ac:850: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
+configure.ac:847: the top level])
+m4trace:configure.ac:851: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:850: the top level])
-m4trace:configure.ac:854: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
+configure.ac:851: the top level])
+m4trace:configure.ac:855: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:854: the top level])
-m4trace:configure.ac:862: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
+configure.ac:855: the top level])
+m4trace:configure.ac:863: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:862: the top level])
-m4trace:configure.ac:872: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
+configure.ac:863: the top level])
+m4trace:configure.ac:873: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:872: the top level])
-m4trace:configure.ac:893: -1- _m4_warn([obsolete], [The macro `AC_ERROR' is obsolete.
+configure.ac:873: the top level])
+m4trace:configure.ac:894: -1- _m4_warn([obsolete], [The macro `AC_ERROR' is obsolete.
You should run autoupdate.], [../../lib/autoconf/oldnames.m4:34: AC_ERROR is expanded from...
../../lib/m4sugar/m4sh.m4:606: AS_IF is expanded from...
../../lib/autoconf/libs.m4:100: AC_CHECK_LIB is expanded from...
-configure.ac:893: the top level])
-m4trace:configure.ac:900: -1- _m4_warn([obsolete], [The macro `AC_ERROR' is obsolete.
+configure.ac:894: the top level])
+m4trace:configure.ac:901: -1- _m4_warn([obsolete], [The macro `AC_ERROR' is obsolete.
You should run autoupdate.], [../../lib/autoconf/oldnames.m4:34: AC_ERROR is expanded from...
../../lib/m4sugar/m4sh.m4:606: AS_IF is expanded from...
../../lib/autoconf/libs.m4:100: AC_CHECK_LIB is expanded from...
@@ -1305,194 +1305,194 @@ You should run autoupdate.], [../../lib/autoconf/oldnames.m4:34: AC_ERROR is exp
../../lib/autoconf/libs.m4:100: AC_CHECK_LIB is expanded from...
../../lib/m4sugar/m4sh.m4:606: AS_IF is expanded from...
../../lib/autoconf/libs.m4:100: AC_CHECK_LIB is expanded from...
-configure.ac:900: the top level])
-m4trace:configure.ac:938: -1- AC_DEFINE_TRACE_LITERAL([HAS_TERMINFO])
-m4trace:configure.ac:938: -1- m4_pattern_allow([^HAS_TERMINFO$])
-m4trace:configure.ac:938: -1- AH_OUTPUT([HAS_TERMINFO], [/* Define if systems uses terminfo terminal database */
+configure.ac:901: the top level])
+m4trace:configure.ac:939: -1- AC_DEFINE_TRACE_LITERAL([HAS_TERMINFO])
+m4trace:configure.ac:939: -1- m4_pattern_allow([^HAS_TERMINFO$])
+m4trace:configure.ac:939: -1- AH_OUTPUT([HAS_TERMINFO], [/* Define if systems uses terminfo terminal database */
@%:@undef HAS_TERMINFO])
-m4trace:configure.ac:941: -1- AC_DEFINE_TRACE_LITERAL([HAS_TERMCAP])
-m4trace:configure.ac:941: -1- m4_pattern_allow([^HAS_TERMCAP$])
-m4trace:configure.ac:941: -1- AH_OUTPUT([HAS_TERMCAP], [/* Define if systems uses termcap terminal database */
+m4trace:configure.ac:942: -1- AC_DEFINE_TRACE_LITERAL([HAS_TERMCAP])
+m4trace:configure.ac:942: -1- m4_pattern_allow([^HAS_TERMCAP$])
+m4trace:configure.ac:942: -1- AH_OUTPUT([HAS_TERMCAP], [/* Define if systems uses termcap terminal database */
@%:@undef HAS_TERMCAP])
-m4trace:configure.ac:965: -1- AC_DEFINE_TRACE_LITERAL([ENABLE_LDAP])
-m4trace:configure.ac:965: -1- m4_pattern_allow([^ENABLE_LDAP$])
-m4trace:configure.ac:965: -1- AH_OUTPUT([ENABLE_LDAP], [/* Enable LDAP query support */
+m4trace:configure.ac:966: -1- AC_DEFINE_TRACE_LITERAL([ENABLE_LDAP])
+m4trace:configure.ac:966: -1- m4_pattern_allow([^ENABLE_LDAP$])
+m4trace:configure.ac:966: -1- AH_OUTPUT([ENABLE_LDAP], [/* Enable LDAP query support */
@%:@undef ENABLE_LDAP])
-m4trace:configure.ac:970: -1- AC_DEFINE_TRACE_LITERAL([LDAP_DEPRECATED])
-m4trace:configure.ac:970: -1- m4_pattern_allow([^LDAP_DEPRECATED$])
-m4trace:configure.ac:970: -1- AH_OUTPUT([LDAP_DEPRECATED], [/* Define if you use OpenLDAP 2.3.x deprecated functions */
+m4trace:configure.ac:971: -1- AC_DEFINE_TRACE_LITERAL([LDAP_DEPRECATED])
+m4trace:configure.ac:971: -1- m4_pattern_allow([^LDAP_DEPRECATED$])
+m4trace:configure.ac:971: -1- AH_OUTPUT([LDAP_DEPRECATED], [/* Define if you use OpenLDAP 2.3.x deprecated functions */
@%:@undef LDAP_DEPRECATED])
-m4trace:configure.ac:1054: -1- _m4_warn([cross], [cannot check for file existence when cross compiling], [../../lib/autoconf/general.m4:2778: AC_CHECK_FILE is expanded from...
+m4trace:configure.ac:1055: -1- _m4_warn([cross], [cannot check for file existence when cross compiling], [../../lib/autoconf/general.m4:2778: AC_CHECK_FILE is expanded from...
../../lib/m4sugar/m4sh.m4:606: AS_IF is expanded from...
../../lib/autoconf/headers.m4:129: _AC_CHECK_HEADER_MONGREL is expanded from...
../../lib/autoconf/headers.m4:67: AC_CHECK_HEADER is expanded from...
-configure.ac:1054: the top level])
-m4trace:configure.ac:1072: -1- _m4_warn([obsolete], [The macro `AC_ERROR' is obsolete.
+configure.ac:1055: the top level])
+m4trace:configure.ac:1073: -1- _m4_warn([obsolete], [The macro `AC_ERROR' is obsolete.
You should run autoupdate.], [../../lib/autoconf/oldnames.m4:34: AC_ERROR is expanded from...
../../lib/m4sugar/m4sh.m4:606: AS_IF is expanded from...
../../lib/autoconf/libs.m4:48: AC_SEARCH_LIBS is expanded from...
-configure.ac:1072: the top level])
-m4trace:configure.ac:1082: -1- _m4_warn([obsolete], [The macro `AC_ERROR' is obsolete.
+configure.ac:1073: the top level])
+m4trace:configure.ac:1083: -1- _m4_warn([obsolete], [The macro `AC_ERROR' is obsolete.
You should run autoupdate.], [../../lib/autoconf/oldnames.m4:34: AC_ERROR is expanded from...
../../lib/m4sugar/m4sh.m4:606: AS_IF is expanded from...
../../lib/autoconf/headers.m4:129: _AC_CHECK_HEADER_MONGREL is expanded from...
../../lib/autoconf/headers.m4:67: AC_CHECK_HEADER is expanded from...
-configure.ac:1082: the top level])
-m4trace:configure.ac:1091: -1- AC_DEFINE_TRACE_LITERAL([HAVE_REGEX_H])
-m4trace:configure.ac:1091: -1- m4_pattern_allow([^HAVE_REGEX_H$])
-m4trace:configure.ac:1091: -1- AH_OUTPUT([HAVE_REGEX_H], [/* Regular expression header file exists */
+configure.ac:1083: the top level])
+m4trace:configure.ac:1092: -1- AC_DEFINE_TRACE_LITERAL([HAVE_REGEX_H])
+m4trace:configure.ac:1092: -1- m4_pattern_allow([^HAVE_REGEX_H$])
+m4trace:configure.ac:1092: -1- AH_OUTPUT([HAVE_REGEX_H], [/* Regular expression header file exists */
@%:@undef HAVE_REGEX_H])
-m4trace:configure.ac:1100: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete.
+m4trace:configure.ac:1101: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete.
You should run autoupdate.], [../../lib/autoconf/lang.m4:126: AC_LANG_SAVE is expanded from...
m4/acx_pthread.m4:49: ACX_PTHREAD is expanded from...
-configure.ac:1100: the top level])
-m4trace:configure.ac:1100: -1- _m4_warn([obsolete], [The macro `AC_LANG_C' is obsolete.
+configure.ac:1101: the top level])
+m4trace:configure.ac:1101: -1- _m4_warn([obsolete], [The macro `AC_LANG_C' is obsolete.
You should run autoupdate.], [../../lib/autoconf/c.m4:73: AC_LANG_C is expanded from...
m4/acx_pthread.m4:49: ACX_PTHREAD is expanded from...
-configure.ac:1100: the top level])
-m4trace:configure.ac:1100: -1- AC_SUBST([acx_pthread_config])
-m4trace:configure.ac:1100: -1- AC_SUBST_TRACE([acx_pthread_config])
-m4trace:configure.ac:1100: -1- m4_pattern_allow([^acx_pthread_config$])
-m4trace:configure.ac:1100: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
+configure.ac:1101: the top level])
+m4trace:configure.ac:1101: -1- AC_SUBST([acx_pthread_config])
+m4trace:configure.ac:1101: -1- AC_SUBST_TRACE([acx_pthread_config])
+m4trace:configure.ac:1101: -1- m4_pattern_allow([^acx_pthread_config$])
+m4trace:configure.ac:1101: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:2688: AC_TRY_LINK is expanded from...
m4/acx_pthread.m4:49: ACX_PTHREAD is expanded from...
-configure.ac:1100: the top level])
-m4trace:configure.ac:1100: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
+configure.ac:1101: the top level])
+m4trace:configure.ac:1101: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:2688: AC_TRY_LINK is expanded from...
m4/acx_pthread.m4:49: ACX_PTHREAD is expanded from...
-configure.ac:1100: the top level])
-m4trace:configure.ac:1100: -1- AC_DEFINE_TRACE_LITERAL([PTHREAD_CREATE_JOINABLE])
-m4trace:configure.ac:1100: -1- m4_pattern_allow([^PTHREAD_CREATE_JOINABLE$])
-m4trace:configure.ac:1100: -1- AH_OUTPUT([PTHREAD_CREATE_JOINABLE], [/* Define to necessary symbol if this constant uses a non-standard name on
+configure.ac:1101: the top level])
+m4trace:configure.ac:1101: -1- AC_DEFINE_TRACE_LITERAL([PTHREAD_CREATE_JOINABLE])
+m4trace:configure.ac:1101: -1- m4_pattern_allow([^PTHREAD_CREATE_JOINABLE$])
+m4trace:configure.ac:1101: -1- AH_OUTPUT([PTHREAD_CREATE_JOINABLE], [/* Define to necessary symbol if this constant uses a non-standard name on
your system. */
@%:@undef PTHREAD_CREATE_JOINABLE])
-m4trace:configure.ac:1100: -1- AC_SUBST([PTHREAD_CC])
-m4trace:configure.ac:1100: -1- AC_SUBST_TRACE([PTHREAD_CC])
-m4trace:configure.ac:1100: -1- m4_pattern_allow([^PTHREAD_CC$])
-m4trace:configure.ac:1100: -1- AC_SUBST([PTHREAD_LIBS])
-m4trace:configure.ac:1100: -1- AC_SUBST_TRACE([PTHREAD_LIBS])
-m4trace:configure.ac:1100: -1- m4_pattern_allow([^PTHREAD_LIBS$])
-m4trace:configure.ac:1100: -1- AC_SUBST([PTHREAD_CFLAGS])
-m4trace:configure.ac:1100: -1- AC_SUBST_TRACE([PTHREAD_CFLAGS])
-m4trace:configure.ac:1100: -1- m4_pattern_allow([^PTHREAD_CFLAGS$])
-m4trace:configure.ac:1100: -1- AC_SUBST([PTHREAD_CC])
-m4trace:configure.ac:1100: -1- AC_SUBST_TRACE([PTHREAD_CC])
-m4trace:configure.ac:1100: -1- m4_pattern_allow([^PTHREAD_CC$])
-m4trace:configure.ac:1100: -2- AC_DEFINE_TRACE_LITERAL([HAVE_PTHREAD])
-m4trace:configure.ac:1100: -2- m4_pattern_allow([^HAVE_PTHREAD$])
-m4trace:configure.ac:1100: -2- AH_OUTPUT([HAVE_PTHREAD], [/* Define if you have POSIX threads libraries and header files. */
+m4trace:configure.ac:1101: -1- AC_SUBST([PTHREAD_CC])
+m4trace:configure.ac:1101: -1- AC_SUBST_TRACE([PTHREAD_CC])
+m4trace:configure.ac:1101: -1- m4_pattern_allow([^PTHREAD_CC$])
+m4trace:configure.ac:1101: -1- AC_SUBST([PTHREAD_LIBS])
+m4trace:configure.ac:1101: -1- AC_SUBST_TRACE([PTHREAD_LIBS])
+m4trace:configure.ac:1101: -1- m4_pattern_allow([^PTHREAD_LIBS$])
+m4trace:configure.ac:1101: -1- AC_SUBST([PTHREAD_CFLAGS])
+m4trace:configure.ac:1101: -1- AC_SUBST_TRACE([PTHREAD_CFLAGS])
+m4trace:configure.ac:1101: -1- m4_pattern_allow([^PTHREAD_CFLAGS$])
+m4trace:configure.ac:1101: -1- AC_SUBST([PTHREAD_CC])
+m4trace:configure.ac:1101: -1- AC_SUBST_TRACE([PTHREAD_CC])
+m4trace:configure.ac:1101: -1- m4_pattern_allow([^PTHREAD_CC$])
+m4trace:configure.ac:1101: -2- AC_DEFINE_TRACE_LITERAL([HAVE_PTHREAD])
+m4trace:configure.ac:1101: -2- m4_pattern_allow([^HAVE_PTHREAD$])
+m4trace:configure.ac:1101: -2- AH_OUTPUT([HAVE_PTHREAD], [/* Define if you have POSIX threads libraries and header files. */
@%:@undef HAVE_PTHREAD])
-m4trace:configure.ac:1100: -1- AC_DEFINE_TRACE_LITERAL([HAVE_PTHREAD])
-m4trace:configure.ac:1100: -1- m4_pattern_allow([^HAVE_PTHREAD$])
-m4trace:configure.ac:1100: -1- AH_OUTPUT([HAVE_PTHREAD], [/* System has pthread support */
+m4trace:configure.ac:1101: -1- AC_DEFINE_TRACE_LITERAL([HAVE_PTHREAD])
+m4trace:configure.ac:1101: -1- m4_pattern_allow([^HAVE_PTHREAD$])
+m4trace:configure.ac:1101: -1- AH_OUTPUT([HAVE_PTHREAD], [/* System has pthread support */
@%:@undef HAVE_PTHREAD])
-m4trace:configure.ac:1100: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete.
+m4trace:configure.ac:1101: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete.
You should run autoupdate.], [../../lib/autoconf/lang.m4:135: AC_LANG_RESTORE is expanded from...
m4/acx_pthread.m4:49: ACX_PTHREAD is expanded from...
-configure.ac:1100: the top level])
-m4trace:configure.ac:1118: -1- AC_DEFINE_TRACE_LITERAL([HAVE_NANOSLEEP])
-m4trace:configure.ac:1118: -1- m4_pattern_allow([^HAVE_NANOSLEEP$])
-m4trace:configure.ac:1118: -1- AH_OUTPUT([HAVE_NANOSLEEP], [/* Define if system supports subsecond, non-alarm sleep */
+configure.ac:1101: the top level])
+m4trace:configure.ac:1119: -1- AC_DEFINE_TRACE_LITERAL([HAVE_NANOSLEEP])
+m4trace:configure.ac:1119: -1- m4_pattern_allow([^HAVE_NANOSLEEP$])
+m4trace:configure.ac:1119: -1- AH_OUTPUT([HAVE_NANOSLEEP], [/* Define if system supports subsecond, non-alarm sleep */
@%:@undef HAVE_NANOSLEEP])
-m4trace:configure.ac:1128: -1- AC_DEFINE_TRACE_LITERAL([STDC_HEADERS])
-m4trace:configure.ac:1128: -1- m4_pattern_allow([^STDC_HEADERS$])
-m4trace:configure.ac:1128: -1- AH_OUTPUT([STDC_HEADERS], [/* Define to 1 if you have the ANSI C header files. */
+m4trace:configure.ac:1129: -1- AC_DEFINE_TRACE_LITERAL([STDC_HEADERS])
+m4trace:configure.ac:1129: -1- m4_pattern_allow([^STDC_HEADERS$])
+m4trace:configure.ac:1129: -1- AH_OUTPUT([STDC_HEADERS], [/* Define to 1 if you have the ANSI C header files. */
@%:@undef STDC_HEADERS])
-m4trace:configure.ac:1129: -1- AH_OUTPUT([HAVE_DIRENT_H], [/* Define to 1 if you have the <dirent.h> header file, and it defines `DIR\'.
+m4trace:configure.ac:1130: -1- AH_OUTPUT([HAVE_DIRENT_H], [/* Define to 1 if you have the <dirent.h> header file, and it defines `DIR\'.
*/
@%:@undef HAVE_DIRENT_H])
-m4trace:configure.ac:1129: -1- AH_OUTPUT([HAVE_SYS_NDIR_H], [/* Define to 1 if you have the <sys/ndir.h> header file, and it defines `DIR\'.
+m4trace:configure.ac:1130: -1- AH_OUTPUT([HAVE_SYS_NDIR_H], [/* Define to 1 if you have the <sys/ndir.h> header file, and it defines `DIR\'.
*/
@%:@undef HAVE_SYS_NDIR_H])
-m4trace:configure.ac:1129: -1- AH_OUTPUT([HAVE_SYS_DIR_H], [/* Define to 1 if you have the <sys/dir.h> header file, and it defines `DIR\'.
+m4trace:configure.ac:1130: -1- AH_OUTPUT([HAVE_SYS_DIR_H], [/* Define to 1 if you have the <sys/dir.h> header file, and it defines `DIR\'.
*/
@%:@undef HAVE_SYS_DIR_H])
-m4trace:configure.ac:1129: -1- AH_OUTPUT([HAVE_NDIR_H], [/* Define to 1 if you have the <ndir.h> header file, and it defines `DIR\'. */
+m4trace:configure.ac:1130: -1- AH_OUTPUT([HAVE_NDIR_H], [/* Define to 1 if you have the <ndir.h> header file, and it defines `DIR\'. */
@%:@undef HAVE_NDIR_H])
-m4trace:configure.ac:1130: -1- AC_DEFINE_TRACE_LITERAL([STAT_MACROS_BROKEN])
-m4trace:configure.ac:1130: -1- m4_pattern_allow([^STAT_MACROS_BROKEN$])
-m4trace:configure.ac:1130: -1- AH_OUTPUT([STAT_MACROS_BROKEN], [/* Define to 1 if the `S_IS*\' macros in <sys/stat.h> do not work properly. */
+m4trace:configure.ac:1131: -1- AC_DEFINE_TRACE_LITERAL([STAT_MACROS_BROKEN])
+m4trace:configure.ac:1131: -1- m4_pattern_allow([^STAT_MACROS_BROKEN$])
+m4trace:configure.ac:1131: -1- AH_OUTPUT([STAT_MACROS_BROKEN], [/* Define to 1 if the `S_IS*\' macros in <sys/stat.h> do not work properly. */
@%:@undef STAT_MACROS_BROKEN])
-m4trace:configure.ac:1131: -1- AC_DEFINE_TRACE_LITERAL([HAVE_SYS_WAIT_H])
-m4trace:configure.ac:1131: -1- m4_pattern_allow([^HAVE_SYS_WAIT_H$])
-m4trace:configure.ac:1131: -1- AH_OUTPUT([HAVE_SYS_WAIT_H], [/* Define to 1 if you have <sys/wait.h> that is POSIX.1 compatible. */
+m4trace:configure.ac:1132: -1- AC_DEFINE_TRACE_LITERAL([HAVE_SYS_WAIT_H])
+m4trace:configure.ac:1132: -1- m4_pattern_allow([^HAVE_SYS_WAIT_H$])
+m4trace:configure.ac:1132: -1- AH_OUTPUT([HAVE_SYS_WAIT_H], [/* Define to 1 if you have <sys/wait.h> that is POSIX.1 compatible. */
@%:@undef HAVE_SYS_WAIT_H])
-m4trace:configure.ac:1132: -1- AC_DEFINE_TRACE_LITERAL([TIME_WITH_SYS_TIME])
-m4trace:configure.ac:1132: -1- m4_pattern_allow([^TIME_WITH_SYS_TIME$])
-m4trace:configure.ac:1132: -1- AH_OUTPUT([TIME_WITH_SYS_TIME], [/* Define to 1 if you can safely include both <sys/time.h> and <time.h>. */
+m4trace:configure.ac:1133: -1- AC_DEFINE_TRACE_LITERAL([TIME_WITH_SYS_TIME])
+m4trace:configure.ac:1133: -1- m4_pattern_allow([^TIME_WITH_SYS_TIME$])
+m4trace:configure.ac:1133: -1- AH_OUTPUT([TIME_WITH_SYS_TIME], [/* Define to 1 if you can safely include both <sys/time.h> and <time.h>. */
@%:@undef TIME_WITH_SYS_TIME])
-m4trace:configure.ac:1133: -1- AC_DEFINE_TRACE_LITERAL([GWINSZ_IN_SYS_IOCTL])
-m4trace:configure.ac:1133: -1- m4_pattern_allow([^GWINSZ_IN_SYS_IOCTL$])
-m4trace:configure.ac:1133: -1- AH_OUTPUT([GWINSZ_IN_SYS_IOCTL], [/* Define to 1 if `TIOCGWINSZ\' requires <sys/ioctl.h>. */
+m4trace:configure.ac:1134: -1- AC_DEFINE_TRACE_LITERAL([GWINSZ_IN_SYS_IOCTL])
+m4trace:configure.ac:1134: -1- m4_pattern_allow([^GWINSZ_IN_SYS_IOCTL$])
+m4trace:configure.ac:1134: -1- AH_OUTPUT([GWINSZ_IN_SYS_IOCTL], [/* Define to 1 if `TIOCGWINSZ\' requires <sys/ioctl.h>. */
@%:@undef GWINSZ_IN_SYS_IOCTL])
-m4trace:configure.ac:1135: -1- _m4_warn([obsolete], [The macro `AC_UNISTD_H' is obsolete.
+m4trace:configure.ac:1136: -1- _m4_warn([obsolete], [The macro `AC_UNISTD_H' is obsolete.
You should run autoupdate.], [../../lib/autoconf/headers.m4:824: AC_UNISTD_H is expanded from...
-configure.ac:1135: the top level])
-m4trace:configure.ac:1135: -1- AH_OUTPUT([HAVE_UNISTD_H], [/* Define to 1 if you have the <unistd.h> header file. */
+configure.ac:1136: the top level])
+m4trace:configure.ac:1136: -1- AH_OUTPUT([HAVE_UNISTD_H], [/* Define to 1 if you have the <unistd.h> header file. */
@%:@undef HAVE_UNISTD_H])
-m4trace:configure.ac:1135: -1- AC_DEFINE_TRACE_LITERAL([HAVE_UNISTD_H])
-m4trace:configure.ac:1135: -1- m4_pattern_allow([^HAVE_UNISTD_H$])
-m4trace:configure.ac:1137: -1- AH_OUTPUT([HAVE_ERRNO_H], [/* Define to 1 if you have the <errno.h> header file. */
+m4trace:configure.ac:1136: -1- AC_DEFINE_TRACE_LITERAL([HAVE_UNISTD_H])
+m4trace:configure.ac:1136: -1- m4_pattern_allow([^HAVE_UNISTD_H$])
+m4trace:configure.ac:1138: -1- AH_OUTPUT([HAVE_ERRNO_H], [/* Define to 1 if you have the <errno.h> header file. */
@%:@undef HAVE_ERRNO_H])
-m4trace:configure.ac:1137: -1- AH_OUTPUT([HAVE_CTYPE_H], [/* Define to 1 if you have the <ctype.h> header file. */
+m4trace:configure.ac:1138: -1- AH_OUTPUT([HAVE_CTYPE_H], [/* Define to 1 if you have the <ctype.h> header file. */
@%:@undef HAVE_CTYPE_H])
-m4trace:configure.ac:1137: -1- AH_OUTPUT([HAVE_FCNTL_H], [/* Define to 1 if you have the <fcntl.h> header file. */
+m4trace:configure.ac:1138: -1- AH_OUTPUT([HAVE_FCNTL_H], [/* Define to 1 if you have the <fcntl.h> header file. */
@%:@undef HAVE_FCNTL_H])
-m4trace:configure.ac:1137: -1- AH_OUTPUT([HAVE_SIGNAL_H], [/* Define to 1 if you have the <signal.h> header file. */
+m4trace:configure.ac:1138: -1- AH_OUTPUT([HAVE_SIGNAL_H], [/* Define to 1 if you have the <signal.h> header file. */
@%:@undef HAVE_SIGNAL_H])
-m4trace:configure.ac:1137: -1- AH_OUTPUT([HAVE_SETJMP_H], [/* Define to 1 if you have the <setjmp.h> header file. */
+m4trace:configure.ac:1138: -1- AH_OUTPUT([HAVE_SETJMP_H], [/* Define to 1 if you have the <setjmp.h> header file. */
@%:@undef HAVE_SETJMP_H])
-m4trace:configure.ac:1137: -1- AH_OUTPUT([HAVE_MEMORY_H], [/* Define to 1 if you have the <memory.h> header file. */
+m4trace:configure.ac:1138: -1- AH_OUTPUT([HAVE_MEMORY_H], [/* Define to 1 if you have the <memory.h> header file. */
@%:@undef HAVE_MEMORY_H])
-m4trace:configure.ac:1137: -1- AH_OUTPUT([HAVE_SYS_PARAM_H], [/* Define to 1 if you have the <sys/param.h> header file. */
+m4trace:configure.ac:1138: -1- AH_OUTPUT([HAVE_SYS_PARAM_H], [/* Define to 1 if you have the <sys/param.h> header file. */
@%:@undef HAVE_SYS_PARAM_H])
-m4trace:configure.ac:1137: -1- AH_OUTPUT([HAVE_SYS_SOCKET_H], [/* Define to 1 if you have the <sys/socket.h> header file. */
+m4trace:configure.ac:1138: -1- AH_OUTPUT([HAVE_SYS_SOCKET_H], [/* Define to 1 if you have the <sys/socket.h> header file. */
@%:@undef HAVE_SYS_SOCKET_H])
-m4trace:configure.ac:1137: -1- AH_OUTPUT([HAVE_SYS_UIO_H], [/* Define to 1 if you have the <sys/uio.h> header file. */
+m4trace:configure.ac:1138: -1- AH_OUTPUT([HAVE_SYS_UIO_H], [/* Define to 1 if you have the <sys/uio.h> header file. */
@%:@undef HAVE_SYS_UIO_H])
-m4trace:configure.ac:1137: -1- AH_OUTPUT([HAVE_SYS_UN_H], [/* Define to 1 if you have the <sys/un.h> header file. */
+m4trace:configure.ac:1138: -1- AH_OUTPUT([HAVE_SYS_UN_H], [/* Define to 1 if you have the <sys/un.h> header file. */
@%:@undef HAVE_SYS_UN_H])
-m4trace:configure.ac:1137: -1- AH_OUTPUT([HAVE_LIMITS_H], [/* Define to 1 if you have the <limits.h> header file. */
+m4trace:configure.ac:1138: -1- AH_OUTPUT([HAVE_LIMITS_H], [/* Define to 1 if you have the <limits.h> header file. */
@%:@undef HAVE_LIMITS_H])
-m4trace:configure.ac:1137: -1- AH_OUTPUT([HAVE_WCHAR_H], [/* Define to 1 if you have the <wchar.h> header file. */
+m4trace:configure.ac:1138: -1- AH_OUTPUT([HAVE_WCHAR_H], [/* Define to 1 if you have the <wchar.h> header file. */
@%:@undef HAVE_WCHAR_H])
-m4trace:configure.ac:1137: -1- AH_OUTPUT([HAVE_SYS_POLL_H], [/* Define to 1 if you have the <sys/poll.h> header file. */
+m4trace:configure.ac:1138: -1- AH_OUTPUT([HAVE_SYS_POLL_H], [/* Define to 1 if you have the <sys/poll.h> header file. */
@%:@undef HAVE_SYS_POLL_H])
-m4trace:configure.ac:1137: -1- AH_OUTPUT([HAVE_STROPTS_H], [/* Define to 1 if you have the <stropts.h> header file. */
+m4trace:configure.ac:1138: -1- AH_OUTPUT([HAVE_STROPTS_H], [/* Define to 1 if you have the <stropts.h> header file. */
@%:@undef HAVE_STROPTS_H])
-m4trace:configure.ac:1137: -1- AH_OUTPUT([HAVE_NETDB_H], [/* Define to 1 if you have the <netdb.h> header file. */
+m4trace:configure.ac:1138: -1- AH_OUTPUT([HAVE_NETDB_H], [/* Define to 1 if you have the <netdb.h> header file. */
@%:@undef HAVE_NETDB_H])
-m4trace:configure.ac:1137: -1- AH_OUTPUT([HAVE_SYSLOG_H], [/* Define to 1 if you have the <syslog.h> header file. */
+m4trace:configure.ac:1138: -1- AH_OUTPUT([HAVE_SYSLOG_H], [/* Define to 1 if you have the <syslog.h> header file. */
@%:@undef HAVE_SYSLOG_H])
-m4trace:configure.ac:1137: -1- AH_OUTPUT([HAVE_SYS_SYSLOG_H], [/* Define to 1 if you have the <sys/syslog.h> header file. */
+m4trace:configure.ac:1138: -1- AH_OUTPUT([HAVE_SYS_SYSLOG_H], [/* Define to 1 if you have the <sys/syslog.h> header file. */
@%:@undef HAVE_SYS_SYSLOG_H])
-m4trace:configure.ac:1137: -1- AH_OUTPUT([HAVE_LOCALE_H], [/* Define to 1 if you have the <locale.h> header file. */
+m4trace:configure.ac:1138: -1- AH_OUTPUT([HAVE_LOCALE_H], [/* Define to 1 if you have the <locale.h> header file. */
@%:@undef HAVE_LOCALE_H])
-m4trace:configure.ac:1137: -1- AH_OUTPUT([HAVE_LANGINFO_H], [/* Define to 1 if you have the <langinfo.h> header file. */
+m4trace:configure.ac:1138: -1- AH_OUTPUT([HAVE_LANGINFO_H], [/* Define to 1 if you have the <langinfo.h> header file. */
@%:@undef HAVE_LANGINFO_H])
-m4trace:configure.ac:1137: -1- AH_OUTPUT([HAVE_UTIME_H], [/* Define to 1 if you have the <utime.h> header file. */
+m4trace:configure.ac:1138: -1- AH_OUTPUT([HAVE_UTIME_H], [/* Define to 1 if you have the <utime.h> header file. */
@%:@undef HAVE_UTIME_H])
-m4trace:configure.ac:1137: -1- AH_OUTPUT([HAVE_SYS_UTIME_H], [/* Define to 1 if you have the <sys/utime.h> header file. */
+m4trace:configure.ac:1138: -1- AH_OUTPUT([HAVE_SYS_UTIME_H], [/* Define to 1 if you have the <sys/utime.h> header file. */
@%:@undef HAVE_SYS_UTIME_H])
-m4trace:configure.ac:1137: -1- AH_OUTPUT([HAVE_PTHREAD_H], [/* Define to 1 if you have the <pthread.h> header file. */
+m4trace:configure.ac:1138: -1- AH_OUTPUT([HAVE_PTHREAD_H], [/* Define to 1 if you have the <pthread.h> header file. */
@%:@undef HAVE_PTHREAD_H])
-m4trace:configure.ac:1137: -1- AH_OUTPUT([HAVE_PWD_H], [/* Define to 1 if you have the <pwd.h> header file. */
+m4trace:configure.ac:1138: -1- AH_OUTPUT([HAVE_PWD_H], [/* Define to 1 if you have the <pwd.h> header file. */
@%:@undef HAVE_PWD_H])
-m4trace:configure.ac:1137: -1- AH_OUTPUT([HAVE_ASSERT_H], [/* Define to 1 if you have the <assert.h> header file. */
+m4trace:configure.ac:1138: -1- AH_OUTPUT([HAVE_ASSERT_H], [/* Define to 1 if you have the <assert.h> header file. */
@%:@undef HAVE_ASSERT_H])
-m4trace:configure.ac:1164: -2- AC_DEFINE_TRACE_LITERAL([HAS_TERMIOS])
-m4trace:configure.ac:1164: -2- m4_pattern_allow([^HAS_TERMIOS$])
-m4trace:configure.ac:1164: -2- AH_OUTPUT([HAS_TERMIOS], [/* Define if systems uses termios terminal control */
+m4trace:configure.ac:1165: -2- AC_DEFINE_TRACE_LITERAL([HAS_TERMIOS])
+m4trace:configure.ac:1165: -2- m4_pattern_allow([^HAS_TERMIOS$])
+m4trace:configure.ac:1165: -2- AH_OUTPUT([HAS_TERMIOS], [/* Define if systems uses termios terminal control */
@%:@undef HAS_TERMIOS])
-m4trace:configure.ac:1163: -2- AC_DEFINE_TRACE_LITERAL([HAS_TERMIO])
-m4trace:configure.ac:1163: -2- m4_pattern_allow([^HAS_TERMIO$])
-m4trace:configure.ac:1163: -2- AH_OUTPUT([HAS_TERMIO], [/* Define if systems uses termio terminal control */
+m4trace:configure.ac:1164: -2- AC_DEFINE_TRACE_LITERAL([HAS_TERMIO])
+m4trace:configure.ac:1164: -2- m4_pattern_allow([^HAS_TERMIO$])
+m4trace:configure.ac:1164: -2- AH_OUTPUT([HAS_TERMIO], [/* Define if systems uses termio terminal control */
@%:@undef HAS_TERMIO])
-m4trace:configure.ac:1163: -2- AC_DEFINE_TRACE_LITERAL([HAS_SGTTY])
-m4trace:configure.ac:1163: -2- m4_pattern_allow([^HAS_SGTTY$])
-m4trace:configure.ac:1163: -2- AH_OUTPUT([HAS_SGTTY], [/* Define if systems uses old BSD-style terminal control */
+m4trace:configure.ac:1164: -2- AC_DEFINE_TRACE_LITERAL([HAS_SGTTY])
+m4trace:configure.ac:1164: -2- m4_pattern_allow([^HAS_SGTTY$])
+m4trace:configure.ac:1164: -2- AH_OUTPUT([HAS_SGTTY], [/* Define if systems uses old BSD-style terminal control */
@%:@undef HAS_SGTTY])
-m4trace:configure.ac:1163: -1- _m4_warn([obsolete], [The macro `AC_ERROR' is obsolete.
+m4trace:configure.ac:1164: -1- _m4_warn([obsolete], [The macro `AC_ERROR' is obsolete.
You should run autoupdate.], [../../lib/autoconf/oldnames.m4:34: AC_ERROR is expanded from...
../../lib/m4sugar/m4sh.m4:606: AS_IF is expanded from...
../../lib/autoconf/headers.m4:129: _AC_CHECK_HEADER_MONGREL is expanded from...
@@ -1503,63 +1503,63 @@ You should run autoupdate.], [../../lib/autoconf/oldnames.m4:34: AC_ERROR is exp
../../lib/m4sugar/m4sh.m4:606: AS_IF is expanded from...
../../lib/autoconf/headers.m4:129: _AC_CHECK_HEADER_MONGREL is expanded from...
../../lib/autoconf/headers.m4:67: AC_CHECK_HEADER is expanded from...
-configure.ac:1163: the top level])
-m4trace:configure.ac:1180: -1- _m4_warn([obsolete], [The macro `AC_TYPE_SIGNAL' is obsolete.
+configure.ac:1164: the top level])
+m4trace:configure.ac:1181: -1- _m4_warn([obsolete], [The macro `AC_TYPE_SIGNAL' is obsolete.
You should run autoupdate.], [../../lib/autoconf/types.m4:738: AC_TYPE_SIGNAL is expanded from...
-configure.ac:1180: the top level])
-m4trace:configure.ac:1180: -1- AC_DEFINE_TRACE_LITERAL([RETSIGTYPE])
-m4trace:configure.ac:1180: -1- m4_pattern_allow([^RETSIGTYPE$])
-m4trace:configure.ac:1180: -1- AH_OUTPUT([RETSIGTYPE], [/* Define as the return type of signal handlers (`int\' or `void\'). */
+configure.ac:1181: the top level])
+m4trace:configure.ac:1181: -1- AC_DEFINE_TRACE_LITERAL([RETSIGTYPE])
+m4trace:configure.ac:1181: -1- m4_pattern_allow([^RETSIGTYPE$])
+m4trace:configure.ac:1181: -1- AH_OUTPUT([RETSIGTYPE], [/* Define as the return type of signal handlers (`int\' or `void\'). */
@%:@undef RETSIGTYPE])
-m4trace:configure.ac:1181: -1- AC_DEFINE_TRACE_LITERAL([size_t])
-m4trace:configure.ac:1181: -1- m4_pattern_allow([^size_t$])
-m4trace:configure.ac:1181: -1- AH_OUTPUT([size_t], [/* Define to `unsigned int\' if <sys/types.h> does not define. */
+m4trace:configure.ac:1182: -1- AC_DEFINE_TRACE_LITERAL([size_t])
+m4trace:configure.ac:1182: -1- m4_pattern_allow([^size_t$])
+m4trace:configure.ac:1182: -1- AH_OUTPUT([size_t], [/* Define to `unsigned int\' if <sys/types.h> does not define. */
@%:@undef size_t])
-m4trace:configure.ac:1182: -1- AC_DEFINE_TRACE_LITERAL([mode_t])
-m4trace:configure.ac:1182: -1- m4_pattern_allow([^mode_t$])
-m4trace:configure.ac:1182: -1- AH_OUTPUT([mode_t], [/* Define to `int\' if <sys/types.h> does not define. */
+m4trace:configure.ac:1183: -1- AC_DEFINE_TRACE_LITERAL([mode_t])
+m4trace:configure.ac:1183: -1- m4_pattern_allow([^mode_t$])
+m4trace:configure.ac:1183: -1- AH_OUTPUT([mode_t], [/* Define to `int\' if <sys/types.h> does not define. */
@%:@undef mode_t])
-m4trace:configure.ac:1183: -1- AC_DEFINE_TRACE_LITERAL([pid_t])
-m4trace:configure.ac:1183: -1- m4_pattern_allow([^pid_t$])
-m4trace:configure.ac:1183: -1- AH_OUTPUT([pid_t], [/* Define to `int\' if <sys/types.h> does not define. */
+m4trace:configure.ac:1184: -1- AC_DEFINE_TRACE_LITERAL([pid_t])
+m4trace:configure.ac:1184: -1- m4_pattern_allow([^pid_t$])
+m4trace:configure.ac:1184: -1- AH_OUTPUT([pid_t], [/* Define to `int\' if <sys/types.h> does not define. */
@%:@undef pid_t])
-m4trace:configure.ac:1184: -1- AC_DEFINE_TRACE_LITERAL([uid_t])
-m4trace:configure.ac:1184: -1- m4_pattern_allow([^uid_t$])
-m4trace:configure.ac:1184: -1- AH_OUTPUT([uid_t], [/* Define to `int\' if <sys/types.h> doesn\'t define. */
+m4trace:configure.ac:1185: -1- AC_DEFINE_TRACE_LITERAL([uid_t])
+m4trace:configure.ac:1185: -1- m4_pattern_allow([^uid_t$])
+m4trace:configure.ac:1185: -1- AH_OUTPUT([uid_t], [/* Define to `int\' if <sys/types.h> doesn\'t define. */
@%:@undef uid_t])
-m4trace:configure.ac:1184: -1- AC_DEFINE_TRACE_LITERAL([gid_t])
-m4trace:configure.ac:1184: -1- m4_pattern_allow([^gid_t$])
-m4trace:configure.ac:1184: -1- AH_OUTPUT([gid_t], [/* Define to `int\' if <sys/types.h> doesn\'t define. */
+m4trace:configure.ac:1185: -1- AC_DEFINE_TRACE_LITERAL([gid_t])
+m4trace:configure.ac:1185: -1- m4_pattern_allow([^gid_t$])
+m4trace:configure.ac:1185: -1- AH_OUTPUT([gid_t], [/* Define to `int\' if <sys/types.h> doesn\'t define. */
@%:@undef gid_t])
-m4trace:configure.ac:1185: -1- AC_DEFINE_TRACE_LITERAL([TM_IN_SYS_TIME])
-m4trace:configure.ac:1185: -1- m4_pattern_allow([^TM_IN_SYS_TIME$])
-m4trace:configure.ac:1185: -1- AH_OUTPUT([TM_IN_SYS_TIME], [/* Define to 1 if your <sys/time.h> declares `struct tm\'. */
+m4trace:configure.ac:1186: -1- AC_DEFINE_TRACE_LITERAL([TM_IN_SYS_TIME])
+m4trace:configure.ac:1186: -1- m4_pattern_allow([^TM_IN_SYS_TIME$])
+m4trace:configure.ac:1186: -1- AH_OUTPUT([TM_IN_SYS_TIME], [/* Define to 1 if your <sys/time.h> declares `struct tm\'. */
@%:@undef TM_IN_SYS_TIME])
-m4trace:configure.ac:1187: -1- AC_DEFINE_TRACE_LITERAL([HAVE_UNION_WAIT])
-m4trace:configure.ac:1187: -1- m4_pattern_allow([^HAVE_UNION_WAIT$])
-m4trace:configure.ac:1187: -1- AH_OUTPUT([HAVE_UNION_WAIT], [/* Define to 1 if the system has the type `union wait\'. */
+m4trace:configure.ac:1188: -1- AC_DEFINE_TRACE_LITERAL([HAVE_UNION_WAIT])
+m4trace:configure.ac:1188: -1- m4_pattern_allow([^HAVE_UNION_WAIT$])
+m4trace:configure.ac:1188: -1- AH_OUTPUT([HAVE_UNION_WAIT], [/* Define to 1 if the system has the type `union wait\'. */
@%:@undef HAVE_UNION_WAIT])
-m4trace:configure.ac:1189: -1- AH_OUTPUT([HAVE_STDINT_H], [/* Define to 1 if you have the <stdint.h> header file. */
+m4trace:configure.ac:1190: -1- AH_OUTPUT([HAVE_STDINT_H], [/* Define to 1 if you have the <stdint.h> header file. */
@%:@undef HAVE_STDINT_H])
-m4trace:configure.ac:1189: -1- AC_DEFINE_TRACE_LITERAL([HAVE_STDINT_H])
-m4trace:configure.ac:1189: -1- m4_pattern_allow([^HAVE_STDINT_H$])
-m4trace:configure.ac:1189: -1- AH_OUTPUT([HAVE_INTTYPES_H], [/* Define to 1 if you have the <inttypes.h> header file. */
+m4trace:configure.ac:1190: -1- AC_DEFINE_TRACE_LITERAL([HAVE_STDINT_H])
+m4trace:configure.ac:1190: -1- m4_pattern_allow([^HAVE_STDINT_H$])
+m4trace:configure.ac:1190: -1- AH_OUTPUT([HAVE_INTTYPES_H], [/* Define to 1 if you have the <inttypes.h> header file. */
@%:@undef HAVE_INTTYPES_H])
-m4trace:configure.ac:1189: -1- AC_DEFINE_TRACE_LITERAL([HAVE_INTTYPES_H])
-m4trace:configure.ac:1189: -1- m4_pattern_allow([^HAVE_INTTYPES_H$])
-m4trace:configure.ac:1189: -1- AH_OUTPUT([HAVE_SYS_TYPES_H], [/* Define to 1 if you have the <sys/types.h> header file. */
+m4trace:configure.ac:1190: -1- AC_DEFINE_TRACE_LITERAL([HAVE_INTTYPES_H])
+m4trace:configure.ac:1190: -1- m4_pattern_allow([^HAVE_INTTYPES_H$])
+m4trace:configure.ac:1190: -1- AH_OUTPUT([HAVE_SYS_TYPES_H], [/* Define to 1 if you have the <sys/types.h> header file. */
@%:@undef HAVE_SYS_TYPES_H])
-m4trace:configure.ac:1189: -1- AC_DEFINE_TRACE_LITERAL([HAVE_SYS_TYPES_H])
-m4trace:configure.ac:1189: -1- m4_pattern_allow([^HAVE_SYS_TYPES_H$])
-m4trace:configure.ac:1189: -1- AC_DEFINE_TRACE_LITERAL([SIZEOF_UNSIGNED_SHORT])
-m4trace:configure.ac:1189: -1- m4_pattern_allow([^SIZEOF_UNSIGNED_SHORT$])
-m4trace:configure.ac:1189: -1- AH_OUTPUT([SIZEOF_UNSIGNED_SHORT], [/* The size of `unsigned short\', as computed by sizeof. */
+m4trace:configure.ac:1190: -1- AC_DEFINE_TRACE_LITERAL([HAVE_SYS_TYPES_H])
+m4trace:configure.ac:1190: -1- m4_pattern_allow([^HAVE_SYS_TYPES_H$])
+m4trace:configure.ac:1190: -1- AC_DEFINE_TRACE_LITERAL([SIZEOF_UNSIGNED_SHORT])
+m4trace:configure.ac:1190: -1- m4_pattern_allow([^SIZEOF_UNSIGNED_SHORT$])
+m4trace:configure.ac:1190: -1- AH_OUTPUT([SIZEOF_UNSIGNED_SHORT], [/* The size of `unsigned short\', as computed by sizeof. */
@%:@undef SIZEOF_UNSIGNED_SHORT])
-m4trace:configure.ac:1189: -1- AC_DEFINE_TRACE_LITERAL([SIZEOF_UNSIGNED_INT])
-m4trace:configure.ac:1189: -1- m4_pattern_allow([^SIZEOF_UNSIGNED_INT$])
-m4trace:configure.ac:1189: -1- AH_OUTPUT([SIZEOF_UNSIGNED_INT], [/* The size of `unsigned int\', as computed by sizeof. */
+m4trace:configure.ac:1190: -1- AC_DEFINE_TRACE_LITERAL([SIZEOF_UNSIGNED_INT])
+m4trace:configure.ac:1190: -1- m4_pattern_allow([^SIZEOF_UNSIGNED_INT$])
+m4trace:configure.ac:1190: -1- AH_OUTPUT([SIZEOF_UNSIGNED_INT], [/* The size of `unsigned int\', as computed by sizeof. */
@%:@undef SIZEOF_UNSIGNED_INT])
-m4trace:configure.ac:1189: -1- _m4_warn([obsolete], [The macro `AC_ERROR' is obsolete.
+m4trace:configure.ac:1190: -1- _m4_warn([obsolete], [The macro `AC_ERROR' is obsolete.
You should run autoupdate.], [../../lib/autoconf/oldnames.m4:34: AC_ERROR is expanded from...
../../lib/m4sugar/m4sh.m4:606: AS_IF is expanded from...
../../lib/autoconf/headers.m4:129: _AC_CHECK_HEADER_MONGREL is expanded from...
@@ -1576,32 +1576,32 @@ You should run autoupdate.], [../../lib/autoconf/oldnames.m4:34: AC_ERROR is exp
../../lib/autoconf/headers.m4:67: AC_CHECK_HEADER is expanded from...
../../lib/m4sugar/m4sh.m4:574: AS_FOR is expanded from...
../../lib/autoconf/headers.m4:249: AC_CHECK_HEADERS is expanded from...
-configure.ac:1189: the top level])
-m4trace:configure.ac:1206: -1- AC_DEFINE_TRACE_LITERAL([UINT16])
-m4trace:configure.ac:1206: -1- m4_pattern_allow([^UINT16$])
-m4trace:configure.ac:1206: -1- AH_OUTPUT([UINT16], [/* System defined unsigned 16 bit integer */
+configure.ac:1190: the top level])
+m4trace:configure.ac:1207: -1- AC_DEFINE_TRACE_LITERAL([UINT16])
+m4trace:configure.ac:1207: -1- m4_pattern_allow([^UINT16$])
+m4trace:configure.ac:1207: -1- AH_OUTPUT([UINT16], [/* System defined unsigned 16 bit integer */
@%:@undef UINT16])
-m4trace:configure.ac:1208: -1- AH_OUTPUT([HAVE_STDINT_H], [/* Define to 1 if you have the <stdint.h> header file. */
+m4trace:configure.ac:1209: -1- AH_OUTPUT([HAVE_STDINT_H], [/* Define to 1 if you have the <stdint.h> header file. */
@%:@undef HAVE_STDINT_H])
-m4trace:configure.ac:1208: -1- AC_DEFINE_TRACE_LITERAL([HAVE_STDINT_H])
-m4trace:configure.ac:1208: -1- m4_pattern_allow([^HAVE_STDINT_H$])
-m4trace:configure.ac:1208: -1- AH_OUTPUT([HAVE_INTTYPES_H], [/* Define to 1 if you have the <inttypes.h> header file. */
+m4trace:configure.ac:1209: -1- AC_DEFINE_TRACE_LITERAL([HAVE_STDINT_H])
+m4trace:configure.ac:1209: -1- m4_pattern_allow([^HAVE_STDINT_H$])
+m4trace:configure.ac:1209: -1- AH_OUTPUT([HAVE_INTTYPES_H], [/* Define to 1 if you have the <inttypes.h> header file. */
@%:@undef HAVE_INTTYPES_H])
-m4trace:configure.ac:1208: -1- AC_DEFINE_TRACE_LITERAL([HAVE_INTTYPES_H])
-m4trace:configure.ac:1208: -1- m4_pattern_allow([^HAVE_INTTYPES_H$])
-m4trace:configure.ac:1208: -1- AH_OUTPUT([HAVE_SYS_TYPES_H], [/* Define to 1 if you have the <sys/types.h> header file. */
+m4trace:configure.ac:1209: -1- AC_DEFINE_TRACE_LITERAL([HAVE_INTTYPES_H])
+m4trace:configure.ac:1209: -1- m4_pattern_allow([^HAVE_INTTYPES_H$])
+m4trace:configure.ac:1209: -1- AH_OUTPUT([HAVE_SYS_TYPES_H], [/* Define to 1 if you have the <sys/types.h> header file. */
@%:@undef HAVE_SYS_TYPES_H])
-m4trace:configure.ac:1208: -1- AC_DEFINE_TRACE_LITERAL([HAVE_SYS_TYPES_H])
-m4trace:configure.ac:1208: -1- m4_pattern_allow([^HAVE_SYS_TYPES_H$])
-m4trace:configure.ac:1208: -1- AC_DEFINE_TRACE_LITERAL([SIZEOF_UNSIGNED_INT])
-m4trace:configure.ac:1208: -1- m4_pattern_allow([^SIZEOF_UNSIGNED_INT$])
-m4trace:configure.ac:1208: -1- AH_OUTPUT([SIZEOF_UNSIGNED_INT], [/* The size of `unsigned int\', as computed by sizeof. */
+m4trace:configure.ac:1209: -1- AC_DEFINE_TRACE_LITERAL([HAVE_SYS_TYPES_H])
+m4trace:configure.ac:1209: -1- m4_pattern_allow([^HAVE_SYS_TYPES_H$])
+m4trace:configure.ac:1209: -1- AC_DEFINE_TRACE_LITERAL([SIZEOF_UNSIGNED_INT])
+m4trace:configure.ac:1209: -1- m4_pattern_allow([^SIZEOF_UNSIGNED_INT$])
+m4trace:configure.ac:1209: -1- AH_OUTPUT([SIZEOF_UNSIGNED_INT], [/* The size of `unsigned int\', as computed by sizeof. */
@%:@undef SIZEOF_UNSIGNED_INT])
-m4trace:configure.ac:1208: -1- AC_DEFINE_TRACE_LITERAL([SIZEOF_UNSIGNED_LONG])
-m4trace:configure.ac:1208: -1- m4_pattern_allow([^SIZEOF_UNSIGNED_LONG$])
-m4trace:configure.ac:1208: -1- AH_OUTPUT([SIZEOF_UNSIGNED_LONG], [/* The size of `unsigned long\', as computed by sizeof. */
+m4trace:configure.ac:1209: -1- AC_DEFINE_TRACE_LITERAL([SIZEOF_UNSIGNED_LONG])
+m4trace:configure.ac:1209: -1- m4_pattern_allow([^SIZEOF_UNSIGNED_LONG$])
+m4trace:configure.ac:1209: -1- AH_OUTPUT([SIZEOF_UNSIGNED_LONG], [/* The size of `unsigned long\', as computed by sizeof. */
@%:@undef SIZEOF_UNSIGNED_LONG])
-m4trace:configure.ac:1208: -1- _m4_warn([obsolete], [The macro `AC_ERROR' is obsolete.
+m4trace:configure.ac:1209: -1- _m4_warn([obsolete], [The macro `AC_ERROR' is obsolete.
You should run autoupdate.], [../../lib/autoconf/oldnames.m4:34: AC_ERROR is expanded from...
../../lib/m4sugar/m4sh.m4:606: AS_IF is expanded from...
../../lib/autoconf/headers.m4:129: _AC_CHECK_HEADER_MONGREL is expanded from...
@@ -1618,276 +1618,276 @@ You should run autoupdate.], [../../lib/autoconf/oldnames.m4:34: AC_ERROR is exp
../../lib/autoconf/headers.m4:67: AC_CHECK_HEADER is expanded from...
../../lib/m4sugar/m4sh.m4:574: AS_FOR is expanded from...
../../lib/autoconf/headers.m4:249: AC_CHECK_HEADERS is expanded from...
-configure.ac:1208: the top level])
-m4trace:configure.ac:1225: -1- AC_DEFINE_TRACE_LITERAL([UINT32])
-m4trace:configure.ac:1225: -1- m4_pattern_allow([^UINT32$])
-m4trace:configure.ac:1225: -1- AH_OUTPUT([UINT32], [/* System defined unsigned 32 bit integer */
+configure.ac:1209: the top level])
+m4trace:configure.ac:1226: -1- AC_DEFINE_TRACE_LITERAL([UINT32])
+m4trace:configure.ac:1226: -1- m4_pattern_allow([^UINT32$])
+m4trace:configure.ac:1226: -1- AH_OUTPUT([UINT32], [/* System defined unsigned 32 bit integer */
@%:@undef UINT32])
-m4trace:configure.ac:1227: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete.
+m4trace:configure.ac:1228: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:2615: AC_TRY_COMPILE is expanded from...
../../lib/m4sugar/m4sh.m4:606: AS_IF is expanded from...
../../lib/autoconf/general.m4:2032: AC_CACHE_VAL is expanded from...
../../lib/autoconf/general.m4:2053: AC_CACHE_CHECK is expanded from...
-configure.ac:1227: the top level])
-m4trace:configure.ac:1244: -1- AC_DEFINE_TRACE_LITERAL([qsort_t])
-m4trace:configure.ac:1244: -1- m4_pattern_allow([^qsort_t$])
-m4trace:configure.ac:1244: -1- AH_OUTPUT([qsort_t], [/* qsort compare function argument type */
+configure.ac:1228: the top level])
+m4trace:configure.ac:1245: -1- AC_DEFINE_TRACE_LITERAL([qsort_t])
+m4trace:configure.ac:1245: -1- m4_pattern_allow([^qsort_t$])
+m4trace:configure.ac:1245: -1- AH_OUTPUT([qsort_t], [/* qsort compare function argument type */
@%:@undef qsort_t])
-m4trace:configure.ac:1248: -1- AH_OUTPUT([HAVE_SYS_SELECT_H], [/* Define to 1 if you have the <sys/select.h> header file. */
+m4trace:configure.ac:1249: -1- AH_OUTPUT([HAVE_SYS_SELECT_H], [/* Define to 1 if you have the <sys/select.h> header file. */
@%:@undef HAVE_SYS_SELECT_H])
-m4trace:configure.ac:1248: -1- AH_OUTPUT([HAVE_SYS_SOCKET_H], [/* Define to 1 if you have the <sys/socket.h> header file. */
+m4trace:configure.ac:1249: -1- AH_OUTPUT([HAVE_SYS_SOCKET_H], [/* Define to 1 if you have the <sys/socket.h> header file. */
@%:@undef HAVE_SYS_SOCKET_H])
-m4trace:configure.ac:1248: -1- AC_DEFINE_TRACE_LITERAL([SELECT_TYPE_ARG1])
-m4trace:configure.ac:1248: -1- m4_pattern_allow([^SELECT_TYPE_ARG1$])
-m4trace:configure.ac:1248: -1- AH_OUTPUT([SELECT_TYPE_ARG1], [/* Define to the type of arg 1 for `select\'. */
+m4trace:configure.ac:1249: -1- AC_DEFINE_TRACE_LITERAL([SELECT_TYPE_ARG1])
+m4trace:configure.ac:1249: -1- m4_pattern_allow([^SELECT_TYPE_ARG1$])
+m4trace:configure.ac:1249: -1- AH_OUTPUT([SELECT_TYPE_ARG1], [/* Define to the type of arg 1 for `select\'. */
@%:@undef SELECT_TYPE_ARG1])
-m4trace:configure.ac:1248: -1- AC_DEFINE_TRACE_LITERAL([SELECT_TYPE_ARG234])
-m4trace:configure.ac:1248: -1- m4_pattern_allow([^SELECT_TYPE_ARG234$])
-m4trace:configure.ac:1248: -1- AH_OUTPUT([SELECT_TYPE_ARG234], [/* Define to the type of args 2, 3 and 4 for `select\'. */
+m4trace:configure.ac:1249: -1- AC_DEFINE_TRACE_LITERAL([SELECT_TYPE_ARG234])
+m4trace:configure.ac:1249: -1- m4_pattern_allow([^SELECT_TYPE_ARG234$])
+m4trace:configure.ac:1249: -1- AH_OUTPUT([SELECT_TYPE_ARG234], [/* Define to the type of args 2, 3 and 4 for `select\'. */
@%:@undef SELECT_TYPE_ARG234])
-m4trace:configure.ac:1248: -1- AC_DEFINE_TRACE_LITERAL([SELECT_TYPE_ARG5])
-m4trace:configure.ac:1248: -1- m4_pattern_allow([^SELECT_TYPE_ARG5$])
-m4trace:configure.ac:1248: -1- AH_OUTPUT([SELECT_TYPE_ARG5], [/* Define to the type of arg 5 for `select\'. */
+m4trace:configure.ac:1249: -1- AC_DEFINE_TRACE_LITERAL([SELECT_TYPE_ARG5])
+m4trace:configure.ac:1249: -1- m4_pattern_allow([^SELECT_TYPE_ARG5$])
+m4trace:configure.ac:1249: -1- AH_OUTPUT([SELECT_TYPE_ARG5], [/* Define to the type of arg 5 for `select\'. */
@%:@undef SELECT_TYPE_ARG5])
-m4trace:configure.ac:1250: -1- AC_DEFINE_TRACE_LITERAL([HAVE_STRCOLL])
-m4trace:configure.ac:1250: -1- m4_pattern_allow([^HAVE_STRCOLL$])
-m4trace:configure.ac:1250: -1- AH_OUTPUT([HAVE_STRCOLL], [/* Define to 1 if you have the `strcoll\' function and it is properly defined.
+m4trace:configure.ac:1251: -1- AC_DEFINE_TRACE_LITERAL([HAVE_STRCOLL])
+m4trace:configure.ac:1251: -1- m4_pattern_allow([^HAVE_STRCOLL$])
+m4trace:configure.ac:1251: -1- AH_OUTPUT([HAVE_STRCOLL], [/* Define to 1 if you have the `strcoll\' function and it is properly defined.
*/
@%:@undef HAVE_STRCOLL])
-m4trace:configure.ac:1254: -1- AH_OUTPUT([HAVE_VFORK_H], [/* Define to 1 if you have the <vfork.h> header file. */
+m4trace:configure.ac:1255: -1- AH_OUTPUT([HAVE_VFORK_H], [/* Define to 1 if you have the <vfork.h> header file. */
@%:@undef HAVE_VFORK_H])
-m4trace:configure.ac:1254: -1- AC_DEFINE_TRACE_LITERAL([HAVE_VFORK_H])
-m4trace:configure.ac:1254: -1- m4_pattern_allow([^HAVE_VFORK_H$])
-m4trace:configure.ac:1254: -1- AH_OUTPUT([HAVE_FORK], [/* Define to 1 if you have the `fork\' function. */
+m4trace:configure.ac:1255: -1- AC_DEFINE_TRACE_LITERAL([HAVE_VFORK_H])
+m4trace:configure.ac:1255: -1- m4_pattern_allow([^HAVE_VFORK_H$])
+m4trace:configure.ac:1255: -1- AH_OUTPUT([HAVE_FORK], [/* Define to 1 if you have the `fork\' function. */
@%:@undef HAVE_FORK])
-m4trace:configure.ac:1254: -1- AH_OUTPUT([HAVE_VFORK], [/* Define to 1 if you have the `vfork\' function. */
+m4trace:configure.ac:1255: -1- AH_OUTPUT([HAVE_VFORK], [/* Define to 1 if you have the `vfork\' function. */
@%:@undef HAVE_VFORK])
-m4trace:configure.ac:1254: -1- AC_DEFINE_TRACE_LITERAL([HAVE_WORKING_VFORK])
-m4trace:configure.ac:1254: -1- m4_pattern_allow([^HAVE_WORKING_VFORK$])
-m4trace:configure.ac:1254: -1- AH_OUTPUT([HAVE_WORKING_VFORK], [/* Define to 1 if `vfork\' works. */
+m4trace:configure.ac:1255: -1- AC_DEFINE_TRACE_LITERAL([HAVE_WORKING_VFORK])
+m4trace:configure.ac:1255: -1- m4_pattern_allow([^HAVE_WORKING_VFORK$])
+m4trace:configure.ac:1255: -1- AH_OUTPUT([HAVE_WORKING_VFORK], [/* Define to 1 if `vfork\' works. */
@%:@undef HAVE_WORKING_VFORK])
-m4trace:configure.ac:1254: -1- AC_DEFINE_TRACE_LITERAL([vfork])
-m4trace:configure.ac:1254: -1- m4_pattern_allow([^vfork$])
-m4trace:configure.ac:1254: -1- AH_OUTPUT([vfork], [/* Define as `fork\' if `vfork\' does not work. */
+m4trace:configure.ac:1255: -1- AC_DEFINE_TRACE_LITERAL([vfork])
+m4trace:configure.ac:1255: -1- m4_pattern_allow([^vfork$])
+m4trace:configure.ac:1255: -1- AH_OUTPUT([vfork], [/* Define as `fork\' if `vfork\' does not work. */
@%:@undef vfork])
-m4trace:configure.ac:1254: -1- AC_DEFINE_TRACE_LITERAL([HAVE_WORKING_FORK])
-m4trace:configure.ac:1254: -1- m4_pattern_allow([^HAVE_WORKING_FORK$])
-m4trace:configure.ac:1254: -1- AH_OUTPUT([HAVE_WORKING_FORK], [/* Define to 1 if `fork\' works. */
+m4trace:configure.ac:1255: -1- AC_DEFINE_TRACE_LITERAL([HAVE_WORKING_FORK])
+m4trace:configure.ac:1255: -1- m4_pattern_allow([^HAVE_WORKING_FORK$])
+m4trace:configure.ac:1255: -1- AH_OUTPUT([HAVE_WORKING_FORK], [/* Define to 1 if `fork\' works. */
@%:@undef HAVE_WORKING_FORK])
-m4trace:configure.ac:1255: -1- AH_OUTPUT([HAVE_STRCHR], [/* Define to 1 if you have the `strchr\' function. */
+m4trace:configure.ac:1256: -1- AH_OUTPUT([HAVE_STRCHR], [/* Define to 1 if you have the `strchr\' function. */
@%:@undef HAVE_STRCHR])
-m4trace:configure.ac:1255: -1- AH_OUTPUT([HAVE_MEMCPY], [/* Define to 1 if you have the `memcpy\' function. */
+m4trace:configure.ac:1256: -1- AH_OUTPUT([HAVE_MEMCPY], [/* Define to 1 if you have the `memcpy\' function. */
@%:@undef HAVE_MEMCPY])
-m4trace:configure.ac:1255: -1- AH_OUTPUT([HAVE_STRTOL], [/* Define to 1 if you have the `strtol\' function. */
+m4trace:configure.ac:1256: -1- AH_OUTPUT([HAVE_STRTOL], [/* Define to 1 if you have the `strtol\' function. */
@%:@undef HAVE_STRTOL])
-m4trace:configure.ac:1255: -1- AH_OUTPUT([HAVE_STRTOUL], [/* Define to 1 if you have the `strtoul\' function. */
+m4trace:configure.ac:1256: -1- AH_OUTPUT([HAVE_STRTOUL], [/* Define to 1 if you have the `strtoul\' function. */
@%:@undef HAVE_STRTOUL])
-m4trace:configure.ac:1255: -1- AH_OUTPUT([HAVE_SELECT], [/* Define to 1 if you have the `select\' function. */
+m4trace:configure.ac:1256: -1- AH_OUTPUT([HAVE_SELECT], [/* Define to 1 if you have the `select\' function. */
@%:@undef HAVE_SELECT])
-m4trace:configure.ac:1255: -1- AH_OUTPUT([HAVE_POLL], [/* Define to 1 if you have the `poll\' function. */
+m4trace:configure.ac:1256: -1- AH_OUTPUT([HAVE_POLL], [/* Define to 1 if you have the `poll\' function. */
@%:@undef HAVE_POLL])
-m4trace:configure.ac:1255: -1- AH_OUTPUT([HAVE_QSORT], [/* Define to 1 if you have the `qsort\' function. */
+m4trace:configure.ac:1256: -1- AH_OUTPUT([HAVE_QSORT], [/* Define to 1 if you have the `qsort\' function. */
@%:@undef HAVE_QSORT])
-m4trace:configure.ac:1255: -1- AH_OUTPUT([HAVE_GETUID], [/* Define to 1 if you have the `getuid\' function. */
+m4trace:configure.ac:1256: -1- AH_OUTPUT([HAVE_GETUID], [/* Define to 1 if you have the `getuid\' function. */
@%:@undef HAVE_GETUID])
-m4trace:configure.ac:1255: -1- AH_OUTPUT([HAVE_GETPWUID], [/* Define to 1 if you have the `getpwuid\' function. */
+m4trace:configure.ac:1256: -1- AH_OUTPUT([HAVE_GETPWUID], [/* Define to 1 if you have the `getpwuid\' function. */
@%:@undef HAVE_GETPWUID])
-m4trace:configure.ac:1255: -1- AH_OUTPUT([HAVE_GETPWNAM], [/* Define to 1 if you have the `getpwnam\' function. */
+m4trace:configure.ac:1256: -1- AH_OUTPUT([HAVE_GETPWNAM], [/* Define to 1 if you have the `getpwnam\' function. */
@%:@undef HAVE_GETPWNAM])
-m4trace:configure.ac:1255: -1- AH_OUTPUT([HAVE_GETTIMEOFDAY], [/* Define to 1 if you have the `gettimeofday\' function. */
+m4trace:configure.ac:1256: -1- AH_OUTPUT([HAVE_GETTIMEOFDAY], [/* Define to 1 if you have the `gettimeofday\' function. */
@%:@undef HAVE_GETTIMEOFDAY])
-m4trace:configure.ac:1255: -1- AH_OUTPUT([HAVE_TMPFILE], [/* Define to 1 if you have the `tmpfile\' function. */
+m4trace:configure.ac:1256: -1- AH_OUTPUT([HAVE_TMPFILE], [/* Define to 1 if you have the `tmpfile\' function. */
@%:@undef HAVE_TMPFILE])
-m4trace:configure.ac:1255: -1- AH_OUTPUT([HAVE_UNAME], [/* Define to 1 if you have the `uname\' function. */
+m4trace:configure.ac:1256: -1- AH_OUTPUT([HAVE_UNAME], [/* Define to 1 if you have the `uname\' function. */
@%:@undef HAVE_UNAME])
-m4trace:configure.ac:1255: -1- AH_OUTPUT([HAVE_RENAME], [/* Define to 1 if you have the `rename\' function. */
+m4trace:configure.ac:1256: -1- AH_OUTPUT([HAVE_RENAME], [/* Define to 1 if you have the `rename\' function. */
@%:@undef HAVE_RENAME])
-m4trace:configure.ac:1255: -1- AH_OUTPUT([HAVE_READ], [/* Define to 1 if you have the `read\' function. */
+m4trace:configure.ac:1256: -1- AH_OUTPUT([HAVE_READ], [/* Define to 1 if you have the `read\' function. */
@%:@undef HAVE_READ])
-m4trace:configure.ac:1255: -1- AH_OUTPUT([HAVE_SIGNAL], [/* Define to 1 if you have the `signal\' function. */
+m4trace:configure.ac:1256: -1- AH_OUTPUT([HAVE_SIGNAL], [/* Define to 1 if you have the `signal\' function. */
@%:@undef HAVE_SIGNAL])
-m4trace:configure.ac:1255: -1- AH_OUTPUT([HAVE_SETJMP], [/* Define to 1 if you have the `setjmp\' function. */
+m4trace:configure.ac:1256: -1- AH_OUTPUT([HAVE_SETJMP], [/* Define to 1 if you have the `setjmp\' function. */
@%:@undef HAVE_SETJMP])
-m4trace:configure.ac:1255: -1- AH_OUTPUT([HAVE_CHOWN], [/* Define to 1 if you have the `chown\' function. */
+m4trace:configure.ac:1256: -1- AH_OUTPUT([HAVE_CHOWN], [/* Define to 1 if you have the `chown\' function. */
@%:@undef HAVE_CHOWN])
-m4trace:configure.ac:1255: -1- AH_OUTPUT([HAVE_WAIT4], [/* Define to 1 if you have the `wait4\' function. */
+m4trace:configure.ac:1256: -1- AH_OUTPUT([HAVE_WAIT4], [/* Define to 1 if you have the `wait4\' function. */
@%:@undef HAVE_WAIT4])
-m4trace:configure.ac:1255: -1- AH_OUTPUT([HAVE_WAITPID], [/* Define to 1 if you have the `waitpid\' function. */
+m4trace:configure.ac:1256: -1- AH_OUTPUT([HAVE_WAITPID], [/* Define to 1 if you have the `waitpid\' function. */
@%:@undef HAVE_WAITPID])
-m4trace:configure.ac:1255: -1- AH_OUTPUT([HAVE_WAIT], [/* Define to 1 if you have the `wait\' function. */
+m4trace:configure.ac:1256: -1- AH_OUTPUT([HAVE_WAIT], [/* Define to 1 if you have the `wait\' function. */
@%:@undef HAVE_WAIT])
-m4trace:configure.ac:1255: -1- AH_OUTPUT([HAVE_SRANDOM], [/* Define to 1 if you have the `srandom\' function. */
+m4trace:configure.ac:1256: -1- AH_OUTPUT([HAVE_SRANDOM], [/* Define to 1 if you have the `srandom\' function. */
@%:@undef HAVE_SRANDOM])
-m4trace:configure.ac:1255: -1- AH_OUTPUT([HAVE_POPEN], [/* Define to 1 if you have the `popen\' function. */
+m4trace:configure.ac:1256: -1- AH_OUTPUT([HAVE_POPEN], [/* Define to 1 if you have the `popen\' function. */
@%:@undef HAVE_POPEN])
-m4trace:configure.ac:1255: -1- AH_OUTPUT([HAVE_PCLOSE], [/* Define to 1 if you have the `pclose\' function. */
+m4trace:configure.ac:1256: -1- AH_OUTPUT([HAVE_PCLOSE], [/* Define to 1 if you have the `pclose\' function. */
@%:@undef HAVE_PCLOSE])
-m4trace:configure.ac:1255: -1- AH_OUTPUT([HAVE_FSYNC], [/* Define to 1 if you have the `fsync\' function. */
+m4trace:configure.ac:1256: -1- AH_OUTPUT([HAVE_FSYNC], [/* Define to 1 if you have the `fsync\' function. */
@%:@undef HAVE_FSYNC])
-m4trace:configure.ac:1255: -1- AH_OUTPUT([HAVE_TRUNCATE], [/* Define to 1 if you have the `truncate\' function. */
+m4trace:configure.ac:1256: -1- AH_OUTPUT([HAVE_TRUNCATE], [/* Define to 1 if you have the `truncate\' function. */
@%:@undef HAVE_TRUNCATE])
-m4trace:configure.ac:1255: -1- AH_OUTPUT([HAVE_LISTEN], [/* Define to 1 if you have the `listen\' function. */
+m4trace:configure.ac:1256: -1- AH_OUTPUT([HAVE_LISTEN], [/* Define to 1 if you have the `listen\' function. */
@%:@undef HAVE_LISTEN])
-m4trace:configure.ac:1255: -1- AH_OUTPUT([HAVE_WCWIDTH], [/* Define to 1 if you have the `wcwidth\' function. */
+m4trace:configure.ac:1256: -1- AH_OUTPUT([HAVE_WCWIDTH], [/* Define to 1 if you have the `wcwidth\' function. */
@%:@undef HAVE_WCWIDTH])
-m4trace:configure.ac:1255: -1- AH_OUTPUT([HAVE_MBSTOWCS], [/* Define to 1 if you have the `mbstowcs\' function. */
+m4trace:configure.ac:1256: -1- AH_OUTPUT([HAVE_MBSTOWCS], [/* Define to 1 if you have the `mbstowcs\' function. */
@%:@undef HAVE_MBSTOWCS])
-m4trace:configure.ac:1255: -1- AH_OUTPUT([HAVE_WCRTOMB], [/* Define to 1 if you have the `wcrtomb\' function. */
+m4trace:configure.ac:1256: -1- AH_OUTPUT([HAVE_WCRTOMB], [/* Define to 1 if you have the `wcrtomb\' function. */
@%:@undef HAVE_WCRTOMB])
-m4trace:configure.ac:1255: -1- AH_OUTPUT([HAVE_PUTENV], [/* Define to 1 if you have the `putenv\' function. */
+m4trace:configure.ac:1256: -1- AH_OUTPUT([HAVE_PUTENV], [/* Define to 1 if you have the `putenv\' function. */
@%:@undef HAVE_PUTENV])
-m4trace:configure.ac:1255: -1- AH_OUTPUT([HAVE_SETENV], [/* Define to 1 if you have the `setenv\' function. */
+m4trace:configure.ac:1256: -1- AH_OUTPUT([HAVE_SETENV], [/* Define to 1 if you have the `setenv\' function. */
@%:@undef HAVE_SETENV])
-m4trace:configure.ac:1301: -1- AH_OUTPUT([HAVE_SIGACTION], [/* Define to 1 if you have the `sigaction\' function. */
+m4trace:configure.ac:1302: -1- AH_OUTPUT([HAVE_SIGACTION], [/* Define to 1 if you have the `sigaction\' function. */
@%:@undef HAVE_SIGACTION])
-m4trace:configure.ac:1301: -1- AH_OUTPUT([HAVE_SIGEMPTYSET], [/* Define to 1 if you have the `sigemptyset\' function. */
+m4trace:configure.ac:1302: -1- AH_OUTPUT([HAVE_SIGEMPTYSET], [/* Define to 1 if you have the `sigemptyset\' function. */
@%:@undef HAVE_SIGEMPTYSET])
-m4trace:configure.ac:1301: -1- AH_OUTPUT([HAVE_SIGADDSET], [/* Define to 1 if you have the `sigaddset\' function. */
+m4trace:configure.ac:1302: -1- AH_OUTPUT([HAVE_SIGADDSET], [/* Define to 1 if you have the `sigaddset\' function. */
@%:@undef HAVE_SIGADDSET])
-m4trace:configure.ac:1301: -1- AH_OUTPUT([HAVE_SIGPROCMASK], [/* Define to 1 if you have the `sigprocmask\' function. */
+m4trace:configure.ac:1302: -1- AH_OUTPUT([HAVE_SIGPROCMASK], [/* Define to 1 if you have the `sigprocmask\' function. */
@%:@undef HAVE_SIGPROCMASK])
-m4trace:configure.ac:1301: -1- AC_DEFINE_TRACE_LITERAL([POSIX_SIGNALS])
-m4trace:configure.ac:1301: -1- m4_pattern_allow([^POSIX_SIGNALS$])
-m4trace:configure.ac:1301: -1- AH_OUTPUT([POSIX_SIGNALS], [/* Define if system supports POSIX signal interface */
+m4trace:configure.ac:1302: -1- AC_DEFINE_TRACE_LITERAL([POSIX_SIGNALS])
+m4trace:configure.ac:1302: -1- m4_pattern_allow([^POSIX_SIGNALS$])
+m4trace:configure.ac:1302: -1- AH_OUTPUT([POSIX_SIGNALS], [/* Define if system supports POSIX signal interface */
@%:@undef POSIX_SIGNALS])
-m4trace:configure.ac:1301: -1- AH_OUTPUT([HAVE_SIGSET], [/* Define to 1 if you have the `sigset\' function. */
+m4trace:configure.ac:1302: -1- AH_OUTPUT([HAVE_SIGSET], [/* Define to 1 if you have the `sigset\' function. */
@%:@undef HAVE_SIGSET])
-m4trace:configure.ac:1301: -1- AH_OUTPUT([HAVE_SIGRELSE], [/* Define to 1 if you have the `sigrelse\' function. */
+m4trace:configure.ac:1302: -1- AH_OUTPUT([HAVE_SIGRELSE], [/* Define to 1 if you have the `sigrelse\' function. */
@%:@undef HAVE_SIGRELSE])
-m4trace:configure.ac:1301: -1- AC_DEFINE_TRACE_LITERAL([SYSV_SIGNALS])
-m4trace:configure.ac:1301: -1- m4_pattern_allow([^SYSV_SIGNALS$])
-m4trace:configure.ac:1301: -1- AH_OUTPUT([SYSV_SIGNALS], [/* Define if system supports SYSV signal interface */
+m4trace:configure.ac:1302: -1- AC_DEFINE_TRACE_LITERAL([SYSV_SIGNALS])
+m4trace:configure.ac:1302: -1- m4_pattern_allow([^SYSV_SIGNALS$])
+m4trace:configure.ac:1302: -1- AH_OUTPUT([SYSV_SIGNALS], [/* Define if system supports SYSV signal interface */
@%:@undef SYSV_SIGNALS])
-m4trace:configure.ac:1312: -1- AC_DEFINE_TRACE_LITERAL([HAVE_SYSLOG])
-m4trace:configure.ac:1312: -1- m4_pattern_allow([^HAVE_SYSLOG$])
-m4trace:configure.ac:1312: -1- AH_OUTPUT([HAVE_SYSLOG], [/* Define if system supplies syslog() logging */
+m4trace:configure.ac:1313: -1- AC_DEFINE_TRACE_LITERAL([HAVE_SYSLOG])
+m4trace:configure.ac:1313: -1- m4_pattern_allow([^HAVE_SYSLOG$])
+m4trace:configure.ac:1313: -1- AH_OUTPUT([HAVE_SYSLOG], [/* Define if system supplies syslog() logging */
@%:@undef HAVE_SYSLOG])
-m4trace:configure.ac:1376: -1- AC_DEFINE_TRACE_LITERAL([OSX_TARGET])
-m4trace:configure.ac:1376: -1- m4_pattern_allow([^OSX_TARGET$])
-m4trace:configure.ac:1376: -1- AH_OUTPUT([OSX_TARGET], [/* OSX TARGET */
+m4trace:configure.ac:1377: -1- AC_DEFINE_TRACE_LITERAL([OSX_TARGET])
+m4trace:configure.ac:1377: -1- m4_pattern_allow([^OSX_TARGET$])
+m4trace:configure.ac:1377: -1- AH_OUTPUT([OSX_TARGET], [/* OSX TARGET */
@%:@undef OSX_TARGET])
-m4trace:configure.ac:1381: -1- AC_DEFINE_TRACE_LITERAL([APPLEKEYCHAIN])
-m4trace:configure.ac:1381: -1- m4_pattern_allow([^APPLEKEYCHAIN$])
-m4trace:configure.ac:1381: -1- AH_OUTPUT([APPLEKEYCHAIN], [/* Use Apple OS X key chain for credential caching */
+m4trace:configure.ac:1382: -1- AC_DEFINE_TRACE_LITERAL([APPLEKEYCHAIN])
+m4trace:configure.ac:1382: -1- m4_pattern_allow([^APPLEKEYCHAIN$])
+m4trace:configure.ac:1382: -1- AH_OUTPUT([APPLEKEYCHAIN], [/* Use Apple OS X key chain for credential caching */
@%:@undef APPLEKEYCHAIN])
-m4trace:configure.ac:1399: -1- AC_DEFINE_TRACE_LITERAL([__EXTENSIONS__])
-m4trace:configure.ac:1399: -1- m4_pattern_allow([^__EXTENSIONS__$])
-m4trace:configure.ac:1399: -1- AH_OUTPUT([__EXTENSIONS__], [/* Enable extended pthread features on Solaris */
+m4trace:configure.ac:1400: -1- AC_DEFINE_TRACE_LITERAL([__EXTENSIONS__])
+m4trace:configure.ac:1400: -1- m4_pattern_allow([^__EXTENSIONS__$])
+m4trace:configure.ac:1400: -1- AH_OUTPUT([__EXTENSIONS__], [/* Enable extended pthread features on Solaris */
@%:@undef __EXTENSIONS__])
-m4trace:configure.ac:1505: -1- AC_DEFINE_TRACE_LITERAL([_WINDOWS])
-m4trace:configure.ac:1505: -1- m4_pattern_allow([^_WINDOWS$])
-m4trace:configure.ac:1505: -1- AH_OUTPUT([_WINDOWS], [/* Windows is just too different */
+m4trace:configure.ac:1506: -1- AC_DEFINE_TRACE_LITERAL([_WINDOWS])
+m4trace:configure.ac:1506: -1- m4_pattern_allow([^_WINDOWS$])
+m4trace:configure.ac:1506: -1- AH_OUTPUT([_WINDOWS], [/* Windows is just too different */
@%:@undef _WINDOWS])
-m4trace:configure.ac:1508: -1- _m4_warn([obsolete], [The macro `AC_ERROR' is obsolete.
+m4trace:configure.ac:1509: -1- _m4_warn([obsolete], [The macro `AC_ERROR' is obsolete.
You should run autoupdate.], [../../lib/autoconf/oldnames.m4:34: AC_ERROR is expanded from...
-configure.ac:1508: the top level])
-m4trace:configure.ac:1528: -1- AC_DEFINE_TRACE_LITERAL([SYSTYPE])
-m4trace:configure.ac:1528: -1- m4_pattern_allow([^SYSTYPE$])
-m4trace:configure.ac:1528: -1- AH_OUTPUT([SYSTYPE], [/* Pine-Centric Host Specifier */
+configure.ac:1509: the top level])
+m4trace:configure.ac:1529: -1- AC_DEFINE_TRACE_LITERAL([SYSTYPE])
+m4trace:configure.ac:1529: -1- m4_pattern_allow([^SYSTYPE$])
+m4trace:configure.ac:1529: -1- AH_OUTPUT([SYSTYPE], [/* Pine-Centric Host Specifier */
@%:@undef SYSTYPE])
-m4trace:configure.ac:1529: -1- AC_DEFINE_TRACE_LITERAL([C_FILESEP])
-m4trace:configure.ac:1529: -1- m4_pattern_allow([^C_FILESEP$])
-m4trace:configure.ac:1529: -1- AH_OUTPUT([C_FILESEP], [/* File name separator as character constant */
+m4trace:configure.ac:1530: -1- AC_DEFINE_TRACE_LITERAL([C_FILESEP])
+m4trace:configure.ac:1530: -1- m4_pattern_allow([^C_FILESEP$])
+m4trace:configure.ac:1530: -1- AH_OUTPUT([C_FILESEP], [/* File name separator as character constant */
@%:@undef C_FILESEP])
-m4trace:configure.ac:1530: -1- AC_DEFINE_TRACE_LITERAL([S_FILESEP])
-m4trace:configure.ac:1530: -1- m4_pattern_allow([^S_FILESEP$])
-m4trace:configure.ac:1530: -1- AH_OUTPUT([S_FILESEP], [/* File name separator as string constant */
+m4trace:configure.ac:1531: -1- AC_DEFINE_TRACE_LITERAL([S_FILESEP])
+m4trace:configure.ac:1531: -1- m4_pattern_allow([^S_FILESEP$])
+m4trace:configure.ac:1531: -1- AH_OUTPUT([S_FILESEP], [/* File name separator as string constant */
@%:@undef S_FILESEP])
-m4trace:configure.ac:1531: -1- AC_DEFINE_TRACE_LITERAL([MAILDIR])
-m4trace:configure.ac:1531: -1- m4_pattern_allow([^MAILDIR$])
-m4trace:configure.ac:1531: -1- AH_OUTPUT([MAILDIR], [/* Path to local inboxes for pico newmail check */
+m4trace:configure.ac:1532: -1- AC_DEFINE_TRACE_LITERAL([MAILDIR])
+m4trace:configure.ac:1532: -1- m4_pattern_allow([^MAILDIR$])
+m4trace:configure.ac:1532: -1- AH_OUTPUT([MAILDIR], [/* Path to local inboxes for pico newmail check */
@%:@undef MAILDIR])
-m4trace:configure.ac:1532: -1- AC_DEFINE_TRACE_LITERAL([MODE_READONLY])
-m4trace:configure.ac:1532: -1- m4_pattern_allow([^MODE_READONLY$])
-m4trace:configure.ac:1532: -1- AH_OUTPUT([MODE_READONLY], [/* File mode used to set readonly access */
+m4trace:configure.ac:1533: -1- AC_DEFINE_TRACE_LITERAL([MODE_READONLY])
+m4trace:configure.ac:1533: -1- m4_pattern_allow([^MODE_READONLY$])
+m4trace:configure.ac:1533: -1- AH_OUTPUT([MODE_READONLY], [/* File mode used to set readonly access */
@%:@undef MODE_READONLY])
-m4trace:configure.ac:1535: -1- AC_SUBST([C_CLIENT_TARGET], [$alpine_c_client_target])
-m4trace:configure.ac:1535: -1- AC_SUBST_TRACE([C_CLIENT_TARGET])
-m4trace:configure.ac:1535: -1- m4_pattern_allow([^C_CLIENT_TARGET$])
-m4trace:configure.ac:1536: -1- AC_SUBST([C_CLIENT_WITH_IPV6], [$c_client_ip6])
-m4trace:configure.ac:1536: -1- AC_SUBST_TRACE([C_CLIENT_WITH_IPV6])
-m4trace:configure.ac:1536: -1- m4_pattern_allow([^C_CLIENT_WITH_IPV6$])
-m4trace:configure.ac:1553: -1- AC_DEFINE_TRACE_LITERAL([SMIME])
-m4trace:configure.ac:1553: -1- m4_pattern_allow([^SMIME$])
-m4trace:configure.ac:1553: -1- AH_OUTPUT([SMIME], [/* Enable S/MIME code */
+m4trace:configure.ac:1536: -1- AC_SUBST([C_CLIENT_TARGET], [$alpine_c_client_target])
+m4trace:configure.ac:1536: -1- AC_SUBST_TRACE([C_CLIENT_TARGET])
+m4trace:configure.ac:1536: -1- m4_pattern_allow([^C_CLIENT_TARGET$])
+m4trace:configure.ac:1537: -1- AC_SUBST([C_CLIENT_WITH_IPV6], [$c_client_ip6])
+m4trace:configure.ac:1537: -1- AC_SUBST_TRACE([C_CLIENT_WITH_IPV6])
+m4trace:configure.ac:1537: -1- m4_pattern_allow([^C_CLIENT_WITH_IPV6$])
+m4trace:configure.ac:1554: -1- AC_DEFINE_TRACE_LITERAL([SMIME])
+m4trace:configure.ac:1554: -1- m4_pattern_allow([^SMIME$])
+m4trace:configure.ac:1554: -1- AH_OUTPUT([SMIME], [/* Enable S/MIME code */
@%:@undef SMIME])
-m4trace:configure.ac:1554: -1- AC_DEFINE_TRACE_LITERAL([SMIME_SSLCERTS])
-m4trace:configure.ac:1554: -1- m4_pattern_allow([^SMIME_SSLCERTS$])
-m4trace:configure.ac:1554: -1- AH_OUTPUT([SMIME_SSLCERTS], [/* Directory where S/MIME CACerts are located */
+m4trace:configure.ac:1555: -1- AC_DEFINE_TRACE_LITERAL([SMIME_SSLCERTS])
+m4trace:configure.ac:1555: -1- m4_pattern_allow([^SMIME_SSLCERTS$])
+m4trace:configure.ac:1555: -1- AH_OUTPUT([SMIME_SSLCERTS], [/* Directory where S/MIME CACerts are located */
@%:@undef SMIME_SSLCERTS])
-m4trace:configure.ac:1603: -1- AC_SUBST([C_CLIENT_CFLAGS], [EXTRACFLAGS=\"$alpine_c_client_cflags\"])
-m4trace:configure.ac:1603: -1- AC_SUBST_TRACE([C_CLIENT_CFLAGS])
-m4trace:configure.ac:1603: -1- m4_pattern_allow([^C_CLIENT_CFLAGS$])
-m4trace:configure.ac:1614: -1- AC_SUBST([C_CLIENT_LDFLAGS], [EXTRALDFLAGS=\"$alpine_c_client_ldflags\"])
-m4trace:configure.ac:1614: -1- AC_SUBST_TRACE([C_CLIENT_LDFLAGS])
-m4trace:configure.ac:1614: -1- m4_pattern_allow([^C_CLIENT_LDFLAGS$])
-m4trace:configure.ac:1618: -1- AC_SUBST([C_CLIENT_GCCOPTLEVEL], [GCCOPTLEVEL=\"$alpine_c_client_gccoptlevel\"])
-m4trace:configure.ac:1618: -1- AC_SUBST_TRACE([C_CLIENT_GCCOPTLEVEL])
-m4trace:configure.ac:1618: -1- m4_pattern_allow([^C_CLIENT_GCCOPTLEVEL$])
-m4trace:configure.ac:1621: -1- AC_SUBST([C_CLIENT_SPECIALS], [$c_client_specials])
-m4trace:configure.ac:1621: -1- AC_SUBST_TRACE([C_CLIENT_SPECIALS])
-m4trace:configure.ac:1621: -1- m4_pattern_allow([^C_CLIENT_SPECIALS$])
-m4trace:configure.ac:1641: -1- AC_DEFINE_TRACE_LITERAL([PUBCOOKIE])
-m4trace:configure.ac:1641: -1- m4_pattern_allow([^PUBCOOKIE$])
-m4trace:configure.ac:1641: -1- AH_OUTPUT([PUBCOOKIE], [/* Include support for UW Pubcookie Web Authentication */
+m4trace:configure.ac:1604: -1- AC_SUBST([C_CLIENT_CFLAGS], [EXTRACFLAGS=\"$alpine_c_client_cflags\"])
+m4trace:configure.ac:1604: -1- AC_SUBST_TRACE([C_CLIENT_CFLAGS])
+m4trace:configure.ac:1604: -1- m4_pattern_allow([^C_CLIENT_CFLAGS$])
+m4trace:configure.ac:1615: -1- AC_SUBST([C_CLIENT_LDFLAGS], [EXTRALDFLAGS=\"$alpine_c_client_ldflags\"])
+m4trace:configure.ac:1615: -1- AC_SUBST_TRACE([C_CLIENT_LDFLAGS])
+m4trace:configure.ac:1615: -1- m4_pattern_allow([^C_CLIENT_LDFLAGS$])
+m4trace:configure.ac:1619: -1- AC_SUBST([C_CLIENT_GCCOPTLEVEL], [GCCOPTLEVEL=\"$alpine_c_client_gccoptlevel\"])
+m4trace:configure.ac:1619: -1- AC_SUBST_TRACE([C_CLIENT_GCCOPTLEVEL])
+m4trace:configure.ac:1619: -1- m4_pattern_allow([^C_CLIENT_GCCOPTLEVEL$])
+m4trace:configure.ac:1622: -1- AC_SUBST([C_CLIENT_SPECIALS], [$c_client_specials])
+m4trace:configure.ac:1622: -1- AC_SUBST_TRACE([C_CLIENT_SPECIALS])
+m4trace:configure.ac:1622: -1- m4_pattern_allow([^C_CLIENT_SPECIALS$])
+m4trace:configure.ac:1642: -1- AC_DEFINE_TRACE_LITERAL([PUBCOOKIE])
+m4trace:configure.ac:1642: -1- m4_pattern_allow([^PUBCOOKIE$])
+m4trace:configure.ac:1642: -1- AH_OUTPUT([PUBCOOKIE], [/* Include support for UW Pubcookie Web Authentication */
@%:@undef PUBCOOKIE])
-m4trace:configure.ac:1648: -1- AC_SUBST([REGEX_BUILD])
-m4trace:configure.ac:1648: -1- AC_SUBST_TRACE([REGEX_BUILD])
-m4trace:configure.ac:1648: -1- m4_pattern_allow([^REGEX_BUILD$])
-m4trace:configure.ac:1650: -1- AC_SUBST([WEB_BUILD])
-m4trace:configure.ac:1650: -1- AC_SUBST_TRACE([WEB_BUILD])
-m4trace:configure.ac:1650: -1- m4_pattern_allow([^WEB_BUILD$])
-m4trace:configure.ac:1651: -1- AC_SUBST([WEB_BINDIR])
-m4trace:configure.ac:1651: -1- AC_SUBST_TRACE([WEB_BINDIR])
-m4trace:configure.ac:1651: -1- m4_pattern_allow([^WEB_BINDIR$])
-m4trace:configure.ac:1652: -1- AC_SUBST([WEB_PUBCOOKIE_BUILD])
-m4trace:configure.ac:1652: -1- AC_SUBST_TRACE([WEB_PUBCOOKIE_BUILD])
-m4trace:configure.ac:1652: -1- m4_pattern_allow([^WEB_PUBCOOKIE_BUILD$])
-m4trace:configure.ac:1653: -1- AC_SUBST([WEB_PUBCOOKIE_LIB])
-m4trace:configure.ac:1653: -1- AC_SUBST_TRACE([WEB_PUBCOOKIE_LIB])
-m4trace:configure.ac:1653: -1- m4_pattern_allow([^WEB_PUBCOOKIE_LIB$])
-m4trace:configure.ac:1654: -1- AC_SUBST([WEB_PUBCOOKIE_LINK])
-m4trace:configure.ac:1654: -1- AC_SUBST_TRACE([WEB_PUBCOOKIE_LINK])
-m4trace:configure.ac:1654: -1- m4_pattern_allow([^WEB_PUBCOOKIE_LINK$])
-m4trace:configure.ac:1656: -1- AC_SUBST([AM_CFLAGS])
-m4trace:configure.ac:1656: -1- AC_SUBST_TRACE([AM_CFLAGS])
-m4trace:configure.ac:1656: -1- m4_pattern_allow([^AM_CFLAGS$])
-m4trace:configure.ac:1657: -1- AC_SUBST([AM_LDFLAGS])
-m4trace:configure.ac:1657: -1- AC_SUBST_TRACE([AM_LDFLAGS])
-m4trace:configure.ac:1657: -1- m4_pattern_allow([^AM_LDFLAGS$])
-m4trace:configure.ac:1659: -1- AC_CONFIG_FILES([m4/Makefile po/Makefile.in regex/Makefile \
+m4trace:configure.ac:1649: -1- AC_SUBST([REGEX_BUILD])
+m4trace:configure.ac:1649: -1- AC_SUBST_TRACE([REGEX_BUILD])
+m4trace:configure.ac:1649: -1- m4_pattern_allow([^REGEX_BUILD$])
+m4trace:configure.ac:1651: -1- AC_SUBST([WEB_BUILD])
+m4trace:configure.ac:1651: -1- AC_SUBST_TRACE([WEB_BUILD])
+m4trace:configure.ac:1651: -1- m4_pattern_allow([^WEB_BUILD$])
+m4trace:configure.ac:1652: -1- AC_SUBST([WEB_BINDIR])
+m4trace:configure.ac:1652: -1- AC_SUBST_TRACE([WEB_BINDIR])
+m4trace:configure.ac:1652: -1- m4_pattern_allow([^WEB_BINDIR$])
+m4trace:configure.ac:1653: -1- AC_SUBST([WEB_PUBCOOKIE_BUILD])
+m4trace:configure.ac:1653: -1- AC_SUBST_TRACE([WEB_PUBCOOKIE_BUILD])
+m4trace:configure.ac:1653: -1- m4_pattern_allow([^WEB_PUBCOOKIE_BUILD$])
+m4trace:configure.ac:1654: -1- AC_SUBST([WEB_PUBCOOKIE_LIB])
+m4trace:configure.ac:1654: -1- AC_SUBST_TRACE([WEB_PUBCOOKIE_LIB])
+m4trace:configure.ac:1654: -1- m4_pattern_allow([^WEB_PUBCOOKIE_LIB$])
+m4trace:configure.ac:1655: -1- AC_SUBST([WEB_PUBCOOKIE_LINK])
+m4trace:configure.ac:1655: -1- AC_SUBST_TRACE([WEB_PUBCOOKIE_LINK])
+m4trace:configure.ac:1655: -1- m4_pattern_allow([^WEB_PUBCOOKIE_LINK$])
+m4trace:configure.ac:1657: -1- AC_SUBST([AM_CFLAGS])
+m4trace:configure.ac:1657: -1- AC_SUBST_TRACE([AM_CFLAGS])
+m4trace:configure.ac:1657: -1- m4_pattern_allow([^AM_CFLAGS$])
+m4trace:configure.ac:1658: -1- AC_SUBST([AM_LDFLAGS])
+m4trace:configure.ac:1658: -1- AC_SUBST_TRACE([AM_LDFLAGS])
+m4trace:configure.ac:1658: -1- m4_pattern_allow([^AM_LDFLAGS$])
+m4trace:configure.ac:1660: -1- AC_CONFIG_FILES([m4/Makefile po/Makefile.in regex/Makefile \
pith/osdep/Makefile pith/charconv/Makefile pith/Makefile \
pico/osdep/Makefile pico/Makefile \
alpine/osdep/Makefile alpine/Makefile \
web/src/Makefile web/src/pubcookie/Makefile \
web/src/alpined.d/Makefile \
Makefile])
-m4trace:configure.ac:1659: -1- _m4_warn([obsolete], [AC_OUTPUT should be used without arguments.
+m4trace:configure.ac:1660: -1- _m4_warn([obsolete], [AC_OUTPUT should be used without arguments.
You should run autoupdate.], [])
-m4trace:configure.ac:1659: -1- AC_SUBST([LIB@&t@OBJS], [$ac_libobjs])
-m4trace:configure.ac:1659: -1- AC_SUBST_TRACE([LIB@&t@OBJS])
-m4trace:configure.ac:1659: -1- m4_pattern_allow([^LIB@&t@OBJS$])
-m4trace:configure.ac:1659: -1- AC_SUBST([LTLIBOBJS], [$ac_ltlibobjs])
-m4trace:configure.ac:1659: -1- AC_SUBST_TRACE([LTLIBOBJS])
-m4trace:configure.ac:1659: -1- m4_pattern_allow([^LTLIBOBJS$])
-m4trace:configure.ac:1659: -1- AM_CONDITIONAL([am__EXEEXT], [test -n "$EXEEXT"])
-m4trace:configure.ac:1659: -1- AC_SUBST([am__EXEEXT_TRUE])
-m4trace:configure.ac:1659: -1- AC_SUBST_TRACE([am__EXEEXT_TRUE])
-m4trace:configure.ac:1659: -1- m4_pattern_allow([^am__EXEEXT_TRUE$])
-m4trace:configure.ac:1659: -1- AC_SUBST([am__EXEEXT_FALSE])
-m4trace:configure.ac:1659: -1- AC_SUBST_TRACE([am__EXEEXT_FALSE])
-m4trace:configure.ac:1659: -1- m4_pattern_allow([^am__EXEEXT_FALSE$])
-m4trace:configure.ac:1659: -1- _AM_SUBST_NOTMAKE([am__EXEEXT_TRUE])
-m4trace:configure.ac:1659: -1- _AM_SUBST_NOTMAKE([am__EXEEXT_FALSE])
-m4trace:configure.ac:1659: -1- AC_SUBST_TRACE([top_builddir])
-m4trace:configure.ac:1659: -1- AC_SUBST_TRACE([top_build_prefix])
-m4trace:configure.ac:1659: -1- AC_SUBST_TRACE([srcdir])
-m4trace:configure.ac:1659: -1- AC_SUBST_TRACE([abs_srcdir])
-m4trace:configure.ac:1659: -1- AC_SUBST_TRACE([top_srcdir])
-m4trace:configure.ac:1659: -1- AC_SUBST_TRACE([abs_top_srcdir])
-m4trace:configure.ac:1659: -1- AC_SUBST_TRACE([builddir])
-m4trace:configure.ac:1659: -1- AC_SUBST_TRACE([abs_builddir])
-m4trace:configure.ac:1659: -1- AC_SUBST_TRACE([abs_top_builddir])
-m4trace:configure.ac:1659: -1- AC_SUBST_TRACE([INSTALL])
-m4trace:configure.ac:1659: -1- AC_SUBST_TRACE([MKDIR_P])
-m4trace:configure.ac:1659: -1- AC_REQUIRE_AUX_FILE([ltmain.sh])
+m4trace:configure.ac:1660: -1- AC_SUBST([LIB@&t@OBJS], [$ac_libobjs])
+m4trace:configure.ac:1660: -1- AC_SUBST_TRACE([LIB@&t@OBJS])
+m4trace:configure.ac:1660: -1- m4_pattern_allow([^LIB@&t@OBJS$])
+m4trace:configure.ac:1660: -1- AC_SUBST([LTLIBOBJS], [$ac_ltlibobjs])
+m4trace:configure.ac:1660: -1- AC_SUBST_TRACE([LTLIBOBJS])
+m4trace:configure.ac:1660: -1- m4_pattern_allow([^LTLIBOBJS$])
+m4trace:configure.ac:1660: -1- AM_CONDITIONAL([am__EXEEXT], [test -n "$EXEEXT"])
+m4trace:configure.ac:1660: -1- AC_SUBST([am__EXEEXT_TRUE])
+m4trace:configure.ac:1660: -1- AC_SUBST_TRACE([am__EXEEXT_TRUE])
+m4trace:configure.ac:1660: -1- m4_pattern_allow([^am__EXEEXT_TRUE$])
+m4trace:configure.ac:1660: -1- AC_SUBST([am__EXEEXT_FALSE])
+m4trace:configure.ac:1660: -1- AC_SUBST_TRACE([am__EXEEXT_FALSE])
+m4trace:configure.ac:1660: -1- m4_pattern_allow([^am__EXEEXT_FALSE$])
+m4trace:configure.ac:1660: -1- _AM_SUBST_NOTMAKE([am__EXEEXT_TRUE])
+m4trace:configure.ac:1660: -1- _AM_SUBST_NOTMAKE([am__EXEEXT_FALSE])
+m4trace:configure.ac:1660: -1- AC_SUBST_TRACE([top_builddir])
+m4trace:configure.ac:1660: -1- AC_SUBST_TRACE([top_build_prefix])
+m4trace:configure.ac:1660: -1- AC_SUBST_TRACE([srcdir])
+m4trace:configure.ac:1660: -1- AC_SUBST_TRACE([abs_srcdir])
+m4trace:configure.ac:1660: -1- AC_SUBST_TRACE([top_srcdir])
+m4trace:configure.ac:1660: -1- AC_SUBST_TRACE([abs_top_srcdir])
+m4trace:configure.ac:1660: -1- AC_SUBST_TRACE([builddir])
+m4trace:configure.ac:1660: -1- AC_SUBST_TRACE([abs_builddir])
+m4trace:configure.ac:1660: -1- AC_SUBST_TRACE([abs_top_builddir])
+m4trace:configure.ac:1660: -1- AC_SUBST_TRACE([INSTALL])
+m4trace:configure.ac:1660: -1- AC_SUBST_TRACE([MKDIR_P])
+m4trace:configure.ac:1660: -1- AC_REQUIRE_AUX_FILE([ltmain.sh])
diff --git a/autom4te.cache/traces.2 b/autom4te.cache/traces.2
index f1f7ebcd..985f217e 100644
--- a/autom4te.cache/traces.2
+++ b/autom4te.cache/traces.2
@@ -4897,117 +4897,117 @@ m4trace:m4/xsize.m4:7: -1- AC_DEFUN([gl_XSIZE], [
AC_REQUIRE([AC_C_INLINE])
AC_CHECK_HEADERS(stdint.h)
])
-m4trace:configure.ac:20: -3- m4_include([VERSION])
-m4trace:configure.ac:20: -1- m4_pattern_forbid([^_?A[CHUM]_])
-m4trace:configure.ac:20: -1- m4_pattern_forbid([_AC_])
-m4trace:configure.ac:20: -1- m4_pattern_forbid([^LIBOBJS$], [do not use LIBOBJS directly, use AC_LIBOBJ (see section `AC_LIBOBJ vs LIBOBJS'])
-m4trace:configure.ac:20: -1- m4_pattern_allow([^AS_FLAGS$])
-m4trace:configure.ac:20: -1- m4_pattern_forbid([^_?m4_])
-m4trace:configure.ac:20: -1- m4_pattern_forbid([^dnl$])
-m4trace:configure.ac:20: -1- m4_pattern_forbid([^_?AS_])
-m4trace:configure.ac:20: -1- m4_pattern_allow([^SHELL$])
-m4trace:configure.ac:20: -1- m4_pattern_allow([^PATH_SEPARATOR$])
-m4trace:configure.ac:20: -1- m4_pattern_allow([^PACKAGE_NAME$])
-m4trace:configure.ac:20: -1- m4_pattern_allow([^PACKAGE_TARNAME$])
-m4trace:configure.ac:20: -1- m4_pattern_allow([^PACKAGE_VERSION$])
-m4trace:configure.ac:20: -1- m4_pattern_allow([^PACKAGE_STRING$])
-m4trace:configure.ac:20: -1- m4_pattern_allow([^PACKAGE_BUGREPORT$])
-m4trace:configure.ac:20: -1- m4_pattern_allow([^PACKAGE_URL$])
-m4trace:configure.ac:20: -1- m4_pattern_allow([^exec_prefix$])
-m4trace:configure.ac:20: -1- m4_pattern_allow([^prefix$])
-m4trace:configure.ac:20: -1- m4_pattern_allow([^program_transform_name$])
-m4trace:configure.ac:20: -1- m4_pattern_allow([^bindir$])
-m4trace:configure.ac:20: -1- m4_pattern_allow([^sbindir$])
-m4trace:configure.ac:20: -1- m4_pattern_allow([^libexecdir$])
-m4trace:configure.ac:20: -1- m4_pattern_allow([^datarootdir$])
-m4trace:configure.ac:20: -1- m4_pattern_allow([^datadir$])
-m4trace:configure.ac:20: -1- m4_pattern_allow([^sysconfdir$])
-m4trace:configure.ac:20: -1- m4_pattern_allow([^sharedstatedir$])
-m4trace:configure.ac:20: -1- m4_pattern_allow([^localstatedir$])
-m4trace:configure.ac:20: -1- m4_pattern_allow([^includedir$])
-m4trace:configure.ac:20: -1- m4_pattern_allow([^oldincludedir$])
-m4trace:configure.ac:20: -1- m4_pattern_allow([^docdir$])
-m4trace:configure.ac:20: -1- m4_pattern_allow([^infodir$])
-m4trace:configure.ac:20: -1- m4_pattern_allow([^htmldir$])
-m4trace:configure.ac:20: -1- m4_pattern_allow([^dvidir$])
-m4trace:configure.ac:20: -1- m4_pattern_allow([^pdfdir$])
-m4trace:configure.ac:20: -1- m4_pattern_allow([^psdir$])
-m4trace:configure.ac:20: -1- m4_pattern_allow([^libdir$])
-m4trace:configure.ac:20: -1- m4_pattern_allow([^localedir$])
-m4trace:configure.ac:20: -1- m4_pattern_allow([^mandir$])
-m4trace:configure.ac:20: -1- m4_pattern_allow([^PACKAGE_NAME$])
-m4trace:configure.ac:20: -1- m4_pattern_allow([^PACKAGE_TARNAME$])
-m4trace:configure.ac:20: -1- m4_pattern_allow([^PACKAGE_VERSION$])
-m4trace:configure.ac:20: -1- m4_pattern_allow([^PACKAGE_STRING$])
-m4trace:configure.ac:20: -1- m4_pattern_allow([^PACKAGE_BUGREPORT$])
-m4trace:configure.ac:20: -1- m4_pattern_allow([^PACKAGE_URL$])
-m4trace:configure.ac:20: -1- m4_pattern_allow([^DEFS$])
-m4trace:configure.ac:20: -1- m4_pattern_allow([^ECHO_C$])
-m4trace:configure.ac:20: -1- m4_pattern_allow([^ECHO_N$])
-m4trace:configure.ac:20: -1- m4_pattern_allow([^ECHO_T$])
-m4trace:configure.ac:20: -1- m4_pattern_allow([^LIBS$])
-m4trace:configure.ac:20: -1- m4_pattern_allow([^build_alias$])
-m4trace:configure.ac:20: -1- m4_pattern_allow([^host_alias$])
-m4trace:configure.ac:20: -1- m4_pattern_allow([^target_alias$])
-m4trace:configure.ac:25: -1- AM_INIT_AUTOMAKE([foreign nostdinc])
-m4trace:configure.ac:25: -1- m4_pattern_allow([^AM_[A-Z]+FLAGS$])
-m4trace:configure.ac:25: -1- AM_SET_CURRENT_AUTOMAKE_VERSION
-m4trace:configure.ac:25: -1- AM_AUTOMAKE_VERSION([1.11.1])
-m4trace:configure.ac:25: -1- _AM_AUTOCONF_VERSION([2.68])
-m4trace:configure.ac:25: -1- m4_pattern_allow([^INSTALL_PROGRAM$])
-m4trace:configure.ac:25: -1- m4_pattern_allow([^INSTALL_SCRIPT$])
-m4trace:configure.ac:25: -1- m4_pattern_allow([^INSTALL_DATA$])
-m4trace:configure.ac:25: -1- m4_pattern_allow([^am__isrc$])
-m4trace:configure.ac:25: -1- _AM_SUBST_NOTMAKE([am__isrc])
-m4trace:configure.ac:25: -1- m4_pattern_allow([^CYGPATH_W$])
-m4trace:configure.ac:25: -1- _AM_SET_OPTIONS([foreign nostdinc])
-m4trace:configure.ac:25: -1- _AM_SET_OPTION([foreign])
-m4trace:configure.ac:25: -2- _AM_MANGLE_OPTION([foreign])
-m4trace:configure.ac:25: -1- _AM_SET_OPTION([nostdinc])
-m4trace:configure.ac:25: -2- _AM_MANGLE_OPTION([nostdinc])
-m4trace:configure.ac:25: -1- m4_pattern_allow([^PACKAGE$])
-m4trace:configure.ac:25: -1- m4_pattern_allow([^VERSION$])
-m4trace:configure.ac:25: -1- _AM_IF_OPTION([no-define], [], [AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE", [Name of package])
+m4trace:configure.ac:21: -3- m4_include([VERSION])
+m4trace:configure.ac:21: -1- m4_pattern_forbid([^_?A[CHUM]_])
+m4trace:configure.ac:21: -1- m4_pattern_forbid([_AC_])
+m4trace:configure.ac:21: -1- m4_pattern_forbid([^LIBOBJS$], [do not use LIBOBJS directly, use AC_LIBOBJ (see section `AC_LIBOBJ vs LIBOBJS'])
+m4trace:configure.ac:21: -1- m4_pattern_allow([^AS_FLAGS$])
+m4trace:configure.ac:21: -1- m4_pattern_forbid([^_?m4_])
+m4trace:configure.ac:21: -1- m4_pattern_forbid([^dnl$])
+m4trace:configure.ac:21: -1- m4_pattern_forbid([^_?AS_])
+m4trace:configure.ac:21: -1- m4_pattern_allow([^SHELL$])
+m4trace:configure.ac:21: -1- m4_pattern_allow([^PATH_SEPARATOR$])
+m4trace:configure.ac:21: -1- m4_pattern_allow([^PACKAGE_NAME$])
+m4trace:configure.ac:21: -1- m4_pattern_allow([^PACKAGE_TARNAME$])
+m4trace:configure.ac:21: -1- m4_pattern_allow([^PACKAGE_VERSION$])
+m4trace:configure.ac:21: -1- m4_pattern_allow([^PACKAGE_STRING$])
+m4trace:configure.ac:21: -1- m4_pattern_allow([^PACKAGE_BUGREPORT$])
+m4trace:configure.ac:21: -1- m4_pattern_allow([^PACKAGE_URL$])
+m4trace:configure.ac:21: -1- m4_pattern_allow([^exec_prefix$])
+m4trace:configure.ac:21: -1- m4_pattern_allow([^prefix$])
+m4trace:configure.ac:21: -1- m4_pattern_allow([^program_transform_name$])
+m4trace:configure.ac:21: -1- m4_pattern_allow([^bindir$])
+m4trace:configure.ac:21: -1- m4_pattern_allow([^sbindir$])
+m4trace:configure.ac:21: -1- m4_pattern_allow([^libexecdir$])
+m4trace:configure.ac:21: -1- m4_pattern_allow([^datarootdir$])
+m4trace:configure.ac:21: -1- m4_pattern_allow([^datadir$])
+m4trace:configure.ac:21: -1- m4_pattern_allow([^sysconfdir$])
+m4trace:configure.ac:21: -1- m4_pattern_allow([^sharedstatedir$])
+m4trace:configure.ac:21: -1- m4_pattern_allow([^localstatedir$])
+m4trace:configure.ac:21: -1- m4_pattern_allow([^includedir$])
+m4trace:configure.ac:21: -1- m4_pattern_allow([^oldincludedir$])
+m4trace:configure.ac:21: -1- m4_pattern_allow([^docdir$])
+m4trace:configure.ac:21: -1- m4_pattern_allow([^infodir$])
+m4trace:configure.ac:21: -1- m4_pattern_allow([^htmldir$])
+m4trace:configure.ac:21: -1- m4_pattern_allow([^dvidir$])
+m4trace:configure.ac:21: -1- m4_pattern_allow([^pdfdir$])
+m4trace:configure.ac:21: -1- m4_pattern_allow([^psdir$])
+m4trace:configure.ac:21: -1- m4_pattern_allow([^libdir$])
+m4trace:configure.ac:21: -1- m4_pattern_allow([^localedir$])
+m4trace:configure.ac:21: -1- m4_pattern_allow([^mandir$])
+m4trace:configure.ac:21: -1- m4_pattern_allow([^PACKAGE_NAME$])
+m4trace:configure.ac:21: -1- m4_pattern_allow([^PACKAGE_TARNAME$])
+m4trace:configure.ac:21: -1- m4_pattern_allow([^PACKAGE_VERSION$])
+m4trace:configure.ac:21: -1- m4_pattern_allow([^PACKAGE_STRING$])
+m4trace:configure.ac:21: -1- m4_pattern_allow([^PACKAGE_BUGREPORT$])
+m4trace:configure.ac:21: -1- m4_pattern_allow([^PACKAGE_URL$])
+m4trace:configure.ac:21: -1- m4_pattern_allow([^DEFS$])
+m4trace:configure.ac:21: -1- m4_pattern_allow([^ECHO_C$])
+m4trace:configure.ac:21: -1- m4_pattern_allow([^ECHO_N$])
+m4trace:configure.ac:21: -1- m4_pattern_allow([^ECHO_T$])
+m4trace:configure.ac:21: -1- m4_pattern_allow([^LIBS$])
+m4trace:configure.ac:21: -1- m4_pattern_allow([^build_alias$])
+m4trace:configure.ac:21: -1- m4_pattern_allow([^host_alias$])
+m4trace:configure.ac:21: -1- m4_pattern_allow([^target_alias$])
+m4trace:configure.ac:26: -1- AM_INIT_AUTOMAKE([foreign nostdinc])
+m4trace:configure.ac:26: -1- m4_pattern_allow([^AM_[A-Z]+FLAGS$])
+m4trace:configure.ac:26: -1- AM_SET_CURRENT_AUTOMAKE_VERSION
+m4trace:configure.ac:26: -1- AM_AUTOMAKE_VERSION([1.11.1])
+m4trace:configure.ac:26: -1- _AM_AUTOCONF_VERSION([2.68])
+m4trace:configure.ac:26: -1- m4_pattern_allow([^INSTALL_PROGRAM$])
+m4trace:configure.ac:26: -1- m4_pattern_allow([^INSTALL_SCRIPT$])
+m4trace:configure.ac:26: -1- m4_pattern_allow([^INSTALL_DATA$])
+m4trace:configure.ac:26: -1- m4_pattern_allow([^am__isrc$])
+m4trace:configure.ac:26: -1- _AM_SUBST_NOTMAKE([am__isrc])
+m4trace:configure.ac:26: -1- m4_pattern_allow([^CYGPATH_W$])
+m4trace:configure.ac:26: -1- _AM_SET_OPTIONS([foreign nostdinc])
+m4trace:configure.ac:26: -1- _AM_SET_OPTION([foreign])
+m4trace:configure.ac:26: -2- _AM_MANGLE_OPTION([foreign])
+m4trace:configure.ac:26: -1- _AM_SET_OPTION([nostdinc])
+m4trace:configure.ac:26: -2- _AM_MANGLE_OPTION([nostdinc])
+m4trace:configure.ac:26: -1- m4_pattern_allow([^PACKAGE$])
+m4trace:configure.ac:26: -1- m4_pattern_allow([^VERSION$])
+m4trace:configure.ac:26: -1- _AM_IF_OPTION([no-define], [], [AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE", [Name of package])
AC_DEFINE_UNQUOTED(VERSION, "$VERSION", [Version number of package])])
-m4trace:configure.ac:25: -2- _AM_MANGLE_OPTION([no-define])
-m4trace:configure.ac:25: -1- m4_pattern_allow([^PACKAGE$])
-m4trace:configure.ac:25: -1- m4_pattern_allow([^VERSION$])
-m4trace:configure.ac:25: -1- AM_SANITY_CHECK
-m4trace:configure.ac:25: -1- AM_MISSING_PROG([ACLOCAL], [aclocal-${am__api_version}])
-m4trace:configure.ac:25: -1- AM_MISSING_HAS_RUN
-m4trace:configure.ac:25: -1- AM_AUX_DIR_EXPAND
-m4trace:configure.ac:25: -1- m4_pattern_allow([^ACLOCAL$])
-m4trace:configure.ac:25: -1- AM_MISSING_PROG([AUTOCONF], [autoconf])
-m4trace:configure.ac:25: -1- m4_pattern_allow([^AUTOCONF$])
-m4trace:configure.ac:25: -1- AM_MISSING_PROG([AUTOMAKE], [automake-${am__api_version}])
-m4trace:configure.ac:25: -1- m4_pattern_allow([^AUTOMAKE$])
-m4trace:configure.ac:25: -1- AM_MISSING_PROG([AUTOHEADER], [autoheader])
-m4trace:configure.ac:25: -1- m4_pattern_allow([^AUTOHEADER$])
-m4trace:configure.ac:25: -1- AM_MISSING_PROG([MAKEINFO], [makeinfo])
-m4trace:configure.ac:25: -1- m4_pattern_allow([^MAKEINFO$])
-m4trace:configure.ac:25: -1- AM_PROG_INSTALL_SH
-m4trace:configure.ac:25: -1- m4_pattern_allow([^install_sh$])
-m4trace:configure.ac:25: -1- AM_PROG_INSTALL_STRIP
-m4trace:configure.ac:25: -1- m4_pattern_allow([^STRIP$])
-m4trace:configure.ac:25: -1- m4_pattern_allow([^INSTALL_STRIP_PROGRAM$])
-m4trace:configure.ac:25: -1- AM_PROG_MKDIR_P
-m4trace:configure.ac:25: -1- m4_pattern_allow([^MKDIR_P$])
-m4trace:configure.ac:25: -1- m4_pattern_allow([^mkdir_p$])
-m4trace:configure.ac:25: -1- m4_pattern_allow([^AWK$])
-m4trace:configure.ac:25: -1- m4_pattern_allow([^SET_MAKE$])
-m4trace:configure.ac:25: -1- AM_SET_LEADING_DOT
-m4trace:configure.ac:25: -1- m4_pattern_allow([^am__leading_dot$])
-m4trace:configure.ac:25: -1- _AM_IF_OPTION([tar-ustar], [_AM_PROG_TAR([ustar])], [_AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])],
+m4trace:configure.ac:26: -2- _AM_MANGLE_OPTION([no-define])
+m4trace:configure.ac:26: -1- m4_pattern_allow([^PACKAGE$])
+m4trace:configure.ac:26: -1- m4_pattern_allow([^VERSION$])
+m4trace:configure.ac:26: -1- AM_SANITY_CHECK
+m4trace:configure.ac:26: -1- AM_MISSING_PROG([ACLOCAL], [aclocal-${am__api_version}])
+m4trace:configure.ac:26: -1- AM_MISSING_HAS_RUN
+m4trace:configure.ac:26: -1- AM_AUX_DIR_EXPAND
+m4trace:configure.ac:26: -1- m4_pattern_allow([^ACLOCAL$])
+m4trace:configure.ac:26: -1- AM_MISSING_PROG([AUTOCONF], [autoconf])
+m4trace:configure.ac:26: -1- m4_pattern_allow([^AUTOCONF$])
+m4trace:configure.ac:26: -1- AM_MISSING_PROG([AUTOMAKE], [automake-${am__api_version}])
+m4trace:configure.ac:26: -1- m4_pattern_allow([^AUTOMAKE$])
+m4trace:configure.ac:26: -1- AM_MISSING_PROG([AUTOHEADER], [autoheader])
+m4trace:configure.ac:26: -1- m4_pattern_allow([^AUTOHEADER$])
+m4trace:configure.ac:26: -1- AM_MISSING_PROG([MAKEINFO], [makeinfo])
+m4trace:configure.ac:26: -1- m4_pattern_allow([^MAKEINFO$])
+m4trace:configure.ac:26: -1- AM_PROG_INSTALL_SH
+m4trace:configure.ac:26: -1- m4_pattern_allow([^install_sh$])
+m4trace:configure.ac:26: -1- AM_PROG_INSTALL_STRIP
+m4trace:configure.ac:26: -1- m4_pattern_allow([^STRIP$])
+m4trace:configure.ac:26: -1- m4_pattern_allow([^INSTALL_STRIP_PROGRAM$])
+m4trace:configure.ac:26: -1- AM_PROG_MKDIR_P
+m4trace:configure.ac:26: -1- m4_pattern_allow([^MKDIR_P$])
+m4trace:configure.ac:26: -1- m4_pattern_allow([^mkdir_p$])
+m4trace:configure.ac:26: -1- m4_pattern_allow([^AWK$])
+m4trace:configure.ac:26: -1- m4_pattern_allow([^SET_MAKE$])
+m4trace:configure.ac:26: -1- AM_SET_LEADING_DOT
+m4trace:configure.ac:26: -1- m4_pattern_allow([^am__leading_dot$])
+m4trace:configure.ac:26: -1- _AM_IF_OPTION([tar-ustar], [_AM_PROG_TAR([ustar])], [_AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])],
[_AM_PROG_TAR([v7])])])
-m4trace:configure.ac:25: -2- _AM_MANGLE_OPTION([tar-ustar])
-m4trace:configure.ac:25: -1- _AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])], [_AM_PROG_TAR([v7])])
-m4trace:configure.ac:25: -2- _AM_MANGLE_OPTION([tar-pax])
-m4trace:configure.ac:25: -1- _AM_PROG_TAR([v7])
-m4trace:configure.ac:25: -1- AM_MISSING_PROG([AMTAR], [tar])
-m4trace:configure.ac:25: -1- m4_pattern_allow([^AMTAR$])
-m4trace:configure.ac:25: -1- m4_pattern_allow([^am__tar$])
-m4trace:configure.ac:25: -1- m4_pattern_allow([^am__untar$])
-m4trace:configure.ac:25: -1- _AM_IF_OPTION([no-dependencies], [], [AC_PROVIDE_IFELSE([AC_PROG_CC],
+m4trace:configure.ac:26: -2- _AM_MANGLE_OPTION([tar-ustar])
+m4trace:configure.ac:26: -1- _AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])], [_AM_PROG_TAR([v7])])
+m4trace:configure.ac:26: -2- _AM_MANGLE_OPTION([tar-pax])
+m4trace:configure.ac:26: -1- _AM_PROG_TAR([v7])
+m4trace:configure.ac:26: -1- AM_MISSING_PROG([AMTAR], [tar])
+m4trace:configure.ac:26: -1- m4_pattern_allow([^AMTAR$])
+m4trace:configure.ac:26: -1- m4_pattern_allow([^am__tar$])
+m4trace:configure.ac:26: -1- m4_pattern_allow([^am__untar$])
+m4trace:configure.ac:26: -1- _AM_IF_OPTION([no-dependencies], [], [AC_PROVIDE_IFELSE([AC_PROG_CC],
[_AM_DEPENDENCIES(CC)],
[define([AC_PROG_CC],
defn([AC_PROG_CC])[_AM_DEPENDENCIES(CC)])])dnl
@@ -5020,159 +5020,159 @@ AC_PROVIDE_IFELSE([AC_PROG_OBJC],
[define([AC_PROG_OBJC],
defn([AC_PROG_OBJC])[_AM_DEPENDENCIES(OBJC)])])dnl
])
-m4trace:configure.ac:25: -2- _AM_MANGLE_OPTION([no-dependencies])
-m4trace:configure.ac:25: -1- _AM_IF_OPTION([silent-rules], [AC_REQUIRE([AM_SILENT_RULES])])
-m4trace:configure.ac:25: -2- _AM_MANGLE_OPTION([silent-rules])
-m4trace:configure.ac:27: -1- AM_MAINTAINER_MODE
-m4trace:configure.ac:27: -1- AM_CONDITIONAL([MAINTAINER_MODE], [test $USE_MAINTAINER_MODE = yes])
-m4trace:configure.ac:27: -1- m4_pattern_allow([^MAINTAINER_MODE_TRUE$])
-m4trace:configure.ac:27: -1- m4_pattern_allow([^MAINTAINER_MODE_FALSE$])
-m4trace:configure.ac:27: -1- _AM_SUBST_NOTMAKE([MAINTAINER_MODE_TRUE])
-m4trace:configure.ac:27: -1- _AM_SUBST_NOTMAKE([MAINTAINER_MODE_FALSE])
-m4trace:configure.ac:27: -1- m4_pattern_allow([^MAINT$])
-m4trace:configure.ac:29: -1- m4_pattern_allow([^build$])
-m4trace:configure.ac:29: -1- m4_pattern_allow([^build_cpu$])
-m4trace:configure.ac:29: -1- m4_pattern_allow([^build_vendor$])
-m4trace:configure.ac:29: -1- m4_pattern_allow([^build_os$])
-m4trace:configure.ac:29: -1- m4_pattern_allow([^host$])
-m4trace:configure.ac:29: -1- m4_pattern_allow([^host_cpu$])
-m4trace:configure.ac:29: -1- m4_pattern_allow([^host_vendor$])
-m4trace:configure.ac:29: -1- m4_pattern_allow([^host_os$])
-m4trace:configure.ac:40: -1- m4_pattern_allow([^CC$])
-m4trace:configure.ac:40: -1- m4_pattern_allow([^CFLAGS$])
-m4trace:configure.ac:40: -1- m4_pattern_allow([^LDFLAGS$])
-m4trace:configure.ac:40: -1- m4_pattern_allow([^LIBS$])
-m4trace:configure.ac:40: -1- m4_pattern_allow([^CPPFLAGS$])
-m4trace:configure.ac:40: -1- m4_pattern_allow([^CC$])
-m4trace:configure.ac:40: -1- m4_pattern_allow([^CC$])
-m4trace:configure.ac:40: -1- m4_pattern_allow([^CC$])
-m4trace:configure.ac:40: -1- m4_pattern_allow([^CC$])
-m4trace:configure.ac:40: -1- m4_pattern_allow([^ac_ct_CC$])
-m4trace:configure.ac:40: -1- m4_pattern_allow([^EXEEXT$])
-m4trace:configure.ac:40: -1- m4_pattern_allow([^OBJEXT$])
-m4trace:configure.ac:40: -1- _AM_DEPENDENCIES([CC])
-m4trace:configure.ac:40: -1- AM_SET_DEPDIR
-m4trace:configure.ac:40: -1- m4_pattern_allow([^DEPDIR$])
-m4trace:configure.ac:40: -1- AM_OUTPUT_DEPENDENCY_COMMANDS
-m4trace:configure.ac:40: -1- AM_MAKE_INCLUDE
-m4trace:configure.ac:40: -1- m4_pattern_allow([^am__include$])
-m4trace:configure.ac:40: -1- m4_pattern_allow([^am__quote$])
-m4trace:configure.ac:40: -1- AM_DEP_TRACK
-m4trace:configure.ac:40: -1- AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno])
-m4trace:configure.ac:40: -1- m4_pattern_allow([^AMDEP_TRUE$])
-m4trace:configure.ac:40: -1- m4_pattern_allow([^AMDEP_FALSE$])
-m4trace:configure.ac:40: -1- _AM_SUBST_NOTMAKE([AMDEP_TRUE])
-m4trace:configure.ac:40: -1- _AM_SUBST_NOTMAKE([AMDEP_FALSE])
-m4trace:configure.ac:40: -1- m4_pattern_allow([^AMDEPBACKSLASH$])
-m4trace:configure.ac:40: -1- _AM_SUBST_NOTMAKE([AMDEPBACKSLASH])
-m4trace:configure.ac:40: -1- m4_pattern_allow([^CCDEPMODE$])
-m4trace:configure.ac:40: -1- AM_CONDITIONAL([am__fastdepCC], [
+m4trace:configure.ac:26: -2- _AM_MANGLE_OPTION([no-dependencies])
+m4trace:configure.ac:26: -1- _AM_IF_OPTION([silent-rules], [AC_REQUIRE([AM_SILENT_RULES])])
+m4trace:configure.ac:26: -2- _AM_MANGLE_OPTION([silent-rules])
+m4trace:configure.ac:28: -1- AM_MAINTAINER_MODE
+m4trace:configure.ac:28: -1- AM_CONDITIONAL([MAINTAINER_MODE], [test $USE_MAINTAINER_MODE = yes])
+m4trace:configure.ac:28: -1- m4_pattern_allow([^MAINTAINER_MODE_TRUE$])
+m4trace:configure.ac:28: -1- m4_pattern_allow([^MAINTAINER_MODE_FALSE$])
+m4trace:configure.ac:28: -1- _AM_SUBST_NOTMAKE([MAINTAINER_MODE_TRUE])
+m4trace:configure.ac:28: -1- _AM_SUBST_NOTMAKE([MAINTAINER_MODE_FALSE])
+m4trace:configure.ac:28: -1- m4_pattern_allow([^MAINT$])
+m4trace:configure.ac:30: -1- m4_pattern_allow([^build$])
+m4trace:configure.ac:30: -1- m4_pattern_allow([^build_cpu$])
+m4trace:configure.ac:30: -1- m4_pattern_allow([^build_vendor$])
+m4trace:configure.ac:30: -1- m4_pattern_allow([^build_os$])
+m4trace:configure.ac:30: -1- m4_pattern_allow([^host$])
+m4trace:configure.ac:30: -1- m4_pattern_allow([^host_cpu$])
+m4trace:configure.ac:30: -1- m4_pattern_allow([^host_vendor$])
+m4trace:configure.ac:30: -1- m4_pattern_allow([^host_os$])
+m4trace:configure.ac:41: -1- m4_pattern_allow([^CC$])
+m4trace:configure.ac:41: -1- m4_pattern_allow([^CFLAGS$])
+m4trace:configure.ac:41: -1- m4_pattern_allow([^LDFLAGS$])
+m4trace:configure.ac:41: -1- m4_pattern_allow([^LIBS$])
+m4trace:configure.ac:41: -1- m4_pattern_allow([^CPPFLAGS$])
+m4trace:configure.ac:41: -1- m4_pattern_allow([^CC$])
+m4trace:configure.ac:41: -1- m4_pattern_allow([^CC$])
+m4trace:configure.ac:41: -1- m4_pattern_allow([^CC$])
+m4trace:configure.ac:41: -1- m4_pattern_allow([^CC$])
+m4trace:configure.ac:41: -1- m4_pattern_allow([^ac_ct_CC$])
+m4trace:configure.ac:41: -1- m4_pattern_allow([^EXEEXT$])
+m4trace:configure.ac:41: -1- m4_pattern_allow([^OBJEXT$])
+m4trace:configure.ac:41: -1- _AM_DEPENDENCIES([CC])
+m4trace:configure.ac:41: -1- AM_SET_DEPDIR
+m4trace:configure.ac:41: -1- m4_pattern_allow([^DEPDIR$])
+m4trace:configure.ac:41: -1- AM_OUTPUT_DEPENDENCY_COMMANDS
+m4trace:configure.ac:41: -1- AM_MAKE_INCLUDE
+m4trace:configure.ac:41: -1- m4_pattern_allow([^am__include$])
+m4trace:configure.ac:41: -1- m4_pattern_allow([^am__quote$])
+m4trace:configure.ac:41: -1- AM_DEP_TRACK
+m4trace:configure.ac:41: -1- AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno])
+m4trace:configure.ac:41: -1- m4_pattern_allow([^AMDEP_TRUE$])
+m4trace:configure.ac:41: -1- m4_pattern_allow([^AMDEP_FALSE$])
+m4trace:configure.ac:41: -1- _AM_SUBST_NOTMAKE([AMDEP_TRUE])
+m4trace:configure.ac:41: -1- _AM_SUBST_NOTMAKE([AMDEP_FALSE])
+m4trace:configure.ac:41: -1- m4_pattern_allow([^AMDEPBACKSLASH$])
+m4trace:configure.ac:41: -1- _AM_SUBST_NOTMAKE([AMDEPBACKSLASH])
+m4trace:configure.ac:41: -1- m4_pattern_allow([^CCDEPMODE$])
+m4trace:configure.ac:41: -1- AM_CONDITIONAL([am__fastdepCC], [
test "x$enable_dependency_tracking" != xno \
&& test "$am_cv_CC_dependencies_compiler_type" = gcc3])
-m4trace:configure.ac:40: -1- m4_pattern_allow([^am__fastdepCC_TRUE$])
-m4trace:configure.ac:40: -1- m4_pattern_allow([^am__fastdepCC_FALSE$])
-m4trace:configure.ac:40: -1- _AM_SUBST_NOTMAKE([am__fastdepCC_TRUE])
-m4trace:configure.ac:40: -1- _AM_SUBST_NOTMAKE([am__fastdepCC_FALSE])
-m4trace:configure.ac:43: -1- m4_pattern_allow([^SET_MAKE$])
-m4trace:configure.ac:44: -1- m4_pattern_allow([^LN_S$])
-m4trace:configure.ac:45: -1- m4_pattern_allow([^AWK$])
-m4trace:configure.ac:46: -1- m4_pattern_allow([^RANLIB$])
-m4trace:configure.ac:47: -1- AC_PROG_LIBTOOL
-m4trace:configure.ac:47: -1- _m4_warn([obsolete], [The macro `AC_PROG_LIBTOOL' is obsolete.
-You should run autoupdate.], [m4/libtool.m4:102: AC_PROG_LIBTOOL is expanded from...
-configure.ac:47: the top level])
-m4trace:configure.ac:47: -1- LT_INIT
-m4trace:configure.ac:47: -1- m4_pattern_forbid([^_?LT_[A-Z_]+$])
-m4trace:configure.ac:47: -1- m4_pattern_allow([^(_LT_EOF|LT_DLGLOBAL|LT_DLLAZY_OR_NOW|LT_MULTI_MODULE)$])
-m4trace:configure.ac:47: -1- LTOPTIONS_VERSION
-m4trace:configure.ac:47: -1- LTSUGAR_VERSION
-m4trace:configure.ac:47: -1- LTVERSION_VERSION
-m4trace:configure.ac:47: -1- LTOBSOLETE_VERSION
-m4trace:configure.ac:47: -1- _LT_PROG_LTMAIN
-m4trace:configure.ac:47: -1- m4_pattern_allow([^LIBTOOL$])
-m4trace:configure.ac:47: -1- LT_PATH_LD
-m4trace:configure.ac:47: -1- m4_pattern_allow([^SED$])
-m4trace:configure.ac:47: -1- AC_PROG_EGREP
-m4trace:configure.ac:47: -1- m4_pattern_allow([^GREP$])
-m4trace:configure.ac:47: -1- m4_pattern_allow([^EGREP$])
-m4trace:configure.ac:47: -1- m4_pattern_allow([^FGREP$])
-m4trace:configure.ac:47: -1- m4_pattern_allow([^GREP$])
-m4trace:configure.ac:47: -1- m4_pattern_allow([^LD$])
-m4trace:configure.ac:47: -1- LT_PATH_NM
-m4trace:configure.ac:47: -1- m4_pattern_allow([^DUMPBIN$])
-m4trace:configure.ac:47: -1- m4_pattern_allow([^ac_ct_DUMPBIN$])
-m4trace:configure.ac:47: -1- m4_pattern_allow([^DUMPBIN$])
-m4trace:configure.ac:47: -1- m4_pattern_allow([^NM$])
-m4trace:configure.ac:47: -1- LT_CMD_MAX_LEN
-m4trace:configure.ac:47: -1- m4_pattern_allow([^OBJDUMP$])
-m4trace:configure.ac:47: -1- m4_pattern_allow([^OBJDUMP$])
-m4trace:configure.ac:47: -1- m4_pattern_allow([^AR$])
-m4trace:configure.ac:47: -1- m4_pattern_allow([^STRIP$])
+m4trace:configure.ac:41: -1- m4_pattern_allow([^am__fastdepCC_TRUE$])
+m4trace:configure.ac:41: -1- m4_pattern_allow([^am__fastdepCC_FALSE$])
+m4trace:configure.ac:41: -1- _AM_SUBST_NOTMAKE([am__fastdepCC_TRUE])
+m4trace:configure.ac:41: -1- _AM_SUBST_NOTMAKE([am__fastdepCC_FALSE])
+m4trace:configure.ac:44: -1- m4_pattern_allow([^SET_MAKE$])
+m4trace:configure.ac:45: -1- m4_pattern_allow([^LN_S$])
+m4trace:configure.ac:46: -1- m4_pattern_allow([^AWK$])
m4trace:configure.ac:47: -1- m4_pattern_allow([^RANLIB$])
-m4trace:configure.ac:47: -1- m4_pattern_allow([LT_OBJDIR])
-m4trace:configure.ac:47: -1- m4_pattern_allow([^LT_OBJDIR$])
-m4trace:configure.ac:47: -1- m4_pattern_allow([^lt_ECHO$])
-m4trace:configure.ac:47: -1- _LT_CC_BASENAME([$compiler])
-m4trace:configure.ac:47: -1- _LT_PATH_TOOL_PREFIX([${ac_tool_prefix}file], [/usr/bin$PATH_SEPARATOR$PATH])
-m4trace:configure.ac:47: -1- _LT_PATH_TOOL_PREFIX([file], [/usr/bin$PATH_SEPARATOR$PATH])
-m4trace:configure.ac:47: -1- LT_SUPPORTED_TAG([CC])
-m4trace:configure.ac:47: -1- _LT_COMPILER_BOILERPLATE
-m4trace:configure.ac:47: -1- _LT_LINKER_BOILERPLATE
-m4trace:configure.ac:47: -1- _LT_COMPILER_OPTION([if $compiler supports -fno-rtti -fno-exceptions], [lt_cv_prog_compiler_rtti_exceptions], [-fno-rtti -fno-exceptions], [], [_LT_TAGVAR(lt_prog_compiler_no_builtin_flag, )="$_LT_TAGVAR(lt_prog_compiler_no_builtin_flag, ) -fno-rtti -fno-exceptions"])
-m4trace:configure.ac:47: -1- _LT_COMPILER_OPTION([if $compiler PIC flag $_LT_TAGVAR(lt_prog_compiler_pic, ) works], [_LT_TAGVAR(lt_cv_prog_compiler_pic_works, )], [$_LT_TAGVAR(lt_prog_compiler_pic, )@&t@m4_if([],[],[ -DPIC],[m4_if([],[CXX],[ -DPIC],[])])], [], [case $_LT_TAGVAR(lt_prog_compiler_pic, ) in
+m4trace:configure.ac:48: -1- AC_PROG_LIBTOOL
+m4trace:configure.ac:48: -1- _m4_warn([obsolete], [The macro `AC_PROG_LIBTOOL' is obsolete.
+You should run autoupdate.], [m4/libtool.m4:102: AC_PROG_LIBTOOL is expanded from...
+configure.ac:48: the top level])
+m4trace:configure.ac:48: -1- LT_INIT
+m4trace:configure.ac:48: -1- m4_pattern_forbid([^_?LT_[A-Z_]+$])
+m4trace:configure.ac:48: -1- m4_pattern_allow([^(_LT_EOF|LT_DLGLOBAL|LT_DLLAZY_OR_NOW|LT_MULTI_MODULE)$])
+m4trace:configure.ac:48: -1- LTOPTIONS_VERSION
+m4trace:configure.ac:48: -1- LTSUGAR_VERSION
+m4trace:configure.ac:48: -1- LTVERSION_VERSION
+m4trace:configure.ac:48: -1- LTOBSOLETE_VERSION
+m4trace:configure.ac:48: -1- _LT_PROG_LTMAIN
+m4trace:configure.ac:48: -1- m4_pattern_allow([^LIBTOOL$])
+m4trace:configure.ac:48: -1- LT_PATH_LD
+m4trace:configure.ac:48: -1- m4_pattern_allow([^SED$])
+m4trace:configure.ac:48: -1- AC_PROG_EGREP
+m4trace:configure.ac:48: -1- m4_pattern_allow([^GREP$])
+m4trace:configure.ac:48: -1- m4_pattern_allow([^EGREP$])
+m4trace:configure.ac:48: -1- m4_pattern_allow([^FGREP$])
+m4trace:configure.ac:48: -1- m4_pattern_allow([^GREP$])
+m4trace:configure.ac:48: -1- m4_pattern_allow([^LD$])
+m4trace:configure.ac:48: -1- LT_PATH_NM
+m4trace:configure.ac:48: -1- m4_pattern_allow([^DUMPBIN$])
+m4trace:configure.ac:48: -1- m4_pattern_allow([^ac_ct_DUMPBIN$])
+m4trace:configure.ac:48: -1- m4_pattern_allow([^DUMPBIN$])
+m4trace:configure.ac:48: -1- m4_pattern_allow([^NM$])
+m4trace:configure.ac:48: -1- LT_CMD_MAX_LEN
+m4trace:configure.ac:48: -1- m4_pattern_allow([^OBJDUMP$])
+m4trace:configure.ac:48: -1- m4_pattern_allow([^OBJDUMP$])
+m4trace:configure.ac:48: -1- m4_pattern_allow([^AR$])
+m4trace:configure.ac:48: -1- m4_pattern_allow([^STRIP$])
+m4trace:configure.ac:48: -1- m4_pattern_allow([^RANLIB$])
+m4trace:configure.ac:48: -1- m4_pattern_allow([LT_OBJDIR])
+m4trace:configure.ac:48: -1- m4_pattern_allow([^LT_OBJDIR$])
+m4trace:configure.ac:48: -1- m4_pattern_allow([^lt_ECHO$])
+m4trace:configure.ac:48: -1- _LT_CC_BASENAME([$compiler])
+m4trace:configure.ac:48: -1- _LT_PATH_TOOL_PREFIX([${ac_tool_prefix}file], [/usr/bin$PATH_SEPARATOR$PATH])
+m4trace:configure.ac:48: -1- _LT_PATH_TOOL_PREFIX([file], [/usr/bin$PATH_SEPARATOR$PATH])
+m4trace:configure.ac:48: -1- LT_SUPPORTED_TAG([CC])
+m4trace:configure.ac:48: -1- _LT_COMPILER_BOILERPLATE
+m4trace:configure.ac:48: -1- _LT_LINKER_BOILERPLATE
+m4trace:configure.ac:48: -1- _LT_COMPILER_OPTION([if $compiler supports -fno-rtti -fno-exceptions], [lt_cv_prog_compiler_rtti_exceptions], [-fno-rtti -fno-exceptions], [], [_LT_TAGVAR(lt_prog_compiler_no_builtin_flag, )="$_LT_TAGVAR(lt_prog_compiler_no_builtin_flag, ) -fno-rtti -fno-exceptions"])
+m4trace:configure.ac:48: -1- _LT_COMPILER_OPTION([if $compiler PIC flag $_LT_TAGVAR(lt_prog_compiler_pic, ) works], [_LT_TAGVAR(lt_cv_prog_compiler_pic_works, )], [$_LT_TAGVAR(lt_prog_compiler_pic, )@&t@m4_if([],[],[ -DPIC],[m4_if([],[CXX],[ -DPIC],[])])], [], [case $_LT_TAGVAR(lt_prog_compiler_pic, ) in
"" | " "*) ;;
*) _LT_TAGVAR(lt_prog_compiler_pic, )=" $_LT_TAGVAR(lt_prog_compiler_pic, )" ;;
esac], [_LT_TAGVAR(lt_prog_compiler_pic, )=
_LT_TAGVAR(lt_prog_compiler_can_build_shared, )=no])
-m4trace:configure.ac:47: -1- _LT_LINKER_OPTION([if $compiler static flag $lt_tmp_static_flag works], [lt_cv_prog_compiler_static_works], [$lt_tmp_static_flag], [], [_LT_TAGVAR(lt_prog_compiler_static, )=])
-m4trace:configure.ac:47: -1- m4_pattern_allow([^DSYMUTIL$])
-m4trace:configure.ac:47: -1- m4_pattern_allow([^NMEDIT$])
-m4trace:configure.ac:47: -1- m4_pattern_allow([^LIPO$])
-m4trace:configure.ac:47: -1- m4_pattern_allow([^OTOOL$])
-m4trace:configure.ac:47: -1- m4_pattern_allow([^OTOOL64$])
-m4trace:configure.ac:47: -1- LT_SYS_DLOPEN_SELF
-m4trace:configure.ac:47: -1- m4_pattern_allow([^CPP$])
-m4trace:configure.ac:47: -1- m4_pattern_allow([^CPPFLAGS$])
-m4trace:configure.ac:47: -1- m4_pattern_allow([^CPP$])
-m4trace:configure.ac:47: -1- m4_pattern_allow([^STDC_HEADERS$])
-m4trace:configure.ac:47: -1- m4_pattern_allow([^HAVE_DLFCN_H$])
-m4trace:configure.ac:49: -1- m4_pattern_allow([^AR$])
-m4trace:configure.ac:50: -1- m4_pattern_allow([^RM$])
-m4trace:configure.ac:51: -1- m4_pattern_allow([^CP$])
-m4trace:configure.ac:52: -1- m4_pattern_allow([^LN$])
-m4trace:configure.ac:53: -1- m4_pattern_allow([^SED$])
-m4trace:configure.ac:54: -1- m4_pattern_allow([^MAKE$])
-m4trace:configure.ac:58: -1- AM_GNU_GETTEXT_VERSION([0.16.1])
-m4trace:configure.ac:59: -1- AM_GNU_GETTEXT([external])
-m4trace:configure.ac:59: -1- AM_GNU_GETTEXT_NEED([])
-m4trace:configure.ac:59: -1- AM_PO_SUBDIRS
-m4trace:configure.ac:59: -1- AM_NLS
-m4trace:configure.ac:59: -1- m4_pattern_allow([^USE_NLS$])
-m4trace:configure.ac:59: -1- AM_PATH_PROG_WITH_TEST([MSGFMT], [msgfmt], [$ac_dir/$ac_word --statistics /dev/null >&5 2>&1 &&
+m4trace:configure.ac:48: -1- _LT_LINKER_OPTION([if $compiler static flag $lt_tmp_static_flag works], [lt_cv_prog_compiler_static_works], [$lt_tmp_static_flag], [], [_LT_TAGVAR(lt_prog_compiler_static, )=])
+m4trace:configure.ac:48: -1- m4_pattern_allow([^DSYMUTIL$])
+m4trace:configure.ac:48: -1- m4_pattern_allow([^NMEDIT$])
+m4trace:configure.ac:48: -1- m4_pattern_allow([^LIPO$])
+m4trace:configure.ac:48: -1- m4_pattern_allow([^OTOOL$])
+m4trace:configure.ac:48: -1- m4_pattern_allow([^OTOOL64$])
+m4trace:configure.ac:48: -1- LT_SYS_DLOPEN_SELF
+m4trace:configure.ac:48: -1- m4_pattern_allow([^CPP$])
+m4trace:configure.ac:48: -1- m4_pattern_allow([^CPPFLAGS$])
+m4trace:configure.ac:48: -1- m4_pattern_allow([^CPP$])
+m4trace:configure.ac:48: -1- m4_pattern_allow([^STDC_HEADERS$])
+m4trace:configure.ac:48: -1- m4_pattern_allow([^HAVE_DLFCN_H$])
+m4trace:configure.ac:50: -1- m4_pattern_allow([^AR$])
+m4trace:configure.ac:51: -1- m4_pattern_allow([^RM$])
+m4trace:configure.ac:52: -1- m4_pattern_allow([^CP$])
+m4trace:configure.ac:53: -1- m4_pattern_allow([^LN$])
+m4trace:configure.ac:54: -1- m4_pattern_allow([^SED$])
+m4trace:configure.ac:55: -1- m4_pattern_allow([^MAKE$])
+m4trace:configure.ac:59: -1- AM_GNU_GETTEXT_VERSION([0.16.1])
+m4trace:configure.ac:60: -1- AM_GNU_GETTEXT([external])
+m4trace:configure.ac:60: -1- AM_GNU_GETTEXT_NEED([])
+m4trace:configure.ac:60: -1- AM_PO_SUBDIRS
+m4trace:configure.ac:60: -1- AM_NLS
+m4trace:configure.ac:60: -1- m4_pattern_allow([^USE_NLS$])
+m4trace:configure.ac:60: -1- AM_PATH_PROG_WITH_TEST([MSGFMT], [msgfmt], [$ac_dir/$ac_word --statistics /dev/null >&5 2>&1 &&
(if $ac_dir/$ac_word --statistics /dev/null 2>&1 >/dev/null | grep usage >/dev/null; then exit 1; else exit 0; fi)], [:])
-m4trace:configure.ac:59: -1- m4_pattern_allow([^MSGFMT$])
-m4trace:configure.ac:59: -1- m4_pattern_allow([^GMSGFMT$])
-m4trace:configure.ac:59: -1- m4_pattern_allow([^MSGFMT_015$])
-m4trace:configure.ac:59: -1- m4_pattern_allow([^GMSGFMT_015$])
-m4trace:configure.ac:59: -1- AM_PATH_PROG_WITH_TEST([XGETTEXT], [xgettext], [$ac_dir/$ac_word --omit-header --copyright-holder= --msgid-bugs-address= /dev/null >&5 2>&1 &&
+m4trace:configure.ac:60: -1- m4_pattern_allow([^MSGFMT$])
+m4trace:configure.ac:60: -1- m4_pattern_allow([^GMSGFMT$])
+m4trace:configure.ac:60: -1- m4_pattern_allow([^MSGFMT_015$])
+m4trace:configure.ac:60: -1- m4_pattern_allow([^GMSGFMT_015$])
+m4trace:configure.ac:60: -1- AM_PATH_PROG_WITH_TEST([XGETTEXT], [xgettext], [$ac_dir/$ac_word --omit-header --copyright-holder= --msgid-bugs-address= /dev/null >&5 2>&1 &&
(if $ac_dir/$ac_word --omit-header --copyright-holder= --msgid-bugs-address= /dev/null 2>&1 >/dev/null | grep usage >/dev/null; then exit 1; else exit 0; fi)], [:])
-m4trace:configure.ac:59: -1- m4_pattern_allow([^XGETTEXT$])
-m4trace:configure.ac:59: -1- m4_pattern_allow([^XGETTEXT_015$])
-m4trace:configure.ac:59: -1- AM_PATH_PROG_WITH_TEST([MSGMERGE], [msgmerge], [$ac_dir/$ac_word --update -q /dev/null /dev/null >&5 2>&1], [:])
-m4trace:configure.ac:59: -1- m4_pattern_allow([^MSGMERGE$])
-m4trace:configure.ac:59: -1- m4_pattern_allow([^localedir$])
-m4trace:configure.ac:59: -1- AC_LIB_PREPARE_PREFIX
-m4trace:configure.ac:59: -1- AC_LIB_RPATH
-m4trace:configure.ac:59: -1- AC_LIB_PROG_LD
-m4trace:configure.ac:59: -1- AC_LIB_PROG_LD_GNU
-m4trace:configure.ac:59: -1- AM_ICONV_LINKFLAGS_BODY
-m4trace:configure.ac:59: -1- AC_LIB_LINKFLAGS_BODY([iconv])
-m4trace:configure.ac:59: -1- AC_LIB_PREPARE_MULTILIB
-m4trace:configure.ac:59: -1- AC_LIB_WITH_FINAL_PREFIX([
+m4trace:configure.ac:60: -1- m4_pattern_allow([^XGETTEXT$])
+m4trace:configure.ac:60: -1- m4_pattern_allow([^XGETTEXT_015$])
+m4trace:configure.ac:60: -1- AM_PATH_PROG_WITH_TEST([MSGMERGE], [msgmerge], [$ac_dir/$ac_word --update -q /dev/null /dev/null >&5 2>&1], [:])
+m4trace:configure.ac:60: -1- m4_pattern_allow([^MSGMERGE$])
+m4trace:configure.ac:60: -1- m4_pattern_allow([^localedir$])
+m4trace:configure.ac:60: -1- AC_LIB_PREPARE_PREFIX
+m4trace:configure.ac:60: -1- AC_LIB_RPATH
+m4trace:configure.ac:60: -1- AC_LIB_PROG_LD
+m4trace:configure.ac:60: -1- AC_LIB_PROG_LD_GNU
+m4trace:configure.ac:60: -1- AM_ICONV_LINKFLAGS_BODY
+m4trace:configure.ac:60: -1- AC_LIB_LINKFLAGS_BODY([iconv])
+m4trace:configure.ac:60: -1- AC_LIB_PREPARE_MULTILIB
+m4trace:configure.ac:60: -1- AC_LIB_WITH_FINAL_PREFIX([
eval additional_includedir=\"$includedir\"
eval additional_libdir=\"$libdir\"
])
-m4trace:configure.ac:59: -1- AC_LIB_ARG_WITH([libiconv-prefix], [ --with-libiconv-prefix[=DIR] search for libiconv in DIR/include and DIR/lib
+m4trace:configure.ac:60: -1- AC_LIB_ARG_WITH([libiconv-prefix], [ --with-libiconv-prefix[=DIR] search for libiconv in DIR/include and DIR/lib
--without-libiconv-prefix don't search for libiconv in includedir and libdir], [
if test "X$withval" = "Xno"; then
use_additional=no
@@ -5188,70 +5188,70 @@ m4trace:configure.ac:59: -1- AC_LIB_ARG_WITH([libiconv-prefix], [ --with-libico
fi
fi
])
-m4trace:configure.ac:59: -1- AC_LIB_WITH_FINAL_PREFIX([
+m4trace:configure.ac:60: -1- AC_LIB_WITH_FINAL_PREFIX([
eval additional_includedir=\"$includedir\"
eval additional_libdir=\"$libdir\"
])
-m4trace:configure.ac:59: -1- AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"])
-m4trace:configure.ac:59: -1- AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"])
-m4trace:configure.ac:59: -1- AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"])
-m4trace:configure.ac:59: -1- AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"])
-m4trace:configure.ac:59: -1- AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"])
-m4trace:configure.ac:59: -1- gt_INTL_MACOSX
-m4trace:configure.ac:59: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
+m4trace:configure.ac:60: -1- AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"])
+m4trace:configure.ac:60: -1- AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"])
+m4trace:configure.ac:60: -1- AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"])
+m4trace:configure.ac:60: -1- AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"])
+m4trace:configure.ac:60: -1- AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"])
+m4trace:configure.ac:60: -1- gt_INTL_MACOSX
+m4trace:configure.ac:60: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:2688: AC_TRY_LINK is expanded from...
../../lib/m4sugar/m4sh.m4:606: AS_IF is expanded from...
../../lib/autoconf/general.m4:2032: AC_CACHE_VAL is expanded from...
../../lib/autoconf/general.m4:2053: AC_CACHE_CHECK is expanded from...
m4/gettext.m4:367: gt_INTL_MACOSX is expanded from...
m4/gettext.m4:57: AM_GNU_GETTEXT is expanded from...
-configure.ac:59: the top level])
-m4trace:configure.ac:59: -1- m4_pattern_allow([^HAVE_CFPREFERENCESCOPYAPPVALUE$])
-m4trace:configure.ac:59: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
+configure.ac:60: the top level])
+m4trace:configure.ac:60: -1- m4_pattern_allow([^HAVE_CFPREFERENCESCOPYAPPVALUE$])
+m4trace:configure.ac:60: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:2688: AC_TRY_LINK is expanded from...
../../lib/m4sugar/m4sh.m4:606: AS_IF is expanded from...
../../lib/autoconf/general.m4:2032: AC_CACHE_VAL is expanded from...
../../lib/autoconf/general.m4:2053: AC_CACHE_CHECK is expanded from...
m4/gettext.m4:367: gt_INTL_MACOSX is expanded from...
m4/gettext.m4:57: AM_GNU_GETTEXT is expanded from...
-configure.ac:59: the top level])
-m4trace:configure.ac:59: -1- m4_pattern_allow([^HAVE_CFLOCALECOPYCURRENT$])
-m4trace:configure.ac:59: -1- m4_pattern_allow([^INTL_MACOSX_LIBS$])
-m4trace:configure.ac:59: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
+configure.ac:60: the top level])
+m4trace:configure.ac:60: -1- m4_pattern_allow([^HAVE_CFLOCALECOPYCURRENT$])
+m4trace:configure.ac:60: -1- m4_pattern_allow([^INTL_MACOSX_LIBS$])
+m4trace:configure.ac:60: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:2688: AC_TRY_LINK is expanded from...
../../lib/m4sugar/m4sh.m4:606: AS_IF is expanded from...
../../lib/autoconf/general.m4:2032: AC_CACHE_VAL is expanded from...
../../lib/autoconf/general.m4:2053: AC_CACHE_CHECK is expanded from...
m4/gettext.m4:57: AM_GNU_GETTEXT is expanded from...
-configure.ac:59: the top level])
-m4trace:configure.ac:59: -1- AM_ICONV_LINK
-m4trace:configure.ac:59: -1- AC_LIB_APPENDTOVAR([CPPFLAGS], [$INCICONV])
-m4trace:configure.ac:59: -1- AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"])
-m4trace:configure.ac:59: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
+configure.ac:60: the top level])
+m4trace:configure.ac:60: -1- AM_ICONV_LINK
+m4trace:configure.ac:60: -1- AC_LIB_APPENDTOVAR([CPPFLAGS], [$INCICONV])
+m4trace:configure.ac:60: -1- AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"])
+m4trace:configure.ac:60: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:2688: AC_TRY_LINK is expanded from...
../../lib/m4sugar/m4sh.m4:606: AS_IF is expanded from...
../../lib/autoconf/general.m4:2032: AC_CACHE_VAL is expanded from...
../../lib/autoconf/general.m4:2053: AC_CACHE_CHECK is expanded from...
m4/iconv.m4:20: AM_ICONV_LINK is expanded from...
m4/gettext.m4:57: AM_GNU_GETTEXT is expanded from...
-configure.ac:59: the top level])
-m4trace:configure.ac:59: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
+configure.ac:60: the top level])
+m4trace:configure.ac:60: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:2688: AC_TRY_LINK is expanded from...
../../lib/m4sugar/m4sh.m4:606: AS_IF is expanded from...
../../lib/autoconf/general.m4:2032: AC_CACHE_VAL is expanded from...
../../lib/autoconf/general.m4:2053: AC_CACHE_CHECK is expanded from...
m4/iconv.m4:20: AM_ICONV_LINK is expanded from...
m4/gettext.m4:57: AM_GNU_GETTEXT is expanded from...
-configure.ac:59: the top level])
-m4trace:configure.ac:59: -1- m4_pattern_allow([^HAVE_ICONV$])
-m4trace:configure.ac:59: -1- m4_pattern_allow([^LIBICONV$])
-m4trace:configure.ac:59: -1- m4_pattern_allow([^LTLIBICONV$])
-m4trace:configure.ac:59: -1- AC_LIB_LINKFLAGS_BODY([intl])
-m4trace:configure.ac:59: -1- AC_LIB_WITH_FINAL_PREFIX([
+configure.ac:60: the top level])
+m4trace:configure.ac:60: -1- m4_pattern_allow([^HAVE_ICONV$])
+m4trace:configure.ac:60: -1- m4_pattern_allow([^LIBICONV$])
+m4trace:configure.ac:60: -1- m4_pattern_allow([^LTLIBICONV$])
+m4trace:configure.ac:60: -1- AC_LIB_LINKFLAGS_BODY([intl])
+m4trace:configure.ac:60: -1- AC_LIB_WITH_FINAL_PREFIX([
eval additional_includedir=\"$includedir\"
eval additional_libdir=\"$libdir\"
])
-m4trace:configure.ac:59: -1- AC_LIB_ARG_WITH([libintl-prefix], [ --with-libintl-prefix[=DIR] search for libintl in DIR/include and DIR/lib
+m4trace:configure.ac:60: -1- AC_LIB_ARG_WITH([libintl-prefix], [ --with-libintl-prefix[=DIR] search for libintl in DIR/include and DIR/lib
--without-libintl-prefix don't search for libintl in includedir and libdir], [
if test "X$withval" = "Xno"; then
use_additional=no
@@ -5267,146 +5267,146 @@ m4trace:configure.ac:59: -1- AC_LIB_ARG_WITH([libintl-prefix], [ --with-libintl
fi
fi
])
-m4trace:configure.ac:59: -1- AC_LIB_WITH_FINAL_PREFIX([
+m4trace:configure.ac:60: -1- AC_LIB_WITH_FINAL_PREFIX([
eval additional_includedir=\"$includedir\"
eval additional_libdir=\"$libdir\"
])
-m4trace:configure.ac:59: -1- AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"])
-m4trace:configure.ac:59: -1- AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"])
-m4trace:configure.ac:59: -1- AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"])
-m4trace:configure.ac:59: -1- AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"])
-m4trace:configure.ac:59: -1- AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"])
-m4trace:configure.ac:59: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
+m4trace:configure.ac:60: -1- AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"])
+m4trace:configure.ac:60: -1- AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"])
+m4trace:configure.ac:60: -1- AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"])
+m4trace:configure.ac:60: -1- AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"])
+m4trace:configure.ac:60: -1- AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"])
+m4trace:configure.ac:60: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:2688: AC_TRY_LINK is expanded from...
../../lib/m4sugar/m4sh.m4:606: AS_IF is expanded from...
../../lib/autoconf/general.m4:2032: AC_CACHE_VAL is expanded from...
../../lib/autoconf/general.m4:2053: AC_CACHE_CHECK is expanded from...
m4/gettext.m4:57: AM_GNU_GETTEXT is expanded from...
-configure.ac:59: the top level])
-m4trace:configure.ac:59: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
+configure.ac:60: the top level])
+m4trace:configure.ac:60: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:2688: AC_TRY_LINK is expanded from...
../../lib/m4sugar/m4sh.m4:606: AS_IF is expanded from...
../../lib/autoconf/general.m4:2032: AC_CACHE_VAL is expanded from...
../../lib/autoconf/general.m4:2053: AC_CACHE_CHECK is expanded from...
m4/gettext.m4:57: AM_GNU_GETTEXT is expanded from...
-configure.ac:59: the top level])
-m4trace:configure.ac:59: -1- m4_pattern_allow([^ENABLE_NLS$])
-m4trace:configure.ac:59: -1- AC_LIB_APPENDTOVAR([CPPFLAGS], [$INCINTL])
-m4trace:configure.ac:59: -1- AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"])
-m4trace:configure.ac:59: -1- m4_pattern_allow([^HAVE_GETTEXT$])
-m4trace:configure.ac:59: -1- m4_pattern_allow([^HAVE_DCGETTEXT$])
-m4trace:configure.ac:59: -1- m4_pattern_allow([^INTLLIBS$])
-m4trace:configure.ac:59: -1- m4_pattern_allow([^LIBINTL$])
-m4trace:configure.ac:59: -1- m4_pattern_allow([^LTLIBINTL$])
-m4trace:configure.ac:59: -1- m4_pattern_allow([^POSUB$])
-m4trace:configure.ac:64: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
+configure.ac:60: the top level])
+m4trace:configure.ac:60: -1- m4_pattern_allow([^ENABLE_NLS$])
+m4trace:configure.ac:60: -1- AC_LIB_APPENDTOVAR([CPPFLAGS], [$INCINTL])
+m4trace:configure.ac:60: -1- AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"])
+m4trace:configure.ac:60: -1- m4_pattern_allow([^HAVE_GETTEXT$])
+m4trace:configure.ac:60: -1- m4_pattern_allow([^HAVE_DCGETTEXT$])
+m4trace:configure.ac:60: -1- m4_pattern_allow([^INTLLIBS$])
+m4trace:configure.ac:60: -1- m4_pattern_allow([^LIBINTL$])
+m4trace:configure.ac:60: -1- m4_pattern_allow([^LTLIBINTL$])
+m4trace:configure.ac:60: -1- m4_pattern_allow([^POSUB$])
+m4trace:configure.ac:65: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:64: the top level])
-m4trace:configure.ac:72: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
+configure.ac:65: the top level])
+m4trace:configure.ac:73: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:72: the top level])
-m4trace:configure.ac:82: -1- m4_pattern_allow([^ENABLE_DMALLOC$])
-m4trace:configure.ac:87: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
+configure.ac:73: the top level])
+m4trace:configure.ac:83: -1- m4_pattern_allow([^ENABLE_DMALLOC$])
+m4trace:configure.ac:88: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:87: the top level])
-m4trace:configure.ac:99: -1- m4_pattern_allow([^localedir$])
-m4trace:configure.ac:106: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
+configure.ac:88: the top level])
+m4trace:configure.ac:100: -1- m4_pattern_allow([^localedir$])
+m4trace:configure.ac:107: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:106: the top level])
-m4trace:configure.ac:131: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
+configure.ac:107: the top level])
+m4trace:configure.ac:132: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:131: the top level])
-m4trace:configure.ac:147: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
+configure.ac:132: the top level])
+m4trace:configure.ac:148: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:147: the top level])
-m4trace:configure.ac:163: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
+configure.ac:148: the top level])
+m4trace:configure.ac:164: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:163: the top level])
-m4trace:configure.ac:172: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
+configure.ac:164: the top level])
+m4trace:configure.ac:173: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:172: the top level])
-m4trace:configure.ac:187: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
+configure.ac:173: the top level])
+m4trace:configure.ac:188: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:187: the top level])
-m4trace:configure.ac:190: -1- m4_pattern_allow([^DEBUG$])
-m4trace:configure.ac:191: -1- m4_pattern_allow([^DEBUGJOURNAL$])
-m4trace:configure.ac:200: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
+configure.ac:188: the top level])
+m4trace:configure.ac:191: -1- m4_pattern_allow([^DEBUG$])
+m4trace:configure.ac:192: -1- m4_pattern_allow([^DEBUGJOURNAL$])
+m4trace:configure.ac:201: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:200: the top level])
-m4trace:configure.ac:211: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
+configure.ac:201: the top level])
+m4trace:configure.ac:212: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:211: the top level])
-m4trace:configure.ac:213: -1- m4_pattern_allow([^MOUSE$])
-m4trace:configure.ac:221: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
+configure.ac:212: the top level])
+m4trace:configure.ac:214: -1- m4_pattern_allow([^MOUSE$])
+m4trace:configure.ac:222: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:221: the top level])
-m4trace:configure.ac:223: -1- m4_pattern_allow([^USE_QUOTAS$])
-m4trace:configure.ac:230: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
+configure.ac:222: the top level])
+m4trace:configure.ac:224: -1- m4_pattern_allow([^USE_QUOTAS$])
+m4trace:configure.ac:231: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:230: the top level])
-m4trace:configure.ac:234: -1- m4_pattern_allow([^NEVER_ALLOW_CHANGING_FROM$])
-m4trace:configure.ac:240: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
+configure.ac:231: the top level])
+m4trace:configure.ac:235: -1- m4_pattern_allow([^NEVER_ALLOW_CHANGING_FROM$])
+m4trace:configure.ac:241: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:240: the top level])
-m4trace:configure.ac:242: -1- m4_pattern_allow([^BACKGROUND_POST$])
-m4trace:configure.ac:250: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
+configure.ac:241: the top level])
+m4trace:configure.ac:243: -1- m4_pattern_allow([^BACKGROUND_POST$])
+m4trace:configure.ac:251: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:250: the top level])
-m4trace:configure.ac:252: -1- m4_pattern_allow([^KEYBOARD_LOCK$])
-m4trace:configure.ac:260: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
+configure.ac:251: the top level])
+m4trace:configure.ac:253: -1- m4_pattern_allow([^KEYBOARD_LOCK$])
+m4trace:configure.ac:261: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:260: the top level])
-m4trace:configure.ac:262: -1- m4_pattern_allow([^ENCODE_FROMS$])
-m4trace:configure.ac:271: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
+configure.ac:261: the top level])
+m4trace:configure.ac:263: -1- m4_pattern_allow([^ENCODE_FROMS$])
+m4trace:configure.ac:272: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:271: the top level])
-m4trace:configure.ac:270: -1- m4_pattern_allow([^SENDMAIL$])
-m4trace:configure.ac:270: -1- m4_pattern_allow([^SENDMAIL$])
-m4trace:configure.ac:288: -1- m4_pattern_allow([^SENDMAIL$])
-m4trace:configure.ac:294: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
+configure.ac:272: the top level])
+m4trace:configure.ac:271: -1- m4_pattern_allow([^SENDMAIL$])
+m4trace:configure.ac:271: -1- m4_pattern_allow([^SENDMAIL$])
+m4trace:configure.ac:289: -1- m4_pattern_allow([^SENDMAIL$])
+m4trace:configure.ac:295: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:294: the top level])
-m4trace:configure.ac:300: -1- m4_pattern_allow([^SENDMAILFLAGS$])
-m4trace:configure.ac:305: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
+configure.ac:295: the top level])
+m4trace:configure.ac:301: -1- m4_pattern_allow([^SENDMAILFLAGS$])
+m4trace:configure.ac:306: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:305: the top level])
-m4trace:configure.ac:304: -1- m4_pattern_allow([^NPA_PROG$])
-m4trace:configure.ac:304: -1- m4_pattern_allow([^NPA_PROG$])
-m4trace:configure.ac:324: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
+configure.ac:306: the top level])
+m4trace:configure.ac:305: -1- m4_pattern_allow([^NPA_PROG$])
+m4trace:configure.ac:305: -1- m4_pattern_allow([^NPA_PROG$])
+m4trace:configure.ac:325: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:324: the top level])
-m4trace:configure.ac:331: -1- m4_pattern_allow([^SENDNEWS$])
-m4trace:configure.ac:336: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
+configure.ac:325: the top level])
+m4trace:configure.ac:332: -1- m4_pattern_allow([^SENDNEWS$])
+m4trace:configure.ac:337: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:336: the top level])
-m4trace:configure.ac:335: -1- m4_pattern_allow([^PWPROG$])
-m4trace:configure.ac:335: -1- m4_pattern_allow([^PWPROG$])
-m4trace:configure.ac:335: -1- m4_pattern_allow([^PWPROG$])
-m4trace:configure.ac:353: -1- m4_pattern_allow([^PASSWD_PROG$])
-m4trace:configure.ac:358: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
+configure.ac:337: the top level])
+m4trace:configure.ac:336: -1- m4_pattern_allow([^PWPROG$])
+m4trace:configure.ac:336: -1- m4_pattern_allow([^PWPROG$])
+m4trace:configure.ac:336: -1- m4_pattern_allow([^PWPROG$])
+m4trace:configure.ac:354: -1- m4_pattern_allow([^PASSWD_PROG$])
+m4trace:configure.ac:359: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:358: the top level])
-m4trace:configure.ac:357: -1- m4_pattern_allow([^SPELLPROG$])
-m4trace:configure.ac:357: -1- m4_pattern_allow([^SPELLPROG$])
-m4trace:configure.ac:357: -1- m4_pattern_allow([^SPELLPROG$])
-m4trace:configure.ac:378: -1- m4_pattern_allow([^alpine_simple_spellcheck$])
-m4trace:configure.ac:398: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
+configure.ac:359: the top level])
+m4trace:configure.ac:358: -1- m4_pattern_allow([^SPELLPROG$])
+m4trace:configure.ac:358: -1- m4_pattern_allow([^SPELLPROG$])
+m4trace:configure.ac:358: -1- m4_pattern_allow([^SPELLPROG$])
+m4trace:configure.ac:379: -1- m4_pattern_allow([^alpine_simple_spellcheck$])
+m4trace:configure.ac:399: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:398: the top level])
-m4trace:configure.ac:397: -1- m4_pattern_allow([^ISPELLPROG$])
-m4trace:configure.ac:397: -1- m4_pattern_allow([^ISPELLPROG$])
-m4trace:configure.ac:415: -1- m4_pattern_allow([^alpine_interactive_spellcheck$])
-m4trace:configure.ac:428: -1- m4_pattern_allow([^DF_VAR_SPELLER$])
-m4trace:configure.ac:434: -1- m4_pattern_allow([^SPELLER$])
-m4trace:configure.ac:445: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
+configure.ac:399: the top level])
+m4trace:configure.ac:398: -1- m4_pattern_allow([^ISPELLPROG$])
+m4trace:configure.ac:398: -1- m4_pattern_allow([^ISPELLPROG$])
+m4trace:configure.ac:416: -1- m4_pattern_allow([^alpine_interactive_spellcheck$])
+m4trace:configure.ac:429: -1- m4_pattern_allow([^DF_VAR_SPELLER$])
+m4trace:configure.ac:435: -1- m4_pattern_allow([^SPELLER$])
+m4trace:configure.ac:446: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:445: the top level])
-m4trace:configure.ac:457: -1- m4_pattern_allow([^SYSTEM_PINERC$])
-m4trace:configure.ac:468: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
+configure.ac:446: the top level])
+m4trace:configure.ac:458: -1- m4_pattern_allow([^SYSTEM_PINERC$])
+m4trace:configure.ac:469: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:468: the top level])
-m4trace:configure.ac:480: -1- m4_pattern_allow([^SYSTEM_PINERC_FIXED$])
-m4trace:configure.ac:484: -1- AC_DEFUN([PINEVAR], [
+configure.ac:469: the top level])
+m4trace:configure.ac:481: -1- m4_pattern_allow([^SYSTEM_PINERC_FIXED$])
+m4trace:configure.ac:485: -1- AC_DEFUN([PINEVAR], [
dpv=$3
AC_ARG_WITH($1,
AC_HELP_STRING(--with-$1=VALUE, [$4 ($3)]),
@@ -5417,7 +5417,7 @@ m4trace:configure.ac:484: -1- AC_DEFUN([PINEVAR], [
])
AC_DEFINE_UNQUOTED($2, "$dpv", [Default configuration value])
])
-m4trace:configure.ac:499: -1- AC_DEFUN([PINEVAR_UNQUOTED], [
+m4trace:configure.ac:500: -1- AC_DEFUN([PINEVAR_UNQUOTED], [
dpv=$3
AC_ARG_WITH($1,
AC_HELP_STRING(--with-$1=VALUE, [$4 ($3)]),
@@ -5428,372 +5428,372 @@ m4trace:configure.ac:499: -1- AC_DEFUN([PINEVAR_UNQUOTED], [
])
AC_DEFINE_UNQUOTED($2, $dpv, [Default configuration value])
])
-m4trace:configure.ac:512: -1- PINEVAR([mailcheck-interval], [DF_MAILCHECK], [150], [Specify default mail-check-interval])
-m4trace:configure.ac:512: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
-You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:484: PINEVAR is expanded from...
-configure.ac:512: the top level])
-m4trace:configure.ac:512: -1- m4_pattern_allow([^DF_MAILCHECK$])
-m4trace:configure.ac:513: -1- PINEVAR_UNQUOTED([checkpoint-interval], [CHECK_POINT_TIME], [420], [Specify default checkpoint-interval])
+m4trace:configure.ac:513: -1- PINEVAR([mailcheck-interval], [DF_MAILCHECK], [150], [Specify default mail-check-interval])
m4trace:configure.ac:513: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:499: PINEVAR_UNQUOTED is expanded from...
+configure.ac:485: PINEVAR is expanded from...
configure.ac:513: the top level])
-m4trace:configure.ac:513: -1- m4_pattern_allow([^CHECK_POINT_TIME$])
-m4trace:configure.ac:514: -1- PINEVAR_UNQUOTED([checkpoint-frequency], [CHECK_POINT_FREQ], [12], [State change count before checkpoint])
+m4trace:configure.ac:513: -1- m4_pattern_allow([^DF_MAILCHECK$])
+m4trace:configure.ac:514: -1- PINEVAR_UNQUOTED([checkpoint-interval], [CHECK_POINT_TIME], [420], [Specify default checkpoint-interval])
m4trace:configure.ac:514: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:499: PINEVAR_UNQUOTED is expanded from...
+configure.ac:500: PINEVAR_UNQUOTED is expanded from...
configure.ac:514: the top level])
-m4trace:configure.ac:514: -1- m4_pattern_allow([^CHECK_POINT_FREQ$])
-m4trace:configure.ac:515: -1- PINEVAR_UNQUOTED([display-rows], [DEFAULT_LINES_ON_TERMINAL], [24], [Initial rows on display])
+m4trace:configure.ac:514: -1- m4_pattern_allow([^CHECK_POINT_TIME$])
+m4trace:configure.ac:515: -1- PINEVAR_UNQUOTED([checkpoint-frequency], [CHECK_POINT_FREQ], [12], [State change count before checkpoint])
m4trace:configure.ac:515: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:499: PINEVAR_UNQUOTED is expanded from...
+configure.ac:500: PINEVAR_UNQUOTED is expanded from...
configure.ac:515: the top level])
-m4trace:configure.ac:515: -1- m4_pattern_allow([^DEFAULT_LINES_ON_TERMINAL$])
-m4trace:configure.ac:516: -1- PINEVAR_UNQUOTED([display-columns], [DEFAULT_COLUMNS_ON_TERMINAL], [80], [Initial columns on display])
+m4trace:configure.ac:515: -1- m4_pattern_allow([^CHECK_POINT_FREQ$])
+m4trace:configure.ac:516: -1- PINEVAR_UNQUOTED([display-rows], [DEFAULT_LINES_ON_TERMINAL], [24], [Initial rows on display])
m4trace:configure.ac:516: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:499: PINEVAR_UNQUOTED is expanded from...
+configure.ac:500: PINEVAR_UNQUOTED is expanded from...
configure.ac:516: the top level])
-m4trace:configure.ac:516: -1- m4_pattern_allow([^DEFAULT_COLUMNS_ON_TERMINAL$])
-m4trace:configure.ac:517: -1- PINEVAR_UNQUOTED([max-display-rows], [MAX_SCREEN_ROWS], [200], [Maximum display rows])
+m4trace:configure.ac:516: -1- m4_pattern_allow([^DEFAULT_LINES_ON_TERMINAL$])
+m4trace:configure.ac:517: -1- PINEVAR_UNQUOTED([display-columns], [DEFAULT_COLUMNS_ON_TERMINAL], [80], [Initial columns on display])
m4trace:configure.ac:517: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:499: PINEVAR_UNQUOTED is expanded from...
+configure.ac:500: PINEVAR_UNQUOTED is expanded from...
configure.ac:517: the top level])
-m4trace:configure.ac:517: -1- m4_pattern_allow([^MAX_SCREEN_ROWS$])
-m4trace:configure.ac:518: -1- PINEVAR_UNQUOTED([max-display-columns], [MAX_SCREEN_COLS], [500], [Maximum display columns])
+m4trace:configure.ac:517: -1- m4_pattern_allow([^DEFAULT_COLUMNS_ON_TERMINAL$])
+m4trace:configure.ac:518: -1- PINEVAR_UNQUOTED([max-display-rows], [MAX_SCREEN_ROWS], [200], [Maximum display rows])
m4trace:configure.ac:518: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:499: PINEVAR_UNQUOTED is expanded from...
+configure.ac:500: PINEVAR_UNQUOTED is expanded from...
configure.ac:518: the top level])
-m4trace:configure.ac:518: -1- m4_pattern_allow([^MAX_SCREEN_COLS$])
-m4trace:configure.ac:519: -1- PINEVAR([fill-column], [DF_FILLCOL], [74], [Default fill column])
+m4trace:configure.ac:518: -1- m4_pattern_allow([^MAX_SCREEN_ROWS$])
+m4trace:configure.ac:519: -1- PINEVAR_UNQUOTED([max-display-columns], [MAX_SCREEN_COLS], [500], [Maximum display columns])
m4trace:configure.ac:519: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:484: PINEVAR is expanded from...
+configure.ac:500: PINEVAR_UNQUOTED is expanded from...
configure.ac:519: the top level])
-m4trace:configure.ac:519: -1- m4_pattern_allow([^DF_FILLCOL$])
-m4trace:configure.ac:520: -1- PINEVAR_UNQUOTED([max_fill-column], [MAX_FILLCOL], [80], [Maximum fill column])
+m4trace:configure.ac:519: -1- m4_pattern_allow([^MAX_SCREEN_COLS$])
+m4trace:configure.ac:520: -1- PINEVAR([fill-column], [DF_FILLCOL], [74], [Default fill column])
m4trace:configure.ac:520: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:499: PINEVAR_UNQUOTED is expanded from...
+configure.ac:485: PINEVAR is expanded from...
configure.ac:520: the top level])
-m4trace:configure.ac:520: -1- m4_pattern_allow([^MAX_FILLCOL$])
-m4trace:configure.ac:521: -1- PINEVAR_UNQUOTED([debug-level], [DEFAULT_DEBUG], [2], [Specify default debug verbosity level])
+m4trace:configure.ac:520: -1- m4_pattern_allow([^DF_FILLCOL$])
+m4trace:configure.ac:521: -1- PINEVAR_UNQUOTED([max_fill-column], [MAX_FILLCOL], [80], [Maximum fill column])
m4trace:configure.ac:521: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:499: PINEVAR_UNQUOTED is expanded from...
+configure.ac:500: PINEVAR_UNQUOTED is expanded from...
configure.ac:521: the top level])
-m4trace:configure.ac:521: -1- m4_pattern_allow([^DEFAULT_DEBUG$])
-m4trace:configure.ac:522: -1- PINEVAR_UNQUOTED([debug-files], [NUMDEBUGFILES], [4], [Specify number of debug files])
+m4trace:configure.ac:521: -1- m4_pattern_allow([^MAX_FILLCOL$])
+m4trace:configure.ac:522: -1- PINEVAR_UNQUOTED([debug-level], [DEFAULT_DEBUG], [2], [Specify default debug verbosity level])
m4trace:configure.ac:522: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:499: PINEVAR_UNQUOTED is expanded from...
+configure.ac:500: PINEVAR_UNQUOTED is expanded from...
configure.ac:522: the top level])
-m4trace:configure.ac:522: -1- m4_pattern_allow([^NUMDEBUGFILES$])
-m4trace:configure.ac:523: -1- PINEVAR([debug-file], [DEBUGFILE], [.pine-debug], [Specify debug file name])
+m4trace:configure.ac:522: -1- m4_pattern_allow([^DEFAULT_DEBUG$])
+m4trace:configure.ac:523: -1- PINEVAR_UNQUOTED([debug-files], [NUMDEBUGFILES], [4], [Specify number of debug files])
m4trace:configure.ac:523: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:484: PINEVAR is expanded from...
+configure.ac:500: PINEVAR_UNQUOTED is expanded from...
configure.ac:523: the top level])
-m4trace:configure.ac:523: -1- m4_pattern_allow([^DEBUGFILE$])
-m4trace:configure.ac:524: -1- PINEVAR([forwarded-keyword], [FORWARDED_FLAG], ["\$Forwarded"], [IMAP (c-client) keyword to store forwarded status])
+m4trace:configure.ac:523: -1- m4_pattern_allow([^NUMDEBUGFILES$])
+m4trace:configure.ac:524: -1- PINEVAR([debug-file], [DEBUGFILE], [.pine-debug], [Specify debug file name])
m4trace:configure.ac:524: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:484: PINEVAR is expanded from...
+configure.ac:485: PINEVAR is expanded from...
configure.ac:524: the top level])
-m4trace:configure.ac:524: -1- m4_pattern_allow([^FORWARDED_FLAG$])
-m4trace:configure.ac:525: -1- PINEVAR([display-overlap], [DF_OVERLAP], [2], [Lines preserved while paging])
+m4trace:configure.ac:524: -1- m4_pattern_allow([^DEBUGFILE$])
+m4trace:configure.ac:525: -1- PINEVAR([forwarded-keyword], [FORWARDED_FLAG], ["\$Forwarded"], [IMAP (c-client) keyword to store forwarded status])
m4trace:configure.ac:525: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:484: PINEVAR is expanded from...
+configure.ac:485: PINEVAR is expanded from...
configure.ac:525: the top level])
-m4trace:configure.ac:525: -1- m4_pattern_allow([^DF_OVERLAP$])
-m4trace:configure.ac:526: -1- PINEVAR([display-margin], [DF_MARGIN], [0], [Lines visible while scrolling])
+m4trace:configure.ac:525: -1- m4_pattern_allow([^FORWARDED_FLAG$])
+m4trace:configure.ac:526: -1- PINEVAR([display-overlap], [DF_OVERLAP], [2], [Lines preserved while paging])
m4trace:configure.ac:526: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:484: PINEVAR is expanded from...
+configure.ac:485: PINEVAR is expanded from...
configure.ac:526: the top level])
-m4trace:configure.ac:526: -1- m4_pattern_allow([^DF_MARGIN$])
-m4trace:configure.ac:527: -1- PINEVAR([default-fcc], [DF_DEFAULT_FCC], [sent-mail], [Default sent mail folder])
+m4trace:configure.ac:526: -1- m4_pattern_allow([^DF_OVERLAP$])
+m4trace:configure.ac:527: -1- PINEVAR([display-margin], [DF_MARGIN], [0], [Lines visible while scrolling])
m4trace:configure.ac:527: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:484: PINEVAR is expanded from...
+configure.ac:485: PINEVAR is expanded from...
configure.ac:527: the top level])
-m4trace:configure.ac:527: -1- m4_pattern_allow([^DF_DEFAULT_FCC$])
-m4trace:configure.ac:528: -1- PINEVAR([default-save-folder], [DEFAULT_SAVE], [saved-messages], [Default save folder])
+m4trace:configure.ac:527: -1- m4_pattern_allow([^DF_MARGIN$])
+m4trace:configure.ac:528: -1- PINEVAR([default-fcc], [DF_DEFAULT_FCC], [sent-mail], [Default sent mail folder])
m4trace:configure.ac:528: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:484: PINEVAR is expanded from...
+configure.ac:485: PINEVAR is expanded from...
configure.ac:528: the top level])
-m4trace:configure.ac:528: -1- m4_pattern_allow([^DEFAULT_SAVE$])
-m4trace:configure.ac:529: -1- PINEVAR([default-legacy-postponed-folder], [POSTPONED_MAIL], [postponed-mail], [Pre Pine 3.90 postponed folder])
+m4trace:configure.ac:528: -1- m4_pattern_allow([^DF_DEFAULT_FCC$])
+m4trace:configure.ac:529: -1- PINEVAR([default-save-folder], [DEFAULT_SAVE], [saved-messages], [Default save folder])
m4trace:configure.ac:529: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:484: PINEVAR is expanded from...
+configure.ac:485: PINEVAR is expanded from...
configure.ac:529: the top level])
-m4trace:configure.ac:529: -1- m4_pattern_allow([^POSTPONED_MAIL$])
-m4trace:configure.ac:530: -1- PINEVAR([default-postponed-folder], [POSTPONED_MSGS], [postponed-msgs], [Default postponed folder])
+m4trace:configure.ac:529: -1- m4_pattern_allow([^DEFAULT_SAVE$])
+m4trace:configure.ac:530: -1- PINEVAR([default-legacy-postponed-folder], [POSTPONED_MAIL], [postponed-mail], [Pre Pine 3.90 postponed folder])
m4trace:configure.ac:530: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:484: PINEVAR is expanded from...
+configure.ac:485: PINEVAR is expanded from...
configure.ac:530: the top level])
-m4trace:configure.ac:530: -1- m4_pattern_allow([^POSTPONED_MSGS$])
-m4trace:configure.ac:531: -1- PINEVAR([default-trash-folder], [TRASH_FOLDER], [Trash], [Default Trash folder for Web Alpine])
+m4trace:configure.ac:530: -1- m4_pattern_allow([^POSTPONED_MAIL$])
+m4trace:configure.ac:531: -1- PINEVAR([default-postponed-folder], [POSTPONED_MSGS], [postponed-msgs], [Default postponed folder])
m4trace:configure.ac:531: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:484: PINEVAR is expanded from...
+configure.ac:485: PINEVAR is expanded from...
configure.ac:531: the top level])
-m4trace:configure.ac:531: -1- m4_pattern_allow([^TRASH_FOLDER$])
-m4trace:configure.ac:532: -1- PINEVAR([default-interrupted-mail], [INTERRUPTED_MAIL], [.pine-interrupted-mail], [Default folder for interrupted mail])
+m4trace:configure.ac:531: -1- m4_pattern_allow([^POSTPONED_MSGS$])
+m4trace:configure.ac:532: -1- PINEVAR([default-trash-folder], [TRASH_FOLDER], [Trash], [Default Trash folder for Web Alpine])
m4trace:configure.ac:532: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:484: PINEVAR is expanded from...
+configure.ac:485: PINEVAR is expanded from...
configure.ac:532: the top level])
-m4trace:configure.ac:532: -1- m4_pattern_allow([^INTERRUPTED_MAIL$])
-m4trace:configure.ac:533: -1- PINEVAR([default-dead-letter-folder], [DEADLETTER], [dead.letter], [Default dead letter folder])
+m4trace:configure.ac:532: -1- m4_pattern_allow([^TRASH_FOLDER$])
+m4trace:configure.ac:533: -1- PINEVAR([default-interrupted-mail], [INTERRUPTED_MAIL], [.pine-interrupted-mail], [Default folder for interrupted mail])
m4trace:configure.ac:533: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:484: PINEVAR is expanded from...
+configure.ac:485: PINEVAR is expanded from...
configure.ac:533: the top level])
-m4trace:configure.ac:533: -1- m4_pattern_allow([^DEADLETTER$])
-m4trace:configure.ac:534: -1- PINEVAR([default-mail-directory], [DF_MAIL_DIRECTORY], [mail], [Default mail directory])
+m4trace:configure.ac:533: -1- m4_pattern_allow([^INTERRUPTED_MAIL$])
+m4trace:configure.ac:534: -1- PINEVAR([default-dead-letter-folder], [DEADLETTER], [dead.letter], [Default dead letter folder])
m4trace:configure.ac:534: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:484: PINEVAR is expanded from...
+configure.ac:485: PINEVAR is expanded from...
configure.ac:534: the top level])
-m4trace:configure.ac:534: -1- m4_pattern_allow([^DF_MAIL_DIRECTORY$])
-m4trace:configure.ac:535: -1- PINEVAR([default-inbox-name], [INBOX_NAME], [INBOX], [Default inbox name])
+m4trace:configure.ac:534: -1- m4_pattern_allow([^DEADLETTER$])
+m4trace:configure.ac:535: -1- PINEVAR([default-mail-directory], [DF_MAIL_DIRECTORY], [mail], [Default mail directory])
m4trace:configure.ac:535: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:484: PINEVAR is expanded from...
+configure.ac:485: PINEVAR is expanded from...
configure.ac:535: the top level])
-m4trace:configure.ac:535: -1- m4_pattern_allow([^INBOX_NAME$])
-m4trace:configure.ac:536: -1- PINEVAR([default-signature-file], [DF_SIGNATURE_FILE], [.signature], [Default signature file])
+m4trace:configure.ac:535: -1- m4_pattern_allow([^DF_MAIL_DIRECTORY$])
+m4trace:configure.ac:536: -1- PINEVAR([default-inbox-name], [INBOX_NAME], [INBOX], [Default inbox name])
m4trace:configure.ac:536: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:484: PINEVAR is expanded from...
+configure.ac:485: PINEVAR is expanded from...
configure.ac:536: the top level])
-m4trace:configure.ac:536: -1- m4_pattern_allow([^DF_SIGNATURE_FILE$])
-m4trace:configure.ac:537: -1- PINEVAR([default-elm-style-save], [DF_ELM_STYLE_SAVE], [no], [Default to Elm style save])
+m4trace:configure.ac:536: -1- m4_pattern_allow([^INBOX_NAME$])
+m4trace:configure.ac:537: -1- PINEVAR([default-signature-file], [DF_SIGNATURE_FILE], [.signature], [Default signature file])
m4trace:configure.ac:537: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:484: PINEVAR is expanded from...
+configure.ac:485: PINEVAR is expanded from...
configure.ac:537: the top level])
-m4trace:configure.ac:537: -1- m4_pattern_allow([^DF_ELM_STYLE_SAVE$])
-m4trace:configure.ac:538: -1- PINEVAR([default-header-in-reply], [DF_HEADER_IN_REPLY], [no], [Include header in reply])
+m4trace:configure.ac:537: -1- m4_pattern_allow([^DF_SIGNATURE_FILE$])
+m4trace:configure.ac:538: -1- PINEVAR([default-elm-style-save], [DF_ELM_STYLE_SAVE], [no], [Default to Elm style save])
m4trace:configure.ac:538: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:484: PINEVAR is expanded from...
+configure.ac:485: PINEVAR is expanded from...
configure.ac:538: the top level])
-m4trace:configure.ac:538: -1- m4_pattern_allow([^DF_HEADER_IN_REPLY$])
-m4trace:configure.ac:539: -1- PINEVAR([default-old-style-reply], [DF_OLD_STYLE_REPLY], [no], [Default to old style reply])
+m4trace:configure.ac:538: -1- m4_pattern_allow([^DF_ELM_STYLE_SAVE$])
+m4trace:configure.ac:539: -1- PINEVAR([default-header-in-reply], [DF_HEADER_IN_REPLY], [no], [Include header in reply])
m4trace:configure.ac:539: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:484: PINEVAR is expanded from...
+configure.ac:485: PINEVAR is expanded from...
configure.ac:539: the top level])
-m4trace:configure.ac:539: -1- m4_pattern_allow([^DF_OLD_STYLE_REPLY$])
-m4trace:configure.ac:540: -1- PINEVAR([default-use-only-domain-name], [DF_USE_ONLY_DOMAIN_NAME], [no], [Default to using only the domain name])
+m4trace:configure.ac:539: -1- m4_pattern_allow([^DF_HEADER_IN_REPLY$])
+m4trace:configure.ac:540: -1- PINEVAR([default-old-style-reply], [DF_OLD_STYLE_REPLY], [no], [Default to old style reply])
m4trace:configure.ac:540: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:484: PINEVAR is expanded from...
+configure.ac:485: PINEVAR is expanded from...
configure.ac:540: the top level])
-m4trace:configure.ac:540: -1- m4_pattern_allow([^DF_USE_ONLY_DOMAIN_NAME$])
-m4trace:configure.ac:541: -1- PINEVAR([default-save-by-sender], [DF_SAVE_BY_SENDER], [no], [Default to save by sender])
+m4trace:configure.ac:540: -1- m4_pattern_allow([^DF_OLD_STYLE_REPLY$])
+m4trace:configure.ac:541: -1- PINEVAR([default-use-only-domain-name], [DF_USE_ONLY_DOMAIN_NAME], [no], [Default to using only the domain name])
m4trace:configure.ac:541: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:484: PINEVAR is expanded from...
+configure.ac:485: PINEVAR is expanded from...
configure.ac:541: the top level])
-m4trace:configure.ac:541: -1- m4_pattern_allow([^DF_SAVE_BY_SENDER$])
-m4trace:configure.ac:542: -1- PINEVAR([default-sort-key], [DF_SORT_KEY], [arrival], [Default sort key])
+m4trace:configure.ac:541: -1- m4_pattern_allow([^DF_USE_ONLY_DOMAIN_NAME$])
+m4trace:configure.ac:542: -1- PINEVAR([default-save-by-sender], [DF_SAVE_BY_SENDER], [no], [Default to save by sender])
m4trace:configure.ac:542: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:484: PINEVAR is expanded from...
+configure.ac:485: PINEVAR is expanded from...
configure.ac:542: the top level])
-m4trace:configure.ac:542: -1- m4_pattern_allow([^DF_SORT_KEY$])
-m4trace:configure.ac:543: -1- PINEVAR([default-addressbook-sort-rule], [DF_AB_SORT_RULE], [fullname-with-lists-last], [Default addressbook sort rule])
+m4trace:configure.ac:542: -1- m4_pattern_allow([^DF_SAVE_BY_SENDER$])
+m4trace:configure.ac:543: -1- PINEVAR([default-sort-key], [DF_SORT_KEY], [arrival], [Default sort key])
m4trace:configure.ac:543: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:484: PINEVAR is expanded from...
+configure.ac:485: PINEVAR is expanded from...
configure.ac:543: the top level])
-m4trace:configure.ac:543: -1- m4_pattern_allow([^DF_AB_SORT_RULE$])
-m4trace:configure.ac:544: -1- PINEVAR([default-folder-sort-rule], [DF_FLD_SORT_RULE], [alphabetical], [Default folder sort rule])
+m4trace:configure.ac:543: -1- m4_pattern_allow([^DF_SORT_KEY$])
+m4trace:configure.ac:544: -1- PINEVAR([default-addressbook-sort-rule], [DF_AB_SORT_RULE], [fullname-with-lists-last], [Default addressbook sort rule])
m4trace:configure.ac:544: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:484: PINEVAR is expanded from...
+configure.ac:485: PINEVAR is expanded from...
configure.ac:544: the top level])
-m4trace:configure.ac:544: -1- m4_pattern_allow([^DF_FLD_SORT_RULE$])
-m4trace:configure.ac:545: -1- PINEVAR([default-saved-message-name-rule], [DF_SAVED_MSG_NAME_RULE], [default-folder], [Default saved message name rule])
+m4trace:configure.ac:544: -1- m4_pattern_allow([^DF_AB_SORT_RULE$])
+m4trace:configure.ac:545: -1- PINEVAR([default-folder-sort-rule], [DF_FLD_SORT_RULE], [alphabetical], [Default folder sort rule])
m4trace:configure.ac:545: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:484: PINEVAR is expanded from...
+configure.ac:485: PINEVAR is expanded from...
configure.ac:545: the top level])
-m4trace:configure.ac:545: -1- m4_pattern_allow([^DF_SAVED_MSG_NAME_RULE$])
-m4trace:configure.ac:546: -1- PINEVAR([default-fcc-rule], [DF_FCC_RULE], [default-fcc], [Default fcc rule])
+m4trace:configure.ac:545: -1- m4_pattern_allow([^DF_FLD_SORT_RULE$])
+m4trace:configure.ac:546: -1- PINEVAR([default-saved-message-name-rule], [DF_SAVED_MSG_NAME_RULE], [default-folder], [Default saved message name rule])
m4trace:configure.ac:546: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:484: PINEVAR is expanded from...
+configure.ac:485: PINEVAR is expanded from...
configure.ac:546: the top level])
-m4trace:configure.ac:546: -1- m4_pattern_allow([^DF_FCC_RULE$])
-m4trace:configure.ac:547: -1- PINEVAR([default-standard-printer], [DF_STANDARD_PRINTER], [lpr], [Default standard printern])
+m4trace:configure.ac:546: -1- m4_pattern_allow([^DF_SAVED_MSG_NAME_RULE$])
+m4trace:configure.ac:547: -1- PINEVAR([default-fcc-rule], [DF_FCC_RULE], [default-fcc], [Default fcc rule])
m4trace:configure.ac:547: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:484: PINEVAR is expanded from...
+configure.ac:485: PINEVAR is expanded from...
configure.ac:547: the top level])
-m4trace:configure.ac:547: -1- m4_pattern_allow([^DF_STANDARD_PRINTER$])
-m4trace:configure.ac:548: -1- PINEVAR([default-ansi-printer], [ANSI_PRINTER], [attached-to-ansi], [ANSI printer definition])
+m4trace:configure.ac:547: -1- m4_pattern_allow([^DF_FCC_RULE$])
+m4trace:configure.ac:548: -1- PINEVAR([default-standard-printer], [DF_STANDARD_PRINTER], [lpr], [Default standard printern])
m4trace:configure.ac:548: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:484: PINEVAR is expanded from...
+configure.ac:485: PINEVAR is expanded from...
configure.ac:548: the top level])
-m4trace:configure.ac:548: -1- m4_pattern_allow([^ANSI_PRINTER$])
-m4trace:configure.ac:549: -1- PINEVAR([default-addressbook], [DF_ADDRESSBOOK], [.addressbook], [Default addressbook name])
+m4trace:configure.ac:548: -1- m4_pattern_allow([^DF_STANDARD_PRINTER$])
+m4trace:configure.ac:549: -1- PINEVAR([default-ansi-printer], [ANSI_PRINTER], [attached-to-ansi], [ANSI printer definition])
m4trace:configure.ac:549: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:484: PINEVAR is expanded from...
+configure.ac:485: PINEVAR is expanded from...
configure.ac:549: the top level])
-m4trace:configure.ac:549: -1- m4_pattern_allow([^DF_ADDRESSBOOK$])
-m4trace:configure.ac:550: -1- PINEVAR([default-local-fullname], [DF_LOCAL_FULLNAME], ["Local Support"], [Default local support fullname])
+m4trace:configure.ac:549: -1- m4_pattern_allow([^ANSI_PRINTER$])
+m4trace:configure.ac:550: -1- PINEVAR([default-addressbook], [DF_ADDRESSBOOK], [.addressbook], [Default addressbook name])
m4trace:configure.ac:550: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:484: PINEVAR is expanded from...
+configure.ac:485: PINEVAR is expanded from...
configure.ac:550: the top level])
-m4trace:configure.ac:550: -1- m4_pattern_allow([^DF_LOCAL_FULLNAME$])
-m4trace:configure.ac:551: -1- PINEVAR([default-local-address], [DF_LOCAL_ADDRESS], [postmaster], [Default local support address])
+m4trace:configure.ac:550: -1- m4_pattern_allow([^DF_ADDRESSBOOK$])
+m4trace:configure.ac:551: -1- PINEVAR([default-local-fullname], [DF_LOCAL_FULLNAME], ["Local Support"], [Default local support fullname])
m4trace:configure.ac:551: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:484: PINEVAR is expanded from...
+configure.ac:485: PINEVAR is expanded from...
configure.ac:551: the top level])
-m4trace:configure.ac:551: -1- m4_pattern_allow([^DF_LOCAL_ADDRESS$])
-m4trace:configure.ac:552: -1- PINEVAR([default-keyboard-lock-count], [DF_KBLOCK_PASSWD_COUNT], [1], [Default keyboard lock count])
+m4trace:configure.ac:551: -1- m4_pattern_allow([^DF_LOCAL_FULLNAME$])
+m4trace:configure.ac:552: -1- PINEVAR([default-local-address], [DF_LOCAL_ADDRESS], [postmaster], [Default local support address])
m4trace:configure.ac:552: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:484: PINEVAR is expanded from...
+configure.ac:485: PINEVAR is expanded from...
configure.ac:552: the top level])
-m4trace:configure.ac:552: -1- m4_pattern_allow([^DF_KBLOCK_PASSWD_COUNT$])
-m4trace:configure.ac:553: -1- PINEVAR([default-remote-addressbook-history], [DF_REMOTE_ABOOK_HISTORY], [3], [Default address book history count])
+m4trace:configure.ac:552: -1- m4_pattern_allow([^DF_LOCAL_ADDRESS$])
+m4trace:configure.ac:553: -1- PINEVAR([default-keyboard-lock-count], [DF_KBLOCK_PASSWD_COUNT], [1], [Default keyboard lock count])
m4trace:configure.ac:553: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:484: PINEVAR is expanded from...
+configure.ac:485: PINEVAR is expanded from...
configure.ac:553: the top level])
-m4trace:configure.ac:553: -1- m4_pattern_allow([^DF_REMOTE_ABOOK_HISTORY$])
-m4trace:configure.ac:554: -1- PINEVAR([smime-public-cert-directory], [DF_PUBLICCERT_DIR], [.alpine-smime/public], [Default Public Cert Directory])
+m4trace:configure.ac:553: -1- m4_pattern_allow([^DF_KBLOCK_PASSWD_COUNT$])
+m4trace:configure.ac:554: -1- PINEVAR([default-remote-addressbook-history], [DF_REMOTE_ABOOK_HISTORY], [3], [Default address book history count])
m4trace:configure.ac:554: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:484: PINEVAR is expanded from...
+configure.ac:485: PINEVAR is expanded from...
configure.ac:554: the top level])
-m4trace:configure.ac:554: -1- m4_pattern_allow([^DF_PUBLICCERT_DIR$])
-m4trace:configure.ac:555: -1- PINEVAR([smime-private-key-directory], [DF_PRIVATEKEY_DIR], [.alpine-smime/private], [Default Private Key Directory])
+m4trace:configure.ac:554: -1- m4_pattern_allow([^DF_REMOTE_ABOOK_HISTORY$])
+m4trace:configure.ac:555: -1- PINEVAR([smime-public-cert-directory], [DF_PUBLICCERT_DIR], [.alpine-smime/public], [Default Public Cert Directory])
m4trace:configure.ac:555: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:484: PINEVAR is expanded from...
+configure.ac:485: PINEVAR is expanded from...
configure.ac:555: the top level])
-m4trace:configure.ac:555: -1- m4_pattern_allow([^DF_PRIVATEKEY_DIR$])
-m4trace:configure.ac:556: -1- PINEVAR([smime-cacert-directory], [DF_CACERT_DIR], [.alpine-smime/ca], [Default Cert Authority Directory])
+m4trace:configure.ac:555: -1- m4_pattern_allow([^DF_PUBLICCERT_DIR$])
+m4trace:configure.ac:556: -1- PINEVAR([smime-private-key-directory], [DF_PRIVATEKEY_DIR], [.alpine-smime/private], [Default Private Key Directory])
m4trace:configure.ac:556: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:484: PINEVAR is expanded from...
+configure.ac:485: PINEVAR is expanded from...
configure.ac:556: the top level])
-m4trace:configure.ac:556: -1- m4_pattern_allow([^DF_CACERT_DIR$])
-m4trace:configure.ac:557: -1- PINEVAR_UNQUOTED([default-printer], [DF_DEFAULT_PRINTER], [ANSI_PRINTER], [Default printer])
+m4trace:configure.ac:556: -1- m4_pattern_allow([^DF_PRIVATEKEY_DIR$])
+m4trace:configure.ac:557: -1- PINEVAR([smime-cacert-directory], [DF_CACERT_DIR], [.alpine-smime/ca], [Default Cert Authority Directory])
m4trace:configure.ac:557: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:499: PINEVAR_UNQUOTED is expanded from...
+configure.ac:485: PINEVAR is expanded from...
configure.ac:557: the top level])
-m4trace:configure.ac:557: -1- m4_pattern_allow([^DF_DEFAULT_PRINTER$])
-m4trace:configure.ac:561: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
+m4trace:configure.ac:557: -1- m4_pattern_allow([^DF_CACERT_DIR$])
+m4trace:configure.ac:558: -1- PINEVAR_UNQUOTED([default-printer], [DF_DEFAULT_PRINTER], [ANSI_PRINTER], [Default printer])
+m4trace:configure.ac:558: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
+You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
+configure.ac:500: PINEVAR_UNQUOTED is expanded from...
+configure.ac:558: the top level])
+m4trace:configure.ac:558: -1- m4_pattern_allow([^DF_DEFAULT_PRINTER$])
+m4trace:configure.ac:562: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:561: the top level])
-m4trace:configure.ac:576: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
+configure.ac:562: the top level])
+m4trace:configure.ac:577: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:576: the top level])
-m4trace:configure.ac:583: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
+configure.ac:577: the top level])
+m4trace:configure.ac:584: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:583: the top level])
-m4trace:configure.ac:597: -1- m4_pattern_allow([^PASSFILE$])
-m4trace:configure.ac:602: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
+configure.ac:584: the top level])
+m4trace:configure.ac:598: -1- m4_pattern_allow([^PASSFILE$])
+m4trace:configure.ac:603: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:602: the top level])
-m4trace:configure.ac:601: -1- m4_pattern_allow([^DF_SSHPATH$])
-m4trace:configure.ac:617: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
+configure.ac:603: the top level])
+m4trace:configure.ac:602: -1- m4_pattern_allow([^DF_SSHPATH$])
+m4trace:configure.ac:618: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:617: the top level])
-m4trace:configure.ac:616: -1- m4_pattern_allow([^DF_SSHCMD$])
-m4trace:configure.ac:633: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
+configure.ac:618: the top level])
+m4trace:configure.ac:617: -1- m4_pattern_allow([^DF_SSHCMD$])
+m4trace:configure.ac:634: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:633: the top level])
-m4trace:configure.ac:696: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
+configure.ac:634: the top level])
+m4trace:configure.ac:697: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:696: the top level])
-m4trace:configure.ac:704: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
+configure.ac:697: the top level])
+m4trace:configure.ac:705: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:704: the top level])
-m4trace:configure.ac:712: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
+configure.ac:705: the top level])
+m4trace:configure.ac:713: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:712: the top level])
-m4trace:configure.ac:720: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
+configure.ac:713: the top level])
+m4trace:configure.ac:721: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:720: the top level])
-m4trace:configure.ac:742: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
+configure.ac:721: the top level])
+m4trace:configure.ac:743: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:742: the top level])
-m4trace:configure.ac:751: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
+configure.ac:743: the top level])
+m4trace:configure.ac:752: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:751: the top level])
-m4trace:configure.ac:760: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
+configure.ac:752: the top level])
+m4trace:configure.ac:761: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:760: the top level])
-m4trace:configure.ac:768: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
+configure.ac:761: the top level])
+m4trace:configure.ac:769: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:768: the top level])
-m4trace:configure.ac:778: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
+configure.ac:769: the top level])
+m4trace:configure.ac:779: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:778: the top level])
-m4trace:configure.ac:789: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
+configure.ac:779: the top level])
+m4trace:configure.ac:790: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:789: the top level])
-m4trace:configure.ac:798: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
+configure.ac:790: the top level])
+m4trace:configure.ac:799: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:798: the top level])
-m4trace:configure.ac:806: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
+configure.ac:799: the top level])
+m4trace:configure.ac:807: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:806: the top level])
-m4trace:configure.ac:816: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
+configure.ac:807: the top level])
+m4trace:configure.ac:817: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:816: the top level])
-m4trace:configure.ac:821: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
+configure.ac:817: the top level])
+m4trace:configure.ac:822: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:821: the top level])
-m4trace:configure.ac:829: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
+configure.ac:822: the top level])
+m4trace:configure.ac:830: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:829: the top level])
-m4trace:configure.ac:836: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
+configure.ac:830: the top level])
+m4trace:configure.ac:837: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:836: the top level])
-m4trace:configure.ac:846: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
+configure.ac:837: the top level])
+m4trace:configure.ac:847: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:846: the top level])
-m4trace:configure.ac:850: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
+configure.ac:847: the top level])
+m4trace:configure.ac:851: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:850: the top level])
-m4trace:configure.ac:854: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
+configure.ac:851: the top level])
+m4trace:configure.ac:855: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:854: the top level])
-m4trace:configure.ac:862: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
+configure.ac:855: the top level])
+m4trace:configure.ac:863: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:862: the top level])
-m4trace:configure.ac:872: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
+configure.ac:863: the top level])
+m4trace:configure.ac:873: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-configure.ac:872: the top level])
-m4trace:configure.ac:893: -1- _m4_warn([obsolete], [The macro `AC_ERROR' is obsolete.
+configure.ac:873: the top level])
+m4trace:configure.ac:894: -1- _m4_warn([obsolete], [The macro `AC_ERROR' is obsolete.
You should run autoupdate.], [../../lib/autoconf/oldnames.m4:34: AC_ERROR is expanded from...
../../lib/m4sugar/m4sh.m4:606: AS_IF is expanded from...
../../lib/autoconf/libs.m4:100: AC_CHECK_LIB is expanded from...
-configure.ac:893: the top level])
-m4trace:configure.ac:900: -1- _m4_warn([obsolete], [The macro `AC_ERROR' is obsolete.
+configure.ac:894: the top level])
+m4trace:configure.ac:901: -1- _m4_warn([obsolete], [The macro `AC_ERROR' is obsolete.
You should run autoupdate.], [../../lib/autoconf/oldnames.m4:34: AC_ERROR is expanded from...
../../lib/m4sugar/m4sh.m4:606: AS_IF is expanded from...
../../lib/autoconf/libs.m4:100: AC_CHECK_LIB is expanded from...
@@ -5805,29 +5805,29 @@ You should run autoupdate.], [../../lib/autoconf/oldnames.m4:34: AC_ERROR is exp
../../lib/autoconf/libs.m4:100: AC_CHECK_LIB is expanded from...
../../lib/m4sugar/m4sh.m4:606: AS_IF is expanded from...
../../lib/autoconf/libs.m4:100: AC_CHECK_LIB is expanded from...
-configure.ac:900: the top level])
-m4trace:configure.ac:938: -1- m4_pattern_allow([^HAS_TERMINFO$])
-m4trace:configure.ac:941: -1- m4_pattern_allow([^HAS_TERMCAP$])
-m4trace:configure.ac:965: -1- m4_pattern_allow([^ENABLE_LDAP$])
-m4trace:configure.ac:970: -1- m4_pattern_allow([^LDAP_DEPRECATED$])
-m4trace:configure.ac:1054: -1- _m4_warn([cross], [cannot check for file existence when cross compiling], [../../lib/autoconf/general.m4:2778: AC_CHECK_FILE is expanded from...
+configure.ac:901: the top level])
+m4trace:configure.ac:939: -1- m4_pattern_allow([^HAS_TERMINFO$])
+m4trace:configure.ac:942: -1- m4_pattern_allow([^HAS_TERMCAP$])
+m4trace:configure.ac:966: -1- m4_pattern_allow([^ENABLE_LDAP$])
+m4trace:configure.ac:971: -1- m4_pattern_allow([^LDAP_DEPRECATED$])
+m4trace:configure.ac:1055: -1- _m4_warn([cross], [cannot check for file existence when cross compiling], [../../lib/autoconf/general.m4:2778: AC_CHECK_FILE is expanded from...
../../lib/m4sugar/m4sh.m4:606: AS_IF is expanded from...
../../lib/autoconf/headers.m4:129: _AC_CHECK_HEADER_MONGREL is expanded from...
../../lib/autoconf/headers.m4:67: AC_CHECK_HEADER is expanded from...
-configure.ac:1054: the top level])
-m4trace:configure.ac:1072: -1- _m4_warn([obsolete], [The macro `AC_ERROR' is obsolete.
+configure.ac:1055: the top level])
+m4trace:configure.ac:1073: -1- _m4_warn([obsolete], [The macro `AC_ERROR' is obsolete.
You should run autoupdate.], [../../lib/autoconf/oldnames.m4:34: AC_ERROR is expanded from...
../../lib/m4sugar/m4sh.m4:606: AS_IF is expanded from...
../../lib/autoconf/libs.m4:48: AC_SEARCH_LIBS is expanded from...
-configure.ac:1072: the top level])
-m4trace:configure.ac:1082: -1- _m4_warn([obsolete], [The macro `AC_ERROR' is obsolete.
+configure.ac:1073: the top level])
+m4trace:configure.ac:1083: -1- _m4_warn([obsolete], [The macro `AC_ERROR' is obsolete.
You should run autoupdate.], [../../lib/autoconf/oldnames.m4:34: AC_ERROR is expanded from...
../../lib/m4sugar/m4sh.m4:606: AS_IF is expanded from...
../../lib/autoconf/headers.m4:129: _AC_CHECK_HEADER_MONGREL is expanded from...
../../lib/autoconf/headers.m4:67: AC_CHECK_HEADER is expanded from...
-configure.ac:1082: the top level])
-m4trace:configure.ac:1091: -1- m4_pattern_allow([^HAVE_REGEX_H$])
-m4trace:configure.ac:1100: -1- ACX_PTHREAD([
+configure.ac:1083: the top level])
+m4trace:configure.ac:1092: -1- m4_pattern_allow([^HAVE_REGEX_H$])
+m4trace:configure.ac:1101: -1- ACX_PTHREAD([
AC_MSG_RESULT([yes])
case "$target" in
*openbsd*)
@@ -5842,48 +5842,48 @@ m4trace:configure.ac:1100: -1- ACX_PTHREAD([
], [
AC_MSG_RESULT([no])
])
-m4trace:configure.ac:1100: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete.
+m4trace:configure.ac:1101: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete.
You should run autoupdate.], [../../lib/autoconf/lang.m4:126: AC_LANG_SAVE is expanded from...
m4/acx_pthread.m4:49: ACX_PTHREAD is expanded from...
-configure.ac:1100: the top level])
-m4trace:configure.ac:1100: -1- _m4_warn([obsolete], [The macro `AC_LANG_C' is obsolete.
+configure.ac:1101: the top level])
+m4trace:configure.ac:1101: -1- _m4_warn([obsolete], [The macro `AC_LANG_C' is obsolete.
You should run autoupdate.], [../../lib/autoconf/c.m4:73: AC_LANG_C is expanded from...
m4/acx_pthread.m4:49: ACX_PTHREAD is expanded from...
-configure.ac:1100: the top level])
-m4trace:configure.ac:1100: -1- m4_pattern_allow([^acx_pthread_config$])
-m4trace:configure.ac:1100: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
+configure.ac:1101: the top level])
+m4trace:configure.ac:1101: -1- m4_pattern_allow([^acx_pthread_config$])
+m4trace:configure.ac:1101: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:2688: AC_TRY_LINK is expanded from...
m4/acx_pthread.m4:49: ACX_PTHREAD is expanded from...
-configure.ac:1100: the top level])
-m4trace:configure.ac:1100: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
+configure.ac:1101: the top level])
+m4trace:configure.ac:1101: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:2688: AC_TRY_LINK is expanded from...
m4/acx_pthread.m4:49: ACX_PTHREAD is expanded from...
-configure.ac:1100: the top level])
-m4trace:configure.ac:1100: -1- m4_pattern_allow([^PTHREAD_CREATE_JOINABLE$])
-m4trace:configure.ac:1100: -1- m4_pattern_allow([^PTHREAD_CC$])
-m4trace:configure.ac:1100: -1- m4_pattern_allow([^PTHREAD_LIBS$])
-m4trace:configure.ac:1100: -1- m4_pattern_allow([^PTHREAD_CFLAGS$])
-m4trace:configure.ac:1100: -1- m4_pattern_allow([^PTHREAD_CC$])
-m4trace:configure.ac:1100: -2- m4_pattern_allow([^HAVE_PTHREAD$])
-m4trace:configure.ac:1100: -1- m4_pattern_allow([^HAVE_PTHREAD$])
-m4trace:configure.ac:1100: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete.
+configure.ac:1101: the top level])
+m4trace:configure.ac:1101: -1- m4_pattern_allow([^PTHREAD_CREATE_JOINABLE$])
+m4trace:configure.ac:1101: -1- m4_pattern_allow([^PTHREAD_CC$])
+m4trace:configure.ac:1101: -1- m4_pattern_allow([^PTHREAD_LIBS$])
+m4trace:configure.ac:1101: -1- m4_pattern_allow([^PTHREAD_CFLAGS$])
+m4trace:configure.ac:1101: -1- m4_pattern_allow([^PTHREAD_CC$])
+m4trace:configure.ac:1101: -2- m4_pattern_allow([^HAVE_PTHREAD$])
+m4trace:configure.ac:1101: -1- m4_pattern_allow([^HAVE_PTHREAD$])
+m4trace:configure.ac:1101: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete.
You should run autoupdate.], [../../lib/autoconf/lang.m4:135: AC_LANG_RESTORE is expanded from...
m4/acx_pthread.m4:49: ACX_PTHREAD is expanded from...
-configure.ac:1100: the top level])
-m4trace:configure.ac:1118: -1- m4_pattern_allow([^HAVE_NANOSLEEP$])
-m4trace:configure.ac:1128: -1- m4_pattern_allow([^STDC_HEADERS$])
-m4trace:configure.ac:1130: -1- m4_pattern_allow([^STAT_MACROS_BROKEN$])
-m4trace:configure.ac:1131: -1- m4_pattern_allow([^HAVE_SYS_WAIT_H$])
-m4trace:configure.ac:1132: -1- m4_pattern_allow([^TIME_WITH_SYS_TIME$])
-m4trace:configure.ac:1133: -1- m4_pattern_allow([^GWINSZ_IN_SYS_IOCTL$])
-m4trace:configure.ac:1135: -1- _m4_warn([obsolete], [The macro `AC_UNISTD_H' is obsolete.
+configure.ac:1101: the top level])
+m4trace:configure.ac:1119: -1- m4_pattern_allow([^HAVE_NANOSLEEP$])
+m4trace:configure.ac:1129: -1- m4_pattern_allow([^STDC_HEADERS$])
+m4trace:configure.ac:1131: -1- m4_pattern_allow([^STAT_MACROS_BROKEN$])
+m4trace:configure.ac:1132: -1- m4_pattern_allow([^HAVE_SYS_WAIT_H$])
+m4trace:configure.ac:1133: -1- m4_pattern_allow([^TIME_WITH_SYS_TIME$])
+m4trace:configure.ac:1134: -1- m4_pattern_allow([^GWINSZ_IN_SYS_IOCTL$])
+m4trace:configure.ac:1136: -1- _m4_warn([obsolete], [The macro `AC_UNISTD_H' is obsolete.
You should run autoupdate.], [../../lib/autoconf/headers.m4:824: AC_UNISTD_H is expanded from...
-configure.ac:1135: the top level])
-m4trace:configure.ac:1135: -1- m4_pattern_allow([^HAVE_UNISTD_H$])
-m4trace:configure.ac:1164: -2- m4_pattern_allow([^HAS_TERMIOS$])
-m4trace:configure.ac:1163: -2- m4_pattern_allow([^HAS_TERMIO$])
-m4trace:configure.ac:1163: -2- m4_pattern_allow([^HAS_SGTTY$])
-m4trace:configure.ac:1163: -1- _m4_warn([obsolete], [The macro `AC_ERROR' is obsolete.
+configure.ac:1136: the top level])
+m4trace:configure.ac:1136: -1- m4_pattern_allow([^HAVE_UNISTD_H$])
+m4trace:configure.ac:1165: -2- m4_pattern_allow([^HAS_TERMIOS$])
+m4trace:configure.ac:1164: -2- m4_pattern_allow([^HAS_TERMIO$])
+m4trace:configure.ac:1164: -2- m4_pattern_allow([^HAS_SGTTY$])
+m4trace:configure.ac:1164: -1- _m4_warn([obsolete], [The macro `AC_ERROR' is obsolete.
You should run autoupdate.], [../../lib/autoconf/oldnames.m4:34: AC_ERROR is expanded from...
../../lib/m4sugar/m4sh.m4:606: AS_IF is expanded from...
../../lib/autoconf/headers.m4:129: _AC_CHECK_HEADER_MONGREL is expanded from...
@@ -5894,24 +5894,24 @@ You should run autoupdate.], [../../lib/autoconf/oldnames.m4:34: AC_ERROR is exp
../../lib/m4sugar/m4sh.m4:606: AS_IF is expanded from...
../../lib/autoconf/headers.m4:129: _AC_CHECK_HEADER_MONGREL is expanded from...
../../lib/autoconf/headers.m4:67: AC_CHECK_HEADER is expanded from...
-configure.ac:1163: the top level])
-m4trace:configure.ac:1180: -1- _m4_warn([obsolete], [The macro `AC_TYPE_SIGNAL' is obsolete.
+configure.ac:1164: the top level])
+m4trace:configure.ac:1181: -1- _m4_warn([obsolete], [The macro `AC_TYPE_SIGNAL' is obsolete.
You should run autoupdate.], [../../lib/autoconf/types.m4:738: AC_TYPE_SIGNAL is expanded from...
-configure.ac:1180: the top level])
-m4trace:configure.ac:1180: -1- m4_pattern_allow([^RETSIGTYPE$])
-m4trace:configure.ac:1181: -1- m4_pattern_allow([^size_t$])
-m4trace:configure.ac:1182: -1- m4_pattern_allow([^mode_t$])
-m4trace:configure.ac:1183: -1- m4_pattern_allow([^pid_t$])
-m4trace:configure.ac:1184: -1- m4_pattern_allow([^uid_t$])
-m4trace:configure.ac:1184: -1- m4_pattern_allow([^gid_t$])
-m4trace:configure.ac:1185: -1- m4_pattern_allow([^TM_IN_SYS_TIME$])
-m4trace:configure.ac:1187: -1- m4_pattern_allow([^HAVE_UNION_WAIT$])
-m4trace:configure.ac:1189: -1- m4_pattern_allow([^HAVE_STDINT_H$])
-m4trace:configure.ac:1189: -1- m4_pattern_allow([^HAVE_INTTYPES_H$])
-m4trace:configure.ac:1189: -1- m4_pattern_allow([^HAVE_SYS_TYPES_H$])
-m4trace:configure.ac:1189: -1- m4_pattern_allow([^SIZEOF_UNSIGNED_SHORT$])
-m4trace:configure.ac:1189: -1- m4_pattern_allow([^SIZEOF_UNSIGNED_INT$])
-m4trace:configure.ac:1189: -1- _m4_warn([obsolete], [The macro `AC_ERROR' is obsolete.
+configure.ac:1181: the top level])
+m4trace:configure.ac:1181: -1- m4_pattern_allow([^RETSIGTYPE$])
+m4trace:configure.ac:1182: -1- m4_pattern_allow([^size_t$])
+m4trace:configure.ac:1183: -1- m4_pattern_allow([^mode_t$])
+m4trace:configure.ac:1184: -1- m4_pattern_allow([^pid_t$])
+m4trace:configure.ac:1185: -1- m4_pattern_allow([^uid_t$])
+m4trace:configure.ac:1185: -1- m4_pattern_allow([^gid_t$])
+m4trace:configure.ac:1186: -1- m4_pattern_allow([^TM_IN_SYS_TIME$])
+m4trace:configure.ac:1188: -1- m4_pattern_allow([^HAVE_UNION_WAIT$])
+m4trace:configure.ac:1190: -1- m4_pattern_allow([^HAVE_STDINT_H$])
+m4trace:configure.ac:1190: -1- m4_pattern_allow([^HAVE_INTTYPES_H$])
+m4trace:configure.ac:1190: -1- m4_pattern_allow([^HAVE_SYS_TYPES_H$])
+m4trace:configure.ac:1190: -1- m4_pattern_allow([^SIZEOF_UNSIGNED_SHORT$])
+m4trace:configure.ac:1190: -1- m4_pattern_allow([^SIZEOF_UNSIGNED_INT$])
+m4trace:configure.ac:1190: -1- _m4_warn([obsolete], [The macro `AC_ERROR' is obsolete.
You should run autoupdate.], [../../lib/autoconf/oldnames.m4:34: AC_ERROR is expanded from...
../../lib/m4sugar/m4sh.m4:606: AS_IF is expanded from...
../../lib/autoconf/headers.m4:129: _AC_CHECK_HEADER_MONGREL is expanded from...
@@ -5928,14 +5928,14 @@ You should run autoupdate.], [../../lib/autoconf/oldnames.m4:34: AC_ERROR is exp
../../lib/autoconf/headers.m4:67: AC_CHECK_HEADER is expanded from...
../../lib/m4sugar/m4sh.m4:574: AS_FOR is expanded from...
../../lib/autoconf/headers.m4:249: AC_CHECK_HEADERS is expanded from...
-configure.ac:1189: the top level])
-m4trace:configure.ac:1206: -1- m4_pattern_allow([^UINT16$])
-m4trace:configure.ac:1208: -1- m4_pattern_allow([^HAVE_STDINT_H$])
-m4trace:configure.ac:1208: -1- m4_pattern_allow([^HAVE_INTTYPES_H$])
-m4trace:configure.ac:1208: -1- m4_pattern_allow([^HAVE_SYS_TYPES_H$])
-m4trace:configure.ac:1208: -1- m4_pattern_allow([^SIZEOF_UNSIGNED_INT$])
-m4trace:configure.ac:1208: -1- m4_pattern_allow([^SIZEOF_UNSIGNED_LONG$])
-m4trace:configure.ac:1208: -1- _m4_warn([obsolete], [The macro `AC_ERROR' is obsolete.
+configure.ac:1190: the top level])
+m4trace:configure.ac:1207: -1- m4_pattern_allow([^UINT16$])
+m4trace:configure.ac:1209: -1- m4_pattern_allow([^HAVE_STDINT_H$])
+m4trace:configure.ac:1209: -1- m4_pattern_allow([^HAVE_INTTYPES_H$])
+m4trace:configure.ac:1209: -1- m4_pattern_allow([^HAVE_SYS_TYPES_H$])
+m4trace:configure.ac:1209: -1- m4_pattern_allow([^SIZEOF_UNSIGNED_INT$])
+m4trace:configure.ac:1209: -1- m4_pattern_allow([^SIZEOF_UNSIGNED_LONG$])
+m4trace:configure.ac:1209: -1- _m4_warn([obsolete], [The macro `AC_ERROR' is obsolete.
You should run autoupdate.], [../../lib/autoconf/oldnames.m4:34: AC_ERROR is expanded from...
../../lib/m4sugar/m4sh.m4:606: AS_IF is expanded from...
../../lib/autoconf/headers.m4:129: _AC_CHECK_HEADER_MONGREL is expanded from...
@@ -5952,64 +5952,64 @@ You should run autoupdate.], [../../lib/autoconf/oldnames.m4:34: AC_ERROR is exp
../../lib/autoconf/headers.m4:67: AC_CHECK_HEADER is expanded from...
../../lib/m4sugar/m4sh.m4:574: AS_FOR is expanded from...
../../lib/autoconf/headers.m4:249: AC_CHECK_HEADERS is expanded from...
-configure.ac:1208: the top level])
-m4trace:configure.ac:1225: -1- m4_pattern_allow([^UINT32$])
-m4trace:configure.ac:1227: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete.
+configure.ac:1209: the top level])
+m4trace:configure.ac:1226: -1- m4_pattern_allow([^UINT32$])
+m4trace:configure.ac:1228: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:2615: AC_TRY_COMPILE is expanded from...
../../lib/m4sugar/m4sh.m4:606: AS_IF is expanded from...
../../lib/autoconf/general.m4:2032: AC_CACHE_VAL is expanded from...
../../lib/autoconf/general.m4:2053: AC_CACHE_CHECK is expanded from...
-configure.ac:1227: the top level])
-m4trace:configure.ac:1244: -1- m4_pattern_allow([^qsort_t$])
-m4trace:configure.ac:1248: -1- m4_pattern_allow([^SELECT_TYPE_ARG1$])
-m4trace:configure.ac:1248: -1- m4_pattern_allow([^SELECT_TYPE_ARG234$])
-m4trace:configure.ac:1248: -1- m4_pattern_allow([^SELECT_TYPE_ARG5$])
-m4trace:configure.ac:1250: -1- m4_pattern_allow([^HAVE_STRCOLL$])
-m4trace:configure.ac:1254: -1- m4_pattern_allow([^HAVE_VFORK_H$])
-m4trace:configure.ac:1254: -1- m4_pattern_allow([^HAVE_WORKING_VFORK$])
-m4trace:configure.ac:1254: -1- m4_pattern_allow([^vfork$])
-m4trace:configure.ac:1254: -1- m4_pattern_allow([^HAVE_WORKING_FORK$])
-m4trace:configure.ac:1301: -1- m4_pattern_allow([^POSIX_SIGNALS$])
-m4trace:configure.ac:1301: -1- m4_pattern_allow([^SYSV_SIGNALS$])
-m4trace:configure.ac:1312: -1- m4_pattern_allow([^HAVE_SYSLOG$])
-m4trace:configure.ac:1376: -1- m4_pattern_allow([^OSX_TARGET$])
-m4trace:configure.ac:1381: -1- m4_pattern_allow([^APPLEKEYCHAIN$])
-m4trace:configure.ac:1399: -1- m4_pattern_allow([^__EXTENSIONS__$])
-m4trace:configure.ac:1505: -1- m4_pattern_allow([^_WINDOWS$])
-m4trace:configure.ac:1508: -1- _m4_warn([obsolete], [The macro `AC_ERROR' is obsolete.
+configure.ac:1228: the top level])
+m4trace:configure.ac:1245: -1- m4_pattern_allow([^qsort_t$])
+m4trace:configure.ac:1249: -1- m4_pattern_allow([^SELECT_TYPE_ARG1$])
+m4trace:configure.ac:1249: -1- m4_pattern_allow([^SELECT_TYPE_ARG234$])
+m4trace:configure.ac:1249: -1- m4_pattern_allow([^SELECT_TYPE_ARG5$])
+m4trace:configure.ac:1251: -1- m4_pattern_allow([^HAVE_STRCOLL$])
+m4trace:configure.ac:1255: -1- m4_pattern_allow([^HAVE_VFORK_H$])
+m4trace:configure.ac:1255: -1- m4_pattern_allow([^HAVE_WORKING_VFORK$])
+m4trace:configure.ac:1255: -1- m4_pattern_allow([^vfork$])
+m4trace:configure.ac:1255: -1- m4_pattern_allow([^HAVE_WORKING_FORK$])
+m4trace:configure.ac:1302: -1- m4_pattern_allow([^POSIX_SIGNALS$])
+m4trace:configure.ac:1302: -1- m4_pattern_allow([^SYSV_SIGNALS$])
+m4trace:configure.ac:1313: -1- m4_pattern_allow([^HAVE_SYSLOG$])
+m4trace:configure.ac:1377: -1- m4_pattern_allow([^OSX_TARGET$])
+m4trace:configure.ac:1382: -1- m4_pattern_allow([^APPLEKEYCHAIN$])
+m4trace:configure.ac:1400: -1- m4_pattern_allow([^__EXTENSIONS__$])
+m4trace:configure.ac:1506: -1- m4_pattern_allow([^_WINDOWS$])
+m4trace:configure.ac:1509: -1- _m4_warn([obsolete], [The macro `AC_ERROR' is obsolete.
You should run autoupdate.], [../../lib/autoconf/oldnames.m4:34: AC_ERROR is expanded from...
-configure.ac:1508: the top level])
-m4trace:configure.ac:1528: -1- m4_pattern_allow([^SYSTYPE$])
-m4trace:configure.ac:1529: -1- m4_pattern_allow([^C_FILESEP$])
-m4trace:configure.ac:1530: -1- m4_pattern_allow([^S_FILESEP$])
-m4trace:configure.ac:1531: -1- m4_pattern_allow([^MAILDIR$])
-m4trace:configure.ac:1532: -1- m4_pattern_allow([^MODE_READONLY$])
-m4trace:configure.ac:1535: -1- m4_pattern_allow([^C_CLIENT_TARGET$])
-m4trace:configure.ac:1536: -1- m4_pattern_allow([^C_CLIENT_WITH_IPV6$])
-m4trace:configure.ac:1553: -1- m4_pattern_allow([^SMIME$])
-m4trace:configure.ac:1554: -1- m4_pattern_allow([^SMIME_SSLCERTS$])
-m4trace:configure.ac:1603: -1- m4_pattern_allow([^C_CLIENT_CFLAGS$])
-m4trace:configure.ac:1614: -1- m4_pattern_allow([^C_CLIENT_LDFLAGS$])
-m4trace:configure.ac:1618: -1- m4_pattern_allow([^C_CLIENT_GCCOPTLEVEL$])
-m4trace:configure.ac:1621: -1- m4_pattern_allow([^C_CLIENT_SPECIALS$])
-m4trace:configure.ac:1641: -1- m4_pattern_allow([^PUBCOOKIE$])
-m4trace:configure.ac:1648: -1- m4_pattern_allow([^REGEX_BUILD$])
-m4trace:configure.ac:1650: -1- m4_pattern_allow([^WEB_BUILD$])
-m4trace:configure.ac:1651: -1- m4_pattern_allow([^WEB_BINDIR$])
-m4trace:configure.ac:1652: -1- m4_pattern_allow([^WEB_PUBCOOKIE_BUILD$])
-m4trace:configure.ac:1653: -1- m4_pattern_allow([^WEB_PUBCOOKIE_LIB$])
-m4trace:configure.ac:1654: -1- m4_pattern_allow([^WEB_PUBCOOKIE_LINK$])
-m4trace:configure.ac:1656: -1- m4_pattern_allow([^AM_CFLAGS$])
-m4trace:configure.ac:1657: -1- m4_pattern_allow([^AM_LDFLAGS$])
-m4trace:configure.ac:1659: -1- _m4_warn([obsolete], [AC_OUTPUT should be used without arguments.
+configure.ac:1509: the top level])
+m4trace:configure.ac:1529: -1- m4_pattern_allow([^SYSTYPE$])
+m4trace:configure.ac:1530: -1- m4_pattern_allow([^C_FILESEP$])
+m4trace:configure.ac:1531: -1- m4_pattern_allow([^S_FILESEP$])
+m4trace:configure.ac:1532: -1- m4_pattern_allow([^MAILDIR$])
+m4trace:configure.ac:1533: -1- m4_pattern_allow([^MODE_READONLY$])
+m4trace:configure.ac:1536: -1- m4_pattern_allow([^C_CLIENT_TARGET$])
+m4trace:configure.ac:1537: -1- m4_pattern_allow([^C_CLIENT_WITH_IPV6$])
+m4trace:configure.ac:1554: -1- m4_pattern_allow([^SMIME$])
+m4trace:configure.ac:1555: -1- m4_pattern_allow([^SMIME_SSLCERTS$])
+m4trace:configure.ac:1604: -1- m4_pattern_allow([^C_CLIENT_CFLAGS$])
+m4trace:configure.ac:1615: -1- m4_pattern_allow([^C_CLIENT_LDFLAGS$])
+m4trace:configure.ac:1619: -1- m4_pattern_allow([^C_CLIENT_GCCOPTLEVEL$])
+m4trace:configure.ac:1622: -1- m4_pattern_allow([^C_CLIENT_SPECIALS$])
+m4trace:configure.ac:1642: -1- m4_pattern_allow([^PUBCOOKIE$])
+m4trace:configure.ac:1649: -1- m4_pattern_allow([^REGEX_BUILD$])
+m4trace:configure.ac:1651: -1- m4_pattern_allow([^WEB_BUILD$])
+m4trace:configure.ac:1652: -1- m4_pattern_allow([^WEB_BINDIR$])
+m4trace:configure.ac:1653: -1- m4_pattern_allow([^WEB_PUBCOOKIE_BUILD$])
+m4trace:configure.ac:1654: -1- m4_pattern_allow([^WEB_PUBCOOKIE_LIB$])
+m4trace:configure.ac:1655: -1- m4_pattern_allow([^WEB_PUBCOOKIE_LINK$])
+m4trace:configure.ac:1657: -1- m4_pattern_allow([^AM_CFLAGS$])
+m4trace:configure.ac:1658: -1- m4_pattern_allow([^AM_LDFLAGS$])
+m4trace:configure.ac:1660: -1- _m4_warn([obsolete], [AC_OUTPUT should be used without arguments.
You should run autoupdate.], [])
-m4trace:configure.ac:1659: -1- m4_pattern_allow([^LIB@&t@OBJS$])
-m4trace:configure.ac:1659: -1- m4_pattern_allow([^LTLIBOBJS$])
-m4trace:configure.ac:1659: -1- AM_CONDITIONAL([am__EXEEXT], [test -n "$EXEEXT"])
-m4trace:configure.ac:1659: -1- m4_pattern_allow([^am__EXEEXT_TRUE$])
-m4trace:configure.ac:1659: -1- m4_pattern_allow([^am__EXEEXT_FALSE$])
-m4trace:configure.ac:1659: -1- _AM_SUBST_NOTMAKE([am__EXEEXT_TRUE])
-m4trace:configure.ac:1659: -1- _AM_SUBST_NOTMAKE([am__EXEEXT_FALSE])
-m4trace:configure.ac:1659: -1- _AC_AM_CONFIG_HEADER_HOOK(["$ac_file"])
-m4trace:configure.ac:1659: -1- _AM_OUTPUT_DEPENDENCY_COMMANDS
-m4trace:configure.ac:1659: -1- _LT_PROG_LTMAIN
+m4trace:configure.ac:1660: -1- m4_pattern_allow([^LIB@&t@OBJS$])
+m4trace:configure.ac:1660: -1- m4_pattern_allow([^LTLIBOBJS$])
+m4trace:configure.ac:1660: -1- AM_CONDITIONAL([am__EXEEXT], [test -n "$EXEEXT"])
+m4trace:configure.ac:1660: -1- m4_pattern_allow([^am__EXEEXT_TRUE$])
+m4trace:configure.ac:1660: -1- m4_pattern_allow([^am__EXEEXT_FALSE$])
+m4trace:configure.ac:1660: -1- _AM_SUBST_NOTMAKE([am__EXEEXT_TRUE])
+m4trace:configure.ac:1660: -1- _AM_SUBST_NOTMAKE([am__EXEEXT_FALSE])
+m4trace:configure.ac:1660: -1- _AC_AM_CONFIG_HEADER_HOOK(["$ac_file"])
+m4trace:configure.ac:1660: -1- _AM_OUTPUT_DEPENDENCY_COMMANDS
+m4trace:configure.ac:1660: -1- _LT_PROG_LTMAIN
diff --git a/configure b/configure
index 1fbd2696..fbd9f726 100755
--- a/configure
+++ b/configure
@@ -1,9 +1,9 @@
#! /bin/sh
-# From configure.ac Id: configure.ac 1266 2009-07-14 18:39:12Z hubert@u.washington.edu .
+# From configure.ac Id: configure.ac 1266 2013-02-07 18:39:12Z chappa@washington.edu .
# Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.68 for alpine 2.10.
+# Generated by GNU Autoconf 2.68 for alpine 2.10.9.
#
-# Report bugs to <alpine-contact@u.washington.edu>.
+# Report bugs to <chappa@washington.edu>.
#
#
# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001,
@@ -240,10 +240,10 @@ fi
$as_echo "$0: be upgraded to zsh 4.3.4 or later."
else
$as_echo "$0: Please tell bug-autoconf@gnu.org and
-$0: alpine-contact@u.washington.edu about your system,
-$0: including any error possibly output before this
-$0: message. Then install a modern shell, or manually run
-$0: the script under such a shell if you do have one."
+$0: chappa@washington.edu about your system, including any
+$0: error possibly output before this message. Then install
+$0: a modern shell, or manually run the script under such a
+$0: shell if you do have one."
fi
exit 1
fi
@@ -710,9 +710,9 @@ MAKEFLAGS=
# Identity of this package.
PACKAGE_NAME='alpine'
PACKAGE_TARNAME='alpine'
-PACKAGE_VERSION='2.10'
-PACKAGE_STRING='alpine 2.10'
-PACKAGE_BUGREPORT='alpine-contact@u.washington.edu'
+PACKAGE_VERSION='2.10.9'
+PACKAGE_STRING='alpine 2.10.9'
+PACKAGE_BUGREPORT='chappa@washington.edu'
PACKAGE_URL=''
ac_unique_file="include/system.h"
@@ -1574,7 +1574,7 @@ if test "$ac_init_help" = "long"; then
# 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.
cat <<_ACEOF
-\`configure' configures alpine 2.10 to adapt to many kinds of systems.
+\`configure' configures alpine 2.10.9 to adapt to many kinds of systems.
Usage: $0 [OPTION]... [VAR=VALUE]...
@@ -1644,7 +1644,7 @@ fi
if test -n "$ac_init_help"; then
case $ac_init_help in
- short | recursive ) echo "Configuration of alpine 2.10:";;
+ short | recursive ) echo "Configuration of alpine 2.10.9:";;
esac
cat <<\_ACEOF
@@ -1863,7 +1863,7 @@ Some influential environment variables:
Use these variables to override the choices made by `configure' or to help
it to find libraries and programs with nonstandard names/locations.
-Report bugs to <alpine-contact@u.washington.edu>.
+Report bugs to <chappa@washington.edu>.
_ACEOF
ac_status=$?
fi
@@ -1926,7 +1926,7 @@ fi
test -n "$ac_init_help" && exit $ac_status
if $ac_init_version; then
cat <<\_ACEOF
-alpine configure 2.10
+alpine configure 2.10.9
generated by GNU Autoconf 2.68
Copyright (C) 2010 Free Software Foundation, Inc.
@@ -2271,9 +2271,9 @@ $as_echo "$as_me: WARNING: $2: see the Autoconf documentation" >&2;}
$as_echo "$as_me: WARNING: $2: section \"Present But Cannot Be Compiled\"" >&2;}
{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: proceeding with the compiler's result" >&5
$as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;}
-( $as_echo "## ---------------------------------------------- ##
-## Report this to alpine-contact@u.washington.edu ##
-## ---------------------------------------------- ##"
+( $as_echo "## ------------------------------------ ##
+## Report this to chappa@washington.edu ##
+## ------------------------------------ ##"
) | sed "s/^/$as_me: WARNING: /" >&2
;;
esac
@@ -2527,7 +2527,7 @@ cat >config.log <<_ACEOF
This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.
-It was created by alpine $as_me 2.10, which was
+It was created by alpine $as_me 2.10.9, which was
generated by GNU Autoconf 2.68. Invocation command line was
$ $0 $@
@@ -3348,7 +3348,7 @@ fi
# Define the identity of the package.
PACKAGE='alpine'
- VERSION='2.10'
+ VERSION='2.10.9'
cat >>confdefs.h <<_ACEOF
@@ -19735,7 +19735,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
# report actual input values of CONFIG_FILES etc. instead of their
# values after options handling.
ac_log="
-This file was extended by alpine $as_me 2.10, which was
+This file was extended by alpine $as_me 2.10.9, which was
generated by GNU Autoconf 2.68. Invocation command line was
CONFIG_FILES = $CONFIG_FILES
@@ -19795,13 +19795,13 @@ $config_headers
Configuration commands:
$config_commands
-Report bugs to <alpine-contact@u.washington.edu>."
+Report bugs to <chappa@washington.edu>."
_ACEOF
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
ac_cs_version="\\
-alpine config.status 2.10
+alpine config.status 2.10.9
configured by $0, generated by GNU Autoconf 2.68,
with options \\"\$ac_cs_config\\"
diff --git a/configure.ac b/configure.ac
index 27a9f95f..07dcb478 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,6 +1,7 @@
dnl Process this file with autoconf to produce a configure script.
dnl /* ========================================================================
+dnl * Copyright 2013 Eduardo Chappa
dnl * Copyright 2006-2008 University of Washington
dnl *
dnl * Licensed under the Apache License, Version 2.0 (the "License");
@@ -14,10 +15,10 @@ dnl */
AC_PREREQ([2.57])
-AC_REVISION([$Id: configure.ac 1266 2009-07-14 18:39:12Z hubert@u.washington.edu $])
+AC_REVISION([$Id: configure.ac 1266 2013-02-07 18:39:12Z chappa@washington.edu $])
dnl Alpine Version Number is in $srcdir/VERSION
-AC_INIT(alpine, m4_normalize(m4_include([VERSION])), [alpine-contact@u.washington.edu])
+AC_INIT(alpine, m4_normalize(m4_include([VERSION])), [chappa@washington.edu])
AC_CONFIG_SRCDIR([include/system.h])
AC_CONFIG_HEADERS([include/config.h])
diff --git a/include/general.h b/include/general.h
index 500a5e74..b406f9d8 100644
--- a/include/general.h
+++ b/include/general.h
@@ -1,3 +1,9 @@
+/********************************* NOTICE *********************************
+ * In accordance to the text of the Apache License 2.0 this text notifies
+ * you that this file was modified from its original version. For more
+ * information on the changes see the file README.patches.
+ ***************************** END of NOTICE ******************************/
+
/*----------------------------------------------------------------------
$Id: general.h 764 2007-10-23 23:44:49Z hubert@u.washington.edu $
----------------------------------------------------------------------*/
@@ -32,6 +38,7 @@
#undef TRUE
#define TRUE 1 /* True, yes, good, etc. */
#define ABORT 2 /* Death, ^G, abort, etc. */
+#define COUNT 3 /* For control-c command */
#undef MIN
diff --git a/pith/conf.c b/pith/conf.c
index 1375b8dc..18eaf8f0 100644
--- a/pith/conf.c
+++ b/pith/conf.c
@@ -198,6 +198,8 @@ CONF_TXT_T cf_text_titlebar_color_style[] = "Controls display of color for the t
CONF_TXT_T cf_text_view_hdr_color[] = "When viewing messages, these are the header colors";
+CONF_TXT_T cf_text_index_token_color[] = "Colors in which tokens will be displayed in the index screen";
+
CONF_TXT_T cf_text_save_msg_name_rule[] = "Determines default folder name for Saves...\n# Choices: default-folder, by-sender, by-from, by-recipient, last-folder-used.\n# Default: \"default-folder\", i.e. \"saved-messages\" (Unix) or \"SAVEMAIL\" (PC).";
CONF_TXT_T cf_text_fcc_name_rule[] = "Determines default name for Fcc...\n# Choices: default-fcc, by-recipient, last-fcc-used.\n# Default: \"default-fcc\" (see also \"default-fcc=\" variable.)";
@@ -789,6 +791,12 @@ static struct variable variables[] = {
{"title-background-color", 0, 1, 0, 1, 1, 0, 0, 0, 0, 1, 0},
{"title-closed-foreground-color", 0, 1, 0, 1, 1, 0, 0, 0, 0, 1, 0},
{"title-closed-background-color", 0, 1, 0, 1, 1, 0, 0, 0, 0, 1, 0},
+{"folder-foreground-color", 0, 1, 0, 1, 1, 0, 0, 0, 0, 1, 0},
+{"folder-background-color", 0, 1, 0, 1, 1, 0, 0, 0, 0, 1, 0},
+{"directory-foreground-color", 0, 1, 0, 1, 1, 0, 0, 0, 0, 1, 0},
+{"directory-background-color", 0, 1, 0, 1, 1, 0, 0, 0, 0, 1, 0},
+{"folder-list-text-foreground-color", 0, 1, 0, 1, 1, 0, 0, 0, 0, 1, 0},
+{"folder-list-text-background-color", 0, 1, 0, 1, 1, 0, 0, 0, 0, 1, 0},
{"status-foreground-color", 0, 1, 0, 1, 1, 0, 0, 0, 0, 1, 0},
{"status-background-color", 0, 1, 0, 1, 1, 0, 0, 0, 0, 1, 0},
{"keylabel-foreground-color", 0, 1, 0, 1, 1, 0, 0, 0, 0, 1, 0},
@@ -841,6 +849,8 @@ static struct variable variables[] = {
{"index-from-background-color", 0, 1, 0, 1, 1, 0, 0, 0, 0, 1, 0},
{"index-opening-foreground-color", 0, 1, 0, 1, 1, 0, 0, 0, 0, 1, 0},
{"index-opening-background-color", 0, 1, 0, 1, 1, 0, 0, 0, 0, 1, 0},
+{"index-token-colors", 0, 1, 0, 1, 1, 1, 0, 0, 0, 1, 0,
+ NULL, cf_text_index_token_color},
{"viewer-hdr-colors", 0, 1, 0, 1, 1, 1, 0, 0, 0, 1, 0,
"Viewer Header Colors", cf_text_view_hdr_color},
{"keyword-colors", 0, 1, 0, 1, 1, 1, 0, 0, 0, 1, 0,
@@ -1651,6 +1661,9 @@ init_vars(struct pine *ps, void (*cmds_f) (struct pine *, char **))
GLO_TITLE_BACK_COLOR = cpystr(DEFAULT_TITLE_BACK_RGB);
GLO_TITLECLOSED_FORE_COLOR = cpystr(DEFAULT_TITLECLOSED_FORE_RGB);
GLO_TITLECLOSED_BACK_COLOR = cpystr(DEFAULT_TITLECLOSED_BACK_RGB);
+ GLO_FOLDER_FORE_COLOR = cpystr(DEFAULT_NORM_FORE_RGB);
+ GLO_DIRECTORY_FORE_COLOR = cpystr(DEFAULT_NORM_FORE_RGB);
+ GLO_FOLDER_LIST_FORE_COLOR = cpystr(DEFAULT_NORM_FORE_RGB);
GLO_METAMSG_FORE_COLOR = cpystr(DEFAULT_METAMSG_FORE_RGB);
GLO_METAMSG_BACK_COLOR = cpystr(DEFAULT_METAMSG_BACK_RGB);
GLO_QUOTE1_FORE_COLOR = cpystr(DEFAULT_QUOTE1_FORE_RGB);
@@ -2800,6 +2813,8 @@ feature_list(int index)
F_ENABLE_STRIP_SIGDASHES, h_config_strip_sigdashes, PREF_RPLY, 0},
{"forward-as-attachment", "Forward messages as attachments",
F_FORWARD_AS_ATTACHMENT, h_config_forward_as_attachment, PREF_RPLY, 0},
+ {"preserve-original-fields", NULL,
+ F_PRESERVE_ORIGINAL_FIELD, h_config_preserve_field, PREF_RPLY, 0},
/* Sending Prefs */
{"disable-sender", "Do Not Generate Sender Header",
@@ -6401,6 +6416,9 @@ set_current_color_vals(struct pine *ps)
set_color_val(&vars[V_TITLE_FORE_COLOR], 1);
set_color_val(&vars[V_TITLECLOSED_FORE_COLOR], 0);
+ set_color_val(&vars[V_FOLDER_FORE_COLOR], 0);
+ set_color_val(&vars[V_DIRECTORY_FORE_COLOR], 0);
+ set_color_val(&vars[V_FOLDER_LIST_FORE_COLOR], 0);
set_color_val(&vars[V_STATUS_FORE_COLOR], 1);
set_color_val(&vars[V_KEYLABEL_FORE_COLOR], 1);
set_color_val(&vars[V_KEYNAME_FORE_COLOR], 1);
@@ -6425,6 +6443,7 @@ set_current_color_vals(struct pine *ps)
set_color_val(&vars[V_INCUNSEEN_FORE_COLOR], 0);
set_color_val(&vars[V_SIGNATURE_FORE_COLOR], 0);
+ set_current_val(&ps->vars[V_INDEX_TOKEN_COLORS], TRUE, TRUE);
set_current_val(&ps->vars[V_VIEW_HDR_COLORS], TRUE, TRUE);
set_current_val(&ps->vars[V_KW_COLORS], TRUE, TRUE);
set_custom_spec_colors(ps);
@@ -6577,6 +6596,11 @@ var_defaults_to_rev(struct variable *v)
void
set_custom_spec_colors(struct pine *ps)
{
+ if(ps->index_token_colors)
+ free_spec_colors(&ps->index_token_colors);
+
+ ps->index_token_colors = spec_colors_from_varlist(ps->VAR_INDEX_TOKEN_COLORS, 1);
+
if(ps->hdr_colors)
free_spec_colors(&ps->hdr_colors);
@@ -7739,6 +7763,12 @@ config_help(int var, int feature)
case V_TITLECLOSED_FORE_COLOR :
case V_TITLECLOSED_BACK_COLOR :
return(h_config_titleclosed_color);
+ case V_FOLDER_FORE_COLOR:
+ return(h_config_folder_color);
+ case V_DIRECTORY_FORE_COLOR:
+ return(h_config_directory_color);
+ case V_FOLDER_LIST_FORE_COLOR:
+ return(h_config_folder_list_color);
case V_STATUS_FORE_COLOR :
case V_STATUS_BACK_COLOR :
return(h_config_status_color);
@@ -7809,6 +7839,8 @@ config_help(int var, int feature)
return(h_config_metamsg_color);
case V_VIEW_HDR_COLORS :
return(h_config_customhdr_color);
+ case V_INDEX_TOKEN_COLORS :
+ return(h_config_indextoken_color);
case V_PRINTER :
return(h_config_printer);
case V_PERSONAL_PRINT_CATEGORY :
diff --git a/pith/conf.h b/pith/conf.h
index 4c6bae4a..54c23ff5 100644
--- a/pith/conf.h
+++ b/pith/conf.h
@@ -374,6 +374,18 @@
#define GLO_TITLECLOSED_FORE_COLOR vars[V_TITLECLOSED_FORE_COLOR].global_val.p
#define VAR_TITLECLOSED_BACK_COLOR vars[V_TITLECLOSED_BACK_COLOR].current_val.p
#define GLO_TITLECLOSED_BACK_COLOR vars[V_TITLECLOSED_BACK_COLOR].global_val.p
+#define VAR_FOLDER_FORE_COLOR vars[V_FOLDER_FORE_COLOR].current_val.p
+#define GLO_FOLDER_FORE_COLOR vars[V_FOLDER_FORE_COLOR].global_val.p
+#define VAR_FOLDER_BACK_COLOR vars[V_FOLDER_BACK_COLOR].current_val.p
+#define GLO_FOLDER_BACK_COLOR vars[V_FOLDER_BACK_COLOR].global_val.p
+#define VAR_DIRECTORY_FORE_COLOR vars[V_DIRECTORY_FORE_COLOR].current_val.p
+#define GLO_DIRECTORY_FORE_COLOR vars[V_DIRECTORY_FORE_COLOR].global_val.p
+#define VAR_DIRECTORY_BACK_COLOR vars[V_DIRECTORY_BACK_COLOR].current_val.p
+#define GLO_DIRECTORY_BACK_COLOR vars[V_DIRECTORY_BACK_COLOR].global_val.p
+#define VAR_FOLDER_LIST_FORE_COLOR vars[V_FOLDER_LIST_FORE_COLOR].current_val.p
+#define GLO_FOLDER_LIST_FORE_COLOR vars[V_FOLDER_LIST_FORE_COLOR].global_val.p
+#define VAR_FOLDER_LIST_BACK_COLOR vars[V_FOLDER_LIST_BACK_COLOR].current_val.p
+#define GLO_FOLDER_LIST_BACK_COLOR vars[V_FOLDER_LIST_BACK_COLOR].global_val.p
#define VAR_STATUS_FORE_COLOR vars[V_STATUS_FORE_COLOR].current_val.p
#define VAR_STATUS_BACK_COLOR vars[V_STATUS_BACK_COLOR].current_val.p
#define VAR_HEADER_GENERAL_FORE_COLOR vars[V_HEADER_GENERAL_FORE_COLOR].current_val.p
@@ -447,6 +459,7 @@
#define VAR_PROMPT_FORE_COLOR vars[V_PROMPT_FORE_COLOR].current_val.p
#define VAR_PROMPT_BACK_COLOR vars[V_PROMPT_BACK_COLOR].current_val.p
#define VAR_VIEW_HDR_COLORS vars[V_VIEW_HDR_COLORS].current_val.l
+#define VAR_INDEX_TOKEN_COLORS vars[V_INDEX_TOKEN_COLORS].current_val.l
#ifdef SMIME
#define VAR_PUBLICCERT_DIR vars[V_PUBLICCERT_DIR].current_val.p
#define GLO_PUBLICCERT_DIR vars[V_PUBLICCERT_DIR].global_val.p
diff --git a/pith/conftype.h b/pith/conftype.h
index d1fddddb..c654f6c5 100644
--- a/pith/conftype.h
+++ b/pith/conftype.h
@@ -204,6 +204,12 @@ typedef enum { V_PERSONAL_NAME = 0
, V_TITLE_BACK_COLOR
, V_TITLECLOSED_FORE_COLOR
, V_TITLECLOSED_BACK_COLOR
+ , V_FOLDER_FORE_COLOR
+ , V_FOLDER_BACK_COLOR
+ , V_DIRECTORY_FORE_COLOR
+ , V_DIRECTORY_BACK_COLOR
+ , V_FOLDER_LIST_FORE_COLOR
+ , V_FOLDER_LIST_BACK_COLOR
, V_STATUS_FORE_COLOR
, V_STATUS_BACK_COLOR
, V_KEYLABEL_FORE_COLOR
@@ -256,6 +262,7 @@ typedef enum { V_PERSONAL_NAME = 0
, V_IND_FROM_BACK_COLOR
, V_IND_OP_FORE_COLOR
, V_IND_OP_BACK_COLOR
+ , V_INDEX_TOKEN_COLORS
, V_VIEW_HDR_COLORS
, V_KW_COLORS
#if defined(DOS) || defined(OS2)
@@ -516,6 +523,7 @@ typedef enum {
F_RENDER_HTML_INTERNALLY,
F_ENABLE_JUMP_CMD,
F_FORWARD_AS_ATTACHMENT,
+ F_PRESERVE_ORIGINAL_FIELD,
#ifndef _WINDOWS
F_USE_SYSTEM_TRANS,
#endif /* ! _WINDOWS */
diff --git a/pith/filter.c b/pith/filter.c
index b8712b23..692d6319 100644
--- a/pith/filter.c
+++ b/pith/filter.c
@@ -1021,7 +1021,7 @@ gf_bytes_piped(void)
*/
char *
gf_filter(char *cmd, char *prepend, STORE_S *source_so, gf_io_t pc,
- FILTLIST_S *aux_filters, int disable_reset,
+ FILTLIST_S *aux_filters, int silent, int disable_reset,
void (*pipecb_f)(PIPE_S *, int, void *))
{
unsigned char c, obuf[MAX(MB_LEN_MAX,32)];
@@ -1058,8 +1058,9 @@ gf_filter(char *cmd, char *prepend, STORE_S *source_so, gf_io_t pc,
* Spawn filter feeding it data, and reading what it writes.
*/
so_seek(source_so, 0L, 0);
- flags = PIPE_WRITE | PIPE_READ | PIPE_NOSHELL |
- (!disable_reset ? PIPE_RESET : 0);
+ flags = PIPE_WRITE | PIPE_READ | PIPE_NOSHELL
+ | (silent ? PIPE_SILENT : 0)
+ | (!disable_reset ? PIPE_RESET : 0);
if((fpipe = open_system_pipe(cmd, NULL, NULL, flags, 0, pipecb_f, pipe_report_error)) != NULL){
diff --git a/pith/filter.h b/pith/filter.h
index 07cfbd7a..9916803d 100644
--- a/pith/filter.h
+++ b/pith/filter.h
@@ -176,7 +176,7 @@ void gf_set_terminal(gf_io_t);
char *gf_pipe(gf_io_t, gf_io_t);
long gf_bytes_piped(void);
char *gf_filter(char *, char *, STORE_S *, gf_io_t, FILTLIST_S *, int,
- void (*)(PIPE_S *, int, void *));
+ int, void (*)(PIPE_S *, int, void *));
void gf_binary_b64(FILTER_S *, int);
void gf_b64_binary(FILTER_S *, int);
void gf_qp_8bit(FILTER_S *, int);
diff --git a/pith/handle.h b/pith/handle.h
index a6f87ada..ab551868 100644
--- a/pith/handle.h
+++ b/pith/handle.h
@@ -40,6 +40,7 @@ typedef struct handle_s {
unsigned using_is_used:1; /* bit below is being used */
unsigned is_used:1; /* if not, remove it from list */
unsigned color_unseen:1; /* we're coloring folders with unseen */
+ unsigned color_folder:1; /* and just folders for that matter... */
unsigned is_dual_do_open:1; /* choosing this handle means open */
union {
struct { /* URL corresponding to this handle */
diff --git a/pith/mailindx.c b/pith/mailindx.c
index f3b68bfb..09cdc2c8 100644
--- a/pith/mailindx.c
+++ b/pith/mailindx.c
@@ -573,6 +573,17 @@ static INDEX_PARSE_T itokens[] = {
{NULL, iNothing, FOR_NOTHING}
};
+INDEX_PARSE_T itokensinv[sizeof(itokens)/sizeof(itokens[0])];
+
+void
+inverse_itokens(void)
+{
+ INDEX_PARSE_T *pt;
+ for (pt = itokens; pt->name; pt++)
+ itokensinv[pt->ctype].ctype = pt - itokens;
+
+}
+
INDEX_PARSE_T *
itoken(int i)
{
@@ -1990,6 +2001,7 @@ format_index_index_line(INDEXDATA_S *idata)
ICE_S *ice, **icep;
IFIELD_S *ifield;
IELEM_S *ielem;
+ COLOR_PAIR *color = NULL;
struct variable *vars = ps_global->vars;
dprint((8, "=== format_index_line(msgno=%ld,rawno=%ld) ===\n",
@@ -2933,6 +2945,14 @@ format_index_index_line(INDEXDATA_S *idata)
if(!ifield->ielem){
ielem = new_ielem(&ifield->ielem);
+ if(color = hdr_color(itokens[itokensinv[cdesc->ctype].ctype].name, NULL, ps_global->index_token_colors)){
+ if(pico_usingcolor()){
+ ielem->color = new_color_pair(color->fg, color->bg);
+ ielem->type = eTypeCol;
+ }
+ free_color_pair(&color);
+ }
+
ielem->freedata = 1;
ielem->data = cpystr(str);
ielem->datalen = strlen(str);
diff --git a/pith/mailindx.h b/pith/mailindx.h
index 4c45268c..8eb23033 100644
--- a/pith/mailindx.h
+++ b/pith/mailindx.h
@@ -37,6 +37,7 @@ void init_index_format(char *, INDEX_COL_S **);
void free_index_format(INDEX_COL_S **);
void reset_index_format(void);
INDEX_PARSE_T *itoktype(char *, int);
+void inverse_itokens(void);
char *prepend_keyword_subject(MAILSTREAM *, long, char *, SubjKW, IELEM_S **, char *);
int get_index_line_color(MAILSTREAM *, SEARCHSET *, PAT_STATE **, COLOR_PAIR **);
void setup_for_index_index_screen(void);
diff --git a/pith/pine.hlp b/pith/pine.hlp
index b4cb5283..07ff3cc0 100644
--- a/pith/pine.hlp
+++ b/pith/pine.hlp
@@ -141,7 +141,7 @@ reasonable place to be called from.
Dummy change to get revision in pine.hlp
============= h_revision =================
-$Id: pine.hlp 1266 2009-07-14 18:39:12Z hubert@u.washington.edu $
+$Id: pine.hlp 1266 2013-02-07 18:39:12Z chappa@washington.edu $
============= h_news =================
<HTML>
<HEAD>
@@ -180,7 +180,19 @@ Additions include:
<P>
<UL>
+ <LI> Add ability to <A HREF="h_config_folder_color">color folder names</A>, <A
+HREF="h_config_directory_color">directory names</A>,
+ and <A HREF="h_config_folder_list_color">text</A> in the FOLDER SCREEN
+ <LI> Add the ability to <A HREF="h_config_indextoken_color">color any token</A>
+used in the display of the INDEX SCREEN.
+ <LI> New option <A HREF="h_config_preserve_field"><!--#echo var="FEAT_preserve-original-fields"--></A>
+that adds the ability to preserve To: and Cc: fields when replying to a
+message, as specified by original sender.
+ <LI> Add a _SILENT_ token to the
+<A HREF="h_config_display_filters">list of tokens</A>
+ for a display filter, so that Alpine will not redraw the screen when it is unnecessary.
<LI> Quota command includes subcommands for printing, forwarding, etc.
+
</UL>
<P>
@@ -3271,6 +3283,7 @@ There are also additional details on
<li><a href="h_config_no_fcc_attach">FEATURE: <!--#echo var="FEAT_fcc-without-attachments"--></a>
<li><a href="h_config_force_arrow">FEATURE: <!--#echo var="FEAT_force-arrow-cursor"--></a>
<li><a href="h_config_forward_as_attachment">FEATURE: <!--#echo var="FEAT_forward-as-attachment"--></a>
+<li><a href="h_config_preserve_field">FEATURE: <!--#echo var="FEAT_preserve-original-fields"--></a>
<li><a href="h_config_quell_empty_dirs">FEATURE: <!--#echo var="FEAT_quell-empty-directories"--></a>
<li><a href="h_config_hide_nntp_path">FEATURE: <!--#echo var="FEAT_hide-nntp-path"--></a>
<li><a href="h_config_attach_in_reply">FEATURE: <!--#echo var="FEAT_include-attachments-in-reply"--></a>
@@ -22932,6 +22945,13 @@ This number could be used as a session key. It is sent in this way to
improve security. The number is unique to the current Alpine session
and is only generated once per session.
</DD>
+
+<DT>_SILENT_</DT>
+<DD>When the filter is executed, this token tells Alpine not to repaint
+the screen while the command is being executed. This can be used with
+filters that do not interact with the user, and therefore repainting
+the screen is not necessary.
+</DD>
</DL>
<P>
@@ -27766,6 +27786,42 @@ the sender of the forwarded message, or process it as part of a spam report.
&lt;End of help on this topic&gt;
</BODY>
</HTML>
+====== h_config_preserve_field =====
+<HTML>
+<HEAD>
+<TITLE>FEATURE: <!--#echo var="FEAT_preserve-original-fields"--></TITLE>
+</HEAD>
+<BODY>
+<H1>FEATURE: <!--#echo var="FEAT_preserve-original-fields"--></H1>
+
+When you reply to a message that has been sent to several recipients, some of
+them may have been added in different parts of the headers. For example,
+some of the recipients will be listed in the To: header, while others will
+be listed in the Cc: header.
+<P>
+If this feature is disabled, the default behavior of Alpine will be used,
+and that is, that almost all recipients of the message will be
+listed in the Cc: field. However, if you enable this feature, then,
+excepting you, recipients originally listed in the Cc: field will be
+listed again in the Cc: field, and those listed in the To: field in the
+original message will be listed in the To: field again. The person in the
+From: field will be added to the To: field.
+<P>
+Note that this will cause some messages that you send in Alpine to look
+different. In particular, the To: field of a message will not be put in the
+Cc: field, as is normally done. In fact, most people expect this to happen.
+If you find that this is a problem you should disable this feature. You can
+still make Alpine have this behavior on a per message basis. In order to do
+this, you will see a new option in the menu for the &quot;Reply to all
+recipients?&quot; question. In this case, pressing &quot;p&quot; will make
+Alpine toggle its question so you can preserve the To: and Cc: fields for that
+message.
+<UL>
+<LI><A HREF="h_finding_help">Finding more information and requesting help</A>
+</UL><P>
+&lt;End of help on this topic&gt;
+</BODY>
+</HTML>
====== h_config_sub_lists =====
<HTML>
<HEAD>
@@ -31391,6 +31447,99 @@ to see the available Editing and Navigation commands.
&lt;End of help on this topic&gt;
</BODY>
</HTML>
+====== h_config_folder_color =====
+<HTML>
+<HEAD>
+<TITLE>OPTION: Folder Color</TITLE>
+</HEAD>
+<BODY>
+<H1>OPTION: Folder Color</H1>
+
+Sets the colors Alpine uses for coloring a folder in the FOLDER LIST
+screen. By default, the Folder Color is the normal text color.
+
+<P>
+If you set a color for this feature, other than the normal color
+(the default), or a color for
+<A HREF="h_config_directory_color">Directory Color</A>, then directories
+will be colored according to the color specified in the
+<A HREF="h_config_directory_color">Directory Color</A> option. In this
+case, the color will be the only indication that the colored name
+refers to a directory. The normal behavior is that Alpine
+indicates that a name refers to a directory by appending a
+separator (like &quot;/&quot; or &quot;.&quot;) to the name of
+the folder.
+
+<P>
+If a folder is a directory, then the folder name will be painted
+according to the color defined by this variable, and a separator
+indicator (like &quot;/&quot; or &quot;.&quot;) will be added
+to the name. That
+indicator will be painted according to the color defined in the
+<A HREF="h_config_directory_color">Directory Color</A> option.
+
+<P>
+&lt;End of help on this topic&gt;
+</BODY>
+</HTML>
+====== h_config_directory_color =====
+<HTML>
+<HEAD>
+<TITLE>OPTION: Directory Color</TITLE>
+</HEAD>
+<BODY>
+<H1>OPTION: Directory Color</H1>
+
+Sets the colors Alpine uses for coloring a directory in the FOLDER LIST
+screen. By default, the Folder Color is the normal text color.
+<P>
+If you set a color for this feature, other than the normal color
+(the default), or a color for
+<A HREF="h_config_folder_color">Folder Color</A>, then folders
+will be colored according to the color specified in the
+<A HREF="h_config_folder_color">Folder Color</A> option. In this
+case, the color will be the only indication that the colored name
+refers to a directory. The normal behavior is that Alpine
+indicates that a name refers to a directory by appending a
+separator (like &quot;/&quot; or &quot;.&quot;) to the name of
+the folder.
+<P>
+If a folder is a directory, then the folder name will be painted
+according to the color defined by the option
+<A HREF="h_config_folder_color">Folder Color</A>, and the separator
+indicator (like &quot;/&quot; or &quot;.&quot;) will be added
+after the name. That
+indicator will be painted according to the color defined in this
+option.
+<P>
+&lt;End of help on this topic&gt;
+</BODY>
+</HTML>
+====== h_config_folder_list_color =====
+<HTML>
+<HEAD>
+<TITLE>OPTION: Folder-List Color</TITLE>
+</HEAD>
+<BODY>
+<H1>OPTION: Folder-List Color</H1>
+
+Sets the colors Alpine uses for coloring normal text in the FOLDER LIST
+screen. By default, the Folder-List Color is the normal text color.
+<P>
+This text refers to the informative text that Alpine displays so you
+can recognize each collection. The color of the content of each collection
+is determined by the options <A HREF="h_config_folder_color">Folder Color</A>
+and <A HREF="h_config_directory_color">Directory Color</A>.
+<P>
+Unlike the options
+<A HREF="h_config_folder_color">Folder Color</A>
+and <A HREF="h_config_directory_color">Directory Color</A>, configuring
+this option does not affect the way that Alpine reports folders,
+directories and folders that are directories.
+<P>
+&lt;End of help on this topic&gt;
+</BODY>
+</HTML>
====== h_config_incunseen_color =====
<HTML>
<HEAD>
@@ -31713,6 +31862,35 @@ to see the available Editing and Navigation commands.
&lt;End of help on this topic&gt;
</BODY>
</HTML>
+====== h_config_indextoken_color =====
+<HTML>
+<HEAD>
+<TITLE>OPTION: <!--#echo var="VAR_index-token-colors"--></TITLE>
+</HEAD>
+<BODY>
+<H1>OPTION: <!--#echo var="VAR_index-token-colors"--></H1>
+
+This option allows you to set up the color in which any token, not specified by the
+previous options, will be colored in the MESSAGE INDEX screen.
+<P>
+In order to use this option, you must press the &quot;I&quot; <B>IndxHdr</B> command, and add
+a token that can be used in the index format.
+The list of available tokens is <A HREF="h_index_tokens">here</A>.
+<P>
+If you fail to enter a valid token your entry will be ignored, and you will be asked to
+enter a new one. Once you have entered a valid token, a line will be added to the
+configuration screen that you can use to set up the colors in which that token will
+be painted. This is done in the same way that you configure colors for other
+variables.
+
+<A HREF="h_color_setup">Descriptions of the available commands</A>
+<P>
+Look <A HREF="h_edit_nav_cmds">here</A>
+to see the available Editing and Navigation commands.
+<P>
+&lt;End of help on this topic&gt;
+</BODY>
+</HTML>
====== h_config_customhdr_pattern =====
<HTML>
<HEAD>
@@ -35324,3 +35502,6 @@ in size will be selected. Examples: 2176, 1.53K (1530), or 3M (3000000).
========== h_select_by_smaller_size ==========
Enter a number or ^C to cancel. All messages less than this many characters
in size will be selected. Examples: 2176, 1.53K (1530), or 3M (3000000).
+========== h_preserve_field ==========
+Use 'p' to toggle between preserving or not preserving the original To:
+and Cc: fields of the message. Enter ^C to cancel message.
diff --git a/pith/reply.c b/pith/reply.c
index 03468af3..3445097f 100644
--- a/pith/reply.c
+++ b/pith/reply.c
@@ -373,20 +373,37 @@ reply_seed(struct pine *ps, ENVELOPE *outgoing, ENVELOPE *env,
/* Put Reply-To or From in To. */
*to_tail = reply_cp_addr(ps, 0, NULL, NULL, outgoing->to,
(ADDRESS *) NULL, saved_from, RCA_ALL);
- /* and the rest in cc */
if(replytoall){
- *cc_tail = reply_cp_addr(ps, 0, NULL, NULL, outgoing->cc,
+ if(ps->preserve){
+ while(*to_tail)
+ to_tail = &(*to_tail)->next;
+
+ *to_tail = reply_cp_addr(ps, 0, NULL, NULL, outgoing->to,
+ (ADDRESS *) NULL, saved_to, RCA_ALL);
+
+ while(*to_tail)
+ to_tail = &(*to_tail)->next;
+
+ *to_tail = reply_cp_addr(ps, 0, NULL, NULL, outgoing->cc,
+ outgoing->to, saved_resent, RCA_ALL);
+
+ *cc_tail = reply_cp_addr(ps, 0, NULL, NULL, outgoing->cc,
+ outgoing->to, saved_cc, RCA_ALL);
+ }
+ else{ /* and the rest in cc */
+ *cc_tail = reply_cp_addr(ps, 0, NULL, NULL, outgoing->cc,
outgoing->to, saved_to, RCA_ALL);
- while(*cc_tail) /* stay on last address */
- cc_tail = &(*cc_tail)->next;
+ while(*cc_tail) /* stay on last address */
+ cc_tail = &(*cc_tail)->next;
- *cc_tail = reply_cp_addr(ps, 0, NULL, NULL, outgoing->cc,
+ *cc_tail = reply_cp_addr(ps, 0, NULL, NULL, outgoing->cc,
outgoing->to, saved_cc, RCA_ALL);
- while(*cc_tail)
- cc_tail = &(*cc_tail)->next;
+ while(*cc_tail)
+ cc_tail = &(*cc_tail)->next;
- *cc_tail = reply_cp_addr(ps, 0, NULL, NULL, outgoing->cc,
+ *cc_tail = reply_cp_addr(ps, 0, NULL, NULL, outgoing->cc,
outgoing->to, saved_resent, RCA_ALL);
+ }
}
}
else if(saved_to){
diff --git a/pith/state.c b/pith/state.c
index e88c27f6..94f95f10 100644
--- a/pith/state.c
+++ b/pith/state.c
@@ -183,6 +183,9 @@ free_pine_struct(struct pine **pps)
if((*pps)->hdr_colors)
free_spec_colors(&(*pps)->hdr_colors);
+ if((*pps)->index_token_colors)
+ free_spec_colors(&(*pps)->index_token_colors);
+
if((*pps)->keywords)
free_keyword_list(&(*pps)->keywords);
diff --git a/pith/state.h b/pith/state.h
index 93db4f4b..47e97ce4 100644
--- a/pith/state.h
+++ b/pith/state.h
@@ -242,6 +242,7 @@ struct pine {
char **feat_list_back_compat;
SPEC_COLOR_S *hdr_colors; /* list of configed colors for view */
+ SPEC_COLOR_S *index_token_colors; /* list of configed colors for index */
short init_context;
@@ -286,6 +287,8 @@ struct pine {
SortOrder def_sort, /* Default sort type */
sort_types[22];
+ int preserve;
+
int last_expire_year, last_expire_month;
int printer_category;
diff --git a/po/Makefile.in b/po/Makefile.in
index 6b6de4d4..9aa7c9f1 100644
--- a/po/Makefile.in
+++ b/po/Makefile.in
@@ -11,8 +11,8 @@
# Origin: gettext-0.16
PACKAGE = alpine
-VERSION = 2.10
-PACKAGE_BUGREPORT = alpine-contact@u.washington.edu
+VERSION = 2.10.9
+PACKAGE_BUGREPORT = chappa@washington.edu
SHELL = /bin/sh