From 5e558e9016b6c5ffc7f9ddd49292c6b6f70e2f5a Mon Sep 17 00:00:00 2001 From: Richard Fuchs Date: Mon, 12 Nov 2018 19:19:31 -0500 Subject: [PATCH] fix test suite compilation after 590b752b Change-Id: Ibcba457a1e31c1523b417a9492e581e0b5cedbbb --- t/aes-crypt.c | 3 +++ t/payload-tracker-test.c | 4 ++++ 2 files changed, 7 insertions(+) diff --git a/t/aes-crypt.c b/t/aes-crypt.c index 6e72b2bcb..0f536fa1e 100644 --- a/t/aes-crypt.c +++ b/t/aes-crypt.c @@ -4,6 +4,9 @@ #include "crypto.h" #include "rtplib.h" #include "log.h" +#include "main.h" + +struct rtpengine_config rtpe_config; uint8_t test_key[46] = { 0xe1, 0xf9, 0x7a, 0x0d, 0x3e, 0x01, 0x8b, 0xe0, diff --git a/t/payload-tracker-test.c b/t/payload-tracker-test.c index 59188a44c..1763f7c65 100644 --- a/t/payload-tracker-test.c +++ b/t/payload-tracker-test.c @@ -2,6 +2,10 @@ #include #include #include "ssrc.h" +#include "main.h" + +struct rtpengine_config rtpe_config; + static void most_cmp(struct payload_tracker *t, const char *cmp, const char *file, int line) {