Import of pkgsrc-2014Q1
This commit is contained in:
@@ -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) {
|
||||
Reference in New Issue
Block a user