mirror of
https://github.com/opnsense/src.git
synced 2026-06-04 06:15:33 -04:00
lib: hook libder up to the build
libder will be used in upcoming ECC support in the pkg(7) bootstrap to read DER-encoded keys and signatures. Differential Revision: https://reviews.freebsd.org/D48116
This commit is contained in:
parent
35c0a8c449
commit
f59bb61e1e
3 changed files with 18 additions and 0 deletions
|
|
@ -15,6 +15,7 @@ SUBDIR_BOOTSTRAP= \
|
|||
libc++ \
|
||||
libc++experimental \
|
||||
libcxxrt \
|
||||
libder \
|
||||
libdiff \
|
||||
libelf \
|
||||
libssp \
|
||||
|
|
|
|||
13
lib/libder/Makefile
Normal file
13
lib/libder/Makefile
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
|
||||
LIB= der
|
||||
INTERNALLIB=
|
||||
|
||||
.PATH: ${SRCTOP}/contrib/libder/libder
|
||||
SRCS+= libder.c \
|
||||
libder_error.c \
|
||||
libder_obj.c \
|
||||
libder_read.c \
|
||||
libder_type.c \
|
||||
libder_write.c
|
||||
|
||||
.include <bsd.lib.mk>
|
||||
|
|
@ -44,6 +44,7 @@ _INTERNALLIBS= \
|
|||
bsnmptools \
|
||||
c_nossp_pic \
|
||||
cron \
|
||||
der \
|
||||
diff \
|
||||
elftc \
|
||||
fdt \
|
||||
|
|
@ -614,6 +615,9 @@ LIBTELNET?= ${LIBTELNETDIR}/libtelnet${PIE_SUFFIX}.a
|
|||
LIBCRONDIR= ${_LIB_OBJTOP}/usr.sbin/cron/lib
|
||||
LIBCRON?= ${LIBCRONDIR}/libcron${PIE_SUFFIX}.a
|
||||
|
||||
LIBDERDIR= ${_LIB_OBJTOP}/lib/libder
|
||||
LIBDER?= ${LIBDERDIR}/libder${PIE_SUFFIX}.a
|
||||
|
||||
LIBNTPDIR= ${_LIB_OBJTOP}/usr.sbin/ntp/libntp
|
||||
LIBNTP?= ${LIBNTPDIR}/libntp${PIE_SUFFIX}.a
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue