2002xxxx
+ - updated autoconf/automake
- updated man page
- pine import filter update
- - updated autoconf/automake
20021008
- options.c rewritten (new mutt style rc file support)
To compile abook you must have ncurses developement libraries installed.
Starting from version 0.4.10 abook is known to compile with the native curses
-library of SUN Solaris and OpenBSD.
+library of SUN Solaris and OpenBSD. Since version 0.5.0 GNU readline is
+required.
If you compile with --enable-debug flag you should redirect standard error
to somewhere. (for example abook 2> debug or abook 2> /dev/null. Abook has
CONTACT AUTHOR
Send bugreports, fixes, wishes etc. to Jaakko Heinonen
-<jheinonen@users.sourceforge.net> or preferably use the mailing list. (See
-http://abook.sourceforge.net/ for details)
+<jheinonen@users.sourceforge.net>
};
static unsigned char bool_opts[BOOL_MAX];
-static int int_opts[INT_MAX];
+static int int_opts[INT_MAXIMUM];
static char *str_opts[STR_MAX];
static void
set_int(enum int_opts opt, int value)
{
- assert(opt >= 0 && opt < INT_MAX);
+ assert(opt >= 0 && opt < INT_MAXIMUM);
int_opts[opt] = value;
}
int
opt_get_int(enum int_opts opt)
{
- assert(opt >= 0 && opt < INT_MAX);
+ assert(opt >= 0 && opt < INT_MAXIMUM);
return int_opts[opt];
}
enum int_opts {
INT_EMAILPOS,
INT_EXTRAPOS,
- INT_MAX
+ INT_MAXIMUM /* INT_MAX conflicts on some systems */
};
/*