+2005-09-13 Erez Zadok <ezk@cs.sunysb.edu>
+
+ * amd/sun_map.c (sun_entry2amd): isspace takes an int, not a char.
+
+ * configure.in: keep a dummy unused AM_PROG_LEX, because old
+ Automake (1.6.3) looks for it if you refer to LEX in your
+ Makefile.am files. Silly thing, fixed in newer versions of
+ Automake (1.9.2).
+
2005-09-11 Erez Zadok <ezk@cs.sunysb.edu>
* Makefile.am (EXTRA_DIST_M4): add prog_{lex,yacc}.m4 to distro.
/* Make sure there are no trailing white spaces or '\n'. */
xstrlcpy(line_buff, s_entry_str, sizeof(line_buff));
ws = strlen(line_buff) - 1;
- while (ws >= 0 && (isspace(line_buff[ws]) || line_buff[ws] == '\n')) {
+ while (ws >= 0 && (isspace((int)line_buff[ws]) || line_buff[ws] == '\n')) {
line_buff[ws--] = '\0';
}
dnl
dnl AC_CONFIG_AUX_DIR(m4)
AC_PREREQ(2.52)
-AC_REVISION($Revision: 1.113 $)
+AC_REVISION($Revision: 1.114 $)
AC_COPYRIGHT([Copyright (c) 1997-2005 Erez Zadok])
dnl find out system type
AC_MSG_NOTICE(*** SYSTEM TYPES ***)
dnl AC_PROG_RANLIB
dnl AC_PROG_YACC
AMU_PROG_YACC
-dnl AM_PROG_LEX
AMU_PROG_LEX
+dnl I have to keep a unused dummy AM_PROG_LEX here, because old Automake
+dnl (1.6.3) looks for it if you refer to LEX in your Makefile.am files.
+dnl Silly thing, fixed in newer versions of Automake (1.9.2).
+if test 0 != 0 ; then
+AM_PROG_LEX
+fi
dnl ======================================================================
dnl Generic Program Checks