From 44eb7a473b492e0dd855fa4de5381ba8526f69f8 Mon Sep 17 00:00:00 2001 From: Martin Braun Date: Tue, 28 Sep 2021 16:03:52 +0200 Subject: dissectors: Fix inclusion of glib.h and Python version Previously, we were doing this: ```cpp extern "C" { } ``` This is not how glib.h is supposed to be included, according to their documentation. It turns out that it happened to work for a long time, and lots of projects include glib.h that way, and the glib devs are trying to accommodate for those cases. How nice of them! However, on Fedora 34, we have a version of glib which does not have a workaround patch, so we include glib.h the it should be. The second issue was that a build script required the existence of a `python` executable, which is not always available. A `python3` executable can be assumed, since that's a dependency for UHD, too. --- tools/dissectors/epan/zpu/packet-zpu.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tools/dissectors/epan/zpu') diff --git a/tools/dissectors/epan/zpu/packet-zpu.c b/tools/dissectors/epan/zpu/packet-zpu.c index 3eff36997..dcbc1923c 100644 --- a/tools/dissectors/epan/zpu/packet-zpu.c +++ b/tools/dissectors/epan/zpu/packet-zpu.c @@ -18,6 +18,7 @@ * uint32_t data; */ +#include #ifdef __cplusplus extern "C" { #endif @@ -26,7 +27,6 @@ extern "C" { #include "config.h" #endif -#include #include #ifdef __cplusplus -- cgit v1.2.3