Skip to content

Commit 83bf6f7

Browse files
feat: Wrote DER encoder/decoder makefile and added to the redhat spec
Signed-off-by: ethan-thompson <ethan.thompson@networkradius.com>
1 parent 42c156f commit 83bf6f7

File tree

2 files changed

+16
-0
lines changed

2 files changed

+16
-0
lines changed

redhat/freeradius.spec

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1043,6 +1043,7 @@ fi
10431043
%{_libdir}/freeradius/libfreeradius-arp.so
10441044
%{_libdir}/freeradius/libfreeradius-bfd.so
10451045
%{_libdir}/freeradius/libfreeradius-cbor.so
1046+
%{_libdir}/freeradius/libfreeradius-der.so
10461047
%{_libdir}/freeradius/libfreeradius-dhcpv4.so
10471048
%{_libdir}/freeradius/libfreeradius-dhcpv6.so
10481049
%{_libdir}/freeradius/libfreeradius-dns.so

src/protocols/der/all.mk

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
#
2+
# Makefile
3+
#
4+
# Version: $Id$
5+
#
6+
TARGET := libfreeradius-der$(L)
7+
8+
SOURCES := base.c \
9+
decode.c \
10+
encode.c
11+
12+
SRC_CFLAGS := -I$(top_builddir)/src -DNO_ASSERT
13+
TGT_LDLIBS := $(PCAP_LIBS)
14+
TGT_LDFLAGS := $(PCAP_LDFLAGS)
15+
TGT_PREREQS := libfreeradius-util$(L)

0 commit comments

Comments
 (0)