messenger-gtk

Gtk+3 graphical user interfaces for GNUnet Messenger
Log | Files | Refs | Submodules | README | LICENSE

commit 3a3de6edf7493891fc12b93ee1063b6f40ac0f95
parent cd897fa3d2c6bdd3658e8d11f24db136affa909d
Author: Jacki <jacki@thejackimonster.de>
Date:   Tue,  7 Jan 2025 05:48:41 +0100

Fix build issues from changes in gnunet 0.23.0

Signed-off-by: Jacki <jacki@thejackimonster.de>

Diffstat:
Msrc/application.c | 5+++++
1 file changed, 5 insertions(+), 0 deletions(-)

diff --git a/src/application.c b/src/application.c @@ -29,6 +29,7 @@ #include <glib-2.0/glib.h> #include <gnunet/gnunet_common.h> #include <gnunet/gnunet_chat_lib.h> +#include <gnunet/gnunet_configuration_lib.h> #include <gstreamer-1.0/gst/gst.h> #include <gtk-3.0/gtk/gtk.h> #include <libhandy-1/handy.h> @@ -317,6 +318,9 @@ _application_chat_thread(void *args) MESSENGER_Application *app = (MESSENGER_Application*) args; + const struct GNUNET_OS_ProjectData *data = + GNUNET_OS_project_data_gnunet(); + struct GNUNET_GETOPT_CommandLineOption options[] = { GNUNET_GETOPT_option_string ( 'e', @@ -329,6 +333,7 @@ _application_chat_thread(void *args) }; app->chat.status = (GNUNET_PROGRAM_run( + data, app->argc, app->argv, MESSENGER_APPLICATION_BINARY,