Import of pkgsrc-2014Q1

This commit is contained in:
2014-11-05 12:41:07 +01:00
parent 785076ae39
commit 9a8c06dafb
19365 changed files with 828089 additions and 278039 deletions
@@ -0,0 +1,13 @@
$NetBSD: patch-src_rpsl_Makefile.in,v 1.1 2013/08/31 08:44:49 joerg Exp $
--- src/rpsl/Makefile.in.orig 2013-08-30 22:54:56.000000000 +0000
+++ src/rpsl/Makefile.in
@@ -37,6 +37,8 @@
#
# Author(s): Nick Hilliard <nick@foobar.org>
+object.cc: rpsl.y.cc
+
VPATH = @srcdir@
am__make_dryrun = \
{ \
@@ -0,0 +1,26 @@
$NetBSD: patch-src_rpsl_object.cc,v 1.1 2013/08/31 08:44:49 joerg Exp $
--- src/rpsl/object.cc.orig 2013-08-30 22:49:31.000000000 +0000
+++ src/rpsl/object.cc
@@ -53,11 +53,11 @@
#include <iomanip>
#include "object.hh"
+#include "rpsl.y.hh"
#include "schema.hh"
using namespace std;
-extern int rpslparse(void *);
extern void rpsl_scan_object(Object *);
Object::~Object() {
@@ -128,7 +128,7 @@ bool Object::read(Buffer &buf, istream &
void Object::parse() {
rpsl_scan_object(this);
- rpslparse(this);
+ rpslparse();
validate();
if (type) {