Check-in Number:
|
3064 | |
Date: |
2003-Jan-06 12:19:45 (local)
2003-Jan-06 11:19:45 (UTC) |
User: | rse |
Branch: | |
Comment: |
upgrade to the latest Flex & Bison & Autoconf combo |
Tickets: |
|
Inspections: |
|
Files: |
|
ossp-pkg/l2/configure.ac 1.25 -> 1.26
--- configure.ac 2002/11/09 14:37:45 1.25
+++ configure.ac 2003/01/06 11:19:45 1.26
@@ -44,7 +44,7 @@
AC_CHECK_MAINTAINER
AC_CONFIGURE_LIBTOOL
-AC_CHECK_BISON(BISON, 1.75, [1.7[[5-9]]|1.[[8-9]][[0-9]]])
+AC_CHECK_BISON(BISON, 1.875, [1.[[8-9]][[0-9]]|1.[[8-9]][[0-9]][[0-9]]])
AC_CHECK_FLEX(FLEX, 2.5.10, [2.5.1[[0-9]]|2.5.[[2-9]][[0-9]]|2.[[6-9]].*])
AC_CHECK_LIB(nsl, gethostname)
|
|
ossp-pkg/l2/devtool.conf 1.8 -> 1.9
--- devtool.conf 2002/11/09 14:37:45 1.8
+++ devtool.conf 2003/01/06 11:19:45 1.9
@@ -5,7 +5,7 @@
%autogen
@autogen shtool 1.6.2 "1.6.*" all
@autogen libtool 1.4.3 "1.4*"
- @autogen autoconf 2.54 "2.5[4-9]*"
+ @autogen autoconf 2.57 "2.5[6-9]*"
%autoclean
@autoclean shtool
|
|
ossp-pkg/l2/l2_spec_parse.y 1.8 -> 1.9
--- l2_spec_parse.y 2002/07/30 19:08:25 1.8
+++ l2_spec_parse.y 2003/01/06 11:19:45 1.9
@@ -27,7 +27,7 @@
**
** l2_spec_parse.y: GNU Bison (Yacc-style) parser specification
**
-** ATTENTION: This requires GNU Bison 1.30 or newer!
+** ATTENTION: This requires GNU Bison 1.875 or newer!
*/
#include "l2.h" /* for l2_xxx() API */
@@ -49,7 +49,6 @@
#undef yyerror
#define yyerror(msg) \
l2_spec_error(CTX, L2_ERR_SYN, &yylloc, msg)
-#define YYERROR_VERBOSE
/* scanner state transition */
extern void l2_spec_scan_push(l2_spec_ctx_t *, const char *state);
@@ -57,6 +56,7 @@
%}
/* parser options */
+%error-verbose
%pure_parser
%locations
%defines
|
|
ossp-pkg/l2/l2_spec_scan.l 1.10 -> 1.11
--- l2_spec_scan.l 2002/11/09 14:37:45 1.10
+++ l2_spec_scan.l 2003/01/06 11:19:45 1.11
@@ -27,7 +27,7 @@
**
** l2_spec_scan.l: GNU Flex (Lex-style) scanner specification
**
-** ATTENTION: This requires GNU Flex 2.5.6-dev-2001.11.01 or newer!
+** ATTENTION: This requires GNU Flex 2.5.10 or newer!
*/
#include "l2.h" /* for l2_xxx() */
|
|