diff options
author | dholland <dholland@pkgsrc.org> | 2014-06-28 23:40:12 +0000 |
---|---|---|
committer | dholland <dholland@pkgsrc.org> | 2014-06-28 23:40:12 +0000 |
commit | 7d5b4a2adf2526d646c26c322718725704156f4d (patch) | |
tree | 5c2f69aff4b973c739bd34de39fc5482675c220c /net/xorp | |
parent | 5f17150fd32ff434d2fa3845ac50d9d410c6fff2 (diff) | |
download | pkgsrc-7d5b4a2adf2526d646c26c322718725704156f4d.tar.gz |
work with more lex versions (fixes build failure seen with -current)
(lather, rinse, repeat)
Diffstat (limited to 'net/xorp')
-rw-r--r-- | net/xorp/distinfo | 4 | ||||
-rw-r--r-- | net/xorp/patches/patch-policy_policy.l | 14 |
2 files changed, 15 insertions, 3 deletions
diff --git a/net/xorp/distinfo b/net/xorp/distinfo index 7dd39e0d71e..33f39d53b59 100644 --- a/net/xorp/distinfo +++ b/net/xorp/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.23 2014/06/28 20:19:41 dholland Exp $ +$NetBSD: distinfo,v 1.24 2014/06/28 23:40:12 dholland Exp $ SHA1 (xorp-1.6.tar.gz) = 366d32068ed76b8ec69958b601d4fbde61ef4cbb RMD160 (xorp-1.6.tar.gz) = 32b3f6d03defc816ed983088e61b5e808de17f98 @@ -62,7 +62,7 @@ SHA1 (patch-policy_backend_backend.l) = 07bc0c71dafa4e3fd91e8825a3322342b60f20a7 SHA1 (patch-policy_backend_iv__exec.cc) = de92d8103c6921c6c530539aa2d3e6526bd222e2 SHA1 (patch-policy_backend_policytags.hh) = 22f31e64c162435be5de5885c56292cca5395fe9 SHA1 (patch-policy_backend_single__varrw.cc) = 84fc7c9ffdb79401fc469b46fa24f9e418d8b278 -SHA1 (patch-policy_policy.l) = 9bec462ff62794ac9154d3ed66637109dcd0e84c +SHA1 (patch-policy_policy.l) = 7344e2152bb9325ed843edc1a98097f5bd6ba7e7 SHA1 (patch-policy_test_compilepolicy.l) = 7c2985af63524c669d9bb3781457c8cc53359903 SHA1 (patch-rib_redist__xrl.cc) = ae886ad350b9e9e779bf8220be4e262df8c673a9 SHA1 (patch-rib_rt__tab__deletion.cc) = 77c5a30bb02ac84aa8669cce948fa5a4f6d067e9 diff --git a/net/xorp/patches/patch-policy_policy.l b/net/xorp/patches/patch-policy_policy.l index 224291f559b..aeba4a82af4 100644 --- a/net/xorp/patches/patch-policy_policy.l +++ b/net/xorp/patches/patch-policy_policy.l @@ -1,4 +1,7 @@ -$NetBSD: patch-policy_policy.l,v 1.1 2012/07/03 17:36:10 joerg Exp $ +$NetBSD: patch-policy_policy.l,v 1.2 2014/06/28 23:40:12 dholland Exp $ + +- turn on no input because ... (XXX why?) +- add cast to work with more lex versions --- policy/policy.l.orig 2008-08-06 08:25:49.000000000 +0000 +++ policy/policy.l @@ -10,3 +13,12 @@ $NetBSD: patch-policy_policy.l,v 1.1 2012/07/03 17:36:10 joerg Exp $ %option never-interactive %x STR +@@ -193,7 +194,7 @@ void yyerror(const char *m) + ostringstream oss; + oss << "Error on line " << _parser_lineno << " near ("; + +- for(int i = 0; i < yyleng; i++) ++ for(int i = 0; i < (int)yyleng; i++) + oss << yytext[i]; + oss << "): " << m; + |