commit 731e443dce0f170b555e9d3e4b79e32caae59ffb
parent 4ab90069c9a94129cf6bc583687d817cebe8d1f3
Author: TheJackiMonster <thejackimonster@gmail.com>
Date: Sun, 30 Oct 2022 00:30:31 +0200
Fix make dist target
Signed-off-by: TheJackiMonster <thejackimonster@gmail.com>
Diffstat:
3 files changed, 13 insertions(+), 0 deletions(-)
diff --git a/src/Makefile.am b/src/Makefile.am
@@ -1,6 +1,14 @@
# This Makefile.am is in the public domain
AM_CFLAGS = -I$(top_srcdir)/include/gnunet
+EXTRA_DIST = \
+ gnunet_chat_contact_intern.c \
+ gnunet_chat_context_intern.c \
+ gnunet_chat_group_intern.c \
+ gnunet_chat_handle_intern.c \
+ gnunet_chat_lib_intern.c \
+ gnunet_chat_lobby_intern.c
+
lib_LTLIBRARIES = libgnunetchat.la
libgnunetchat_la_SOURCES = \
diff --git a/src/gnunet_chat_lib_intern.c b/src/gnunet_chat_lib_intern.c
@@ -22,6 +22,8 @@
* @file gnunet_chat_lib_intern.c
*/
+#include <stdlib.h>
+
#define GNUNET_UNUSED __attribute__ ((unused))
void
diff --git a/tests/Makefile.am b/tests/Makefile.am
@@ -2,6 +2,9 @@
AM_CFLAGS = -I$(top_srcdir)/include
AM_LDFLAGS = -L$(top_srcdir)
+EXTRA_DIST = \
+ test_gnunet_chat.h
+
check_PROGRAMS = \
test_gnunet_chat_handle.test \
test_gnunet_chat_lobby.test \