From 454ee03a0c8bdcb86d84631ceb3551c8865467c3 Mon Sep 17 00:00:00 2001 From: George Joseph Date: Tue, 17 Sep 2024 10:03:59 -0600 Subject: [PATCH] res_stir_shaken: Remove stale include for jansson.h in verification.c verification.c had an include for jansson.h left over from previous versions of the module. Since res_stir_shaken no longer has a dependency on jansson, the bundled version wasn't added to GCC's include path so if you didn't also have a jansson development package installed, the compile would fail. Removing the stale include was the only thing needed. Resolves: #889 --- res/res_stir_shaken/verification.c | 1 - 1 file changed, 1 deletion(-) diff --git a/res/res_stir_shaken/verification.c b/res/res_stir_shaken/verification.c index 566815660a..6e8366585c 100644 --- a/res/res_stir_shaken/verification.c +++ b/res/res_stir_shaken/verification.c @@ -19,7 +19,6 @@ #include #include -#include #include #include "asterisk.h"