Protobuf: Update library name to reflect name change to FRR

Signed-off-by: Martin Winter <mwinter@opensourcerouting.org>
This commit is contained in:
Martin Winter 2017-01-20 02:58:55 +07:00
parent 63a79ae1c2
commit fc5300bdbc
5 changed files with 9 additions and 9 deletions

View File

@ -30,9 +30,9 @@ Q_PROTOBUF_SRCS = $(Q_PROTOBUF_CFILES) $(Q_PROTOBUF_HFILES)
#
# Information about how to link to various libraries.
#
Q_QUAGGA_PB_CLIENT_LDOPTS = $(top_srcdir)/qpb/libquagga_pb.la $(Q_PROTOBUF_C_CLIENT_LDOPTS)
Q_FRR_PB_CLIENT_LDOPTS = $(top_srcdir)/qpb/libfrr_pb.la $(Q_PROTOBUF_C_CLIENT_LDOPTS)
Q_FPM_PB_CLIENT_LDOPTS = $(top_srcdir)/fpm/libfpm_pb.la $(Q_QUAGGA_PB_CLIENT_LDOPTS)
Q_FPM_PB_CLIENT_LDOPTS = $(top_srcdir)/fpm/libfpm_pb.la $(Q_FRR_PB_CLIENT_LDOPTS)
endif # HAVE_PROTOBUF

View File

@ -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)

View File

@ -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.

View File

@ -21,7 +21,7 @@
*/
/*
* Protobuf definitions pertaining to the Quagga Protobuf component.
* Protobuf definitions pertaining to the Quagga/FRR Protobuf component.
*/
package qpb;

View File

@ -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_