forked from Mirror/frr
Protobuf: Update library name to reflect name change to FRR
Signed-off-by: Martin Winter <mwinter@opensourcerouting.org>
This commit is contained in:
parent
63a79ae1c2
commit
fc5300bdbc
|
@ -30,9 +30,9 @@ Q_PROTOBUF_SRCS = $(Q_PROTOBUF_CFILES) $(Q_PROTOBUF_HFILES)
|
||||||
#
|
#
|
||||||
# Information about how to link to various libraries.
|
# 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
|
endif # HAVE_PROTOBUF
|
||||||
|
|
||||||
|
|
|
@ -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_INCLUDES=-I$(top_srcdir)
|
||||||
PROTOBUF_PACKAGE = qpb
|
PROTOBUF_PACKAGE = qpb
|
||||||
|
|
||||||
lib_LTLIBRARIES = libquagga_pb.la
|
lib_LTLIBRARIES = libfrr_pb.la
|
||||||
libquagga_pb_la_LDFLAGS = -version-info 0:0:0
|
libfrr_pb_la_LDFLAGS = -version-info 0:0:0
|
||||||
|
|
||||||
if HAVE_PROTOBUF
|
if HAVE_PROTOBUF
|
||||||
protobuf_srcs = \
|
protobuf_srcs = \
|
||||||
|
@ -16,14 +16,14 @@ protobuf_srcs_nodist = \
|
||||||
qpb.pb-c.c
|
qpb.pb-c.c
|
||||||
endif
|
endif
|
||||||
|
|
||||||
libquagga_pb_la_SOURCES = \
|
libfrr_pb_la_SOURCES = \
|
||||||
linear_allocator.h \
|
linear_allocator.h \
|
||||||
qpb.h \
|
qpb.h \
|
||||||
qpb.c \
|
qpb.c \
|
||||||
qpb_allocator.h \
|
qpb_allocator.h \
|
||||||
$(protobuf_srcs)
|
$(protobuf_srcs)
|
||||||
|
|
||||||
nodist_libquagga_pb_la_SOURCES = $(protobuf_srcs_nodist)
|
nodist_libfrr_pb_la_SOURCES = $(protobuf_srcs_nodist)
|
||||||
|
|
||||||
CLEANFILES = $(Q_CLEANFILES)
|
CLEANFILES = $(Q_CLEANFILES)
|
||||||
BUILT_SOURCES = $(Q_PROTOBUF_SRCS)
|
BUILT_SOURCES = $(Q_PROTOBUF_SRCS)
|
||||||
|
|
|
@ -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.
|
||||||
|
|
|
@ -21,7 +21,7 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Protobuf definitions pertaining to the Quagga Protobuf component.
|
* Protobuf definitions pertaining to the Quagga/FRR Protobuf component.
|
||||||
*/
|
*/
|
||||||
package qpb;
|
package qpb;
|
||||||
|
|
||||||
|
|
|
@ -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_
|
#ifndef _QPB_ALLOCATOR_H_
|
||||||
|
|
Loading…
Reference in a new issue