mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-02 11:06:31 +00:00
The current STIR/SHAKEN implementation is not currently usable due to encryption issues. Rather than trying to futz with OpenSSL and the the current code, we can take advantage of the existing capabilities of libjwt but we first need to add it to the third-party infrastructure already in place for jansson and pjproject. A few tweaks were also made to the third-party infrastructure as a whole. The jansson "dest" install directory was renamed "dist" to better match convention, and the third-party Makefile was updated to clean all product directories not just the ones currently in use. Resolves: #349
10 lines
457 B
Makefile
10 lines
457 B
Makefile
|
|
PACKAGE_URL ?= https://raw.githubusercontent.com/asterisk/third-party/master/libjwt/$(LIBJWT_VERSION)
|
|
TARBALL_FILE = libjwt-$(LIBJWT_VERSION).tar.gz
|
|
|
|
# LIBJWT_CONFIGURE_OPTS could come from the command line or could be
|
|
# set/modified by configure.m4 if the build or host tuples aren't the same
|
|
# as the current build environment (cross-compile).
|
|
|
|
LIBJWT_CONFIG_OPTS = --disable-doxygen-doc --disable-doxygen-dot --without-examples $(LIBJWT_CONFIGURE_OPTS)
|