Import of pkgsrc-2015Q1

This commit is contained in:
2016-01-21 23:40:00 +01:00
committed by sambuc
parent 9a8c06dafb
commit 4af1cdf7a9
25114 changed files with 870539 additions and 795424 deletions
+4 -5
View File
@@ -1,4 +1,4 @@
# $NetBSD: Makefile,v 1.29 2014/02/12 23:18:27 tron Exp $
# $NetBSD: Makefile,v 1.31 2015/03/15 14:52:05 tnn Exp $
#
DISTNAME= xorp-1.6
@@ -29,11 +29,10 @@ pre-build:
cd ${WRKSRC}/policy/test && ${MAKE} lex
cd ${WRKSRC}/rtrmgr && ${MAKE} lex
.include "../../mk/compiler.mk"
.if !empty(PKGSRC_COMPILER:Mclang)
# This used to be set for clang only, but it's needed for gcc as well
# these days. See PR 36974; also there are other warnings with gcc48.
BUILDLINK_TRANSFORM+= rm:-Werror
.endif
.include "../../security/openssl/buildlink3.mk"
.include "../../mk/curses.buildlink3.mk"
.include "../../mk/bsd.pkg.mk"
+3 -3
View File
@@ -1,4 +1,4 @@
$NetBSD: distinfo,v 1.22 2013/08/30 22:40:00 joerg 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
@@ -58,11 +58,11 @@ SHA1 (patch-pim_pim__bsr.hh) = a8876be2bcaac8c026dda04cd599175f5965b205
SHA1 (patch-pim_pim__mre__track__state.hh) = b470edf7c14a88d1f7fe4d7fa025c338b5012fae
SHA1 (patch-pim_pim__scope__zone__table.hh) = fabc82917d4fb88c27a47409957632bfb9172d3b
SHA1 (patch-pim_pim__vif.cc) = 922e9b502e8e0622efb1d63621aeec3ab2265549
SHA1 (patch-policy_backend_backend.l) = 81491356406cc15b73233aa1eba78c51df41e4db
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
@@ -1,4 +1,7 @@
$NetBSD: patch-policy_backend_backend.l,v 1.1 2012/07/03 17:36:10 joerg Exp $
$NetBSD: patch-policy_backend_backend.l,v 1.2 2014/06/28 20:19:41 dholland Exp $
- turn on no input because ... (XXX why?)
- add cast to work with more lex versions
--- policy/backend/backend.l.orig 2008-08-06 08:24:59.000000000 +0000
+++ policy/backend/backend.l
@@ -10,3 +13,12 @@ $NetBSD: patch-policy_backend_backend.l,v 1.1 2012/07/03 17:36:10 joerg Exp $
%option prefix="yy_policy_backend_parser"
%option outfile="lex.yy_policy_backend_parser.cc"
%option never-interactive
@@ -100,7 +101,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;
+13 -1
View File
@@ -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;