summaryrefslogtreecommitdiff
path: root/qpb
diff options
context:
space:
mode:
authorMartin Winter <mwinter@opensourcerouting.org>2017-01-20 02:58:55 +0700
committerMartin Winter <mwinter@opensourcerouting.org>2017-01-20 02:59:10 +0700
commitfc5300bdbc9dba3221ad8f1e3d1beeb99a94bed6 (patch)
tree48d68698db6994e8a86c499aee46075d664f50f1 /qpb
parent63a79ae1c223ad01d29a19c093da564952904f5b (diff)
Protobuf: Update library name to reflect name change to FRR
Signed-off-by: Martin Winter <mwinter@opensourcerouting.org>
Diffstat (limited to 'qpb')
-rw-r--r--qpb/Makefile.am8
-rw-r--r--qpb/README.txt2
-rw-r--r--qpb/qpb.proto2
-rw-r--r--qpb/qpb_allocator.h2
4 files changed, 7 insertions, 7 deletions
diff --git a/qpb/Makefile.am b/qpb/Makefile.am
index 0fbda61f3c..e5951b2be9 100644
--- a/qpb/Makefile.am
+++ b/qpb/Makefile.am
@@ -5,8 +5,8 @@ AM_CPPFLAGS = -I.. -I$(top_srcdir) -I$(top_srcdir)/lib -I$(top_builddir)/lib $(Q
PROTOBUF_INCLUDES=-I$(top_srcdir)
PROTOBUF_PACKAGE = qpb
-lib_LTLIBRARIES = libquagga_pb.la
-libquagga_pb_la_LDFLAGS = -version-info 0:0:0
+lib_LTLIBRARIES = libfrr_pb.la
+libfrr_pb_la_LDFLAGS = -version-info 0:0:0
if HAVE_PROTOBUF
protobuf_srcs = \
@@ -16,14 +16,14 @@ protobuf_srcs_nodist = \
qpb.pb-c.c
endif
-libquagga_pb_la_SOURCES = \
+libfrr_pb_la_SOURCES = \
linear_allocator.h \
qpb.h \
qpb.c \
qpb_allocator.h \
$(protobuf_srcs)
-nodist_libquagga_pb_la_SOURCES = $(protobuf_srcs_nodist)
+nodist_libfrr_pb_la_SOURCES = $(protobuf_srcs_nodist)
CLEANFILES = $(Q_CLEANFILES)
BUILT_SOURCES = $(Q_PROTOBUF_SRCS)
diff --git a/qpb/README.txt b/qpb/README.txt
index 99ccd05511..7a09452c6f 100644
--- a/qpb/README.txt
+++ b/qpb/README.txt
@@ -1 +1 @@
-Protobuf definitions and code that is applicable to all of quagga.
+Protobuf definitions and code that is applicable to all of Quagga/FRR.
diff --git a/qpb/qpb.proto b/qpb/qpb.proto
index 8323d3ed73..a1595a9abd 100644
--- a/qpb/qpb.proto
+++ b/qpb/qpb.proto
@@ -21,7 +21,7 @@
*/
/*
- * Protobuf definitions pertaining to the Quagga Protobuf component.
+ * Protobuf definitions pertaining to the Quagga/FRR Protobuf component.
*/
package qpb;
diff --git a/qpb/qpb_allocator.h b/qpb/qpb_allocator.h
index 83ddf56cbc..bb7dcf38f3 100644
--- a/qpb/qpb_allocator.h
+++ b/qpb/qpb_allocator.h
@@ -24,7 +24,7 @@
*/
/*
- * Header file for quagga protobuf memory management code.
+ * Header file for Quagga/FRR protobuf memory management code.
*/
#ifndef _QPB_ALLOCATOR_H_