aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTheJackiMonster <thejackimonster@gmail.com>2023-02-03 22:41:37 +0100
committerTheJackiMonster <thejackimonster@gmail.com>2023-02-03 22:41:37 +0100
commita7cae3bf498397d1514aeeb6c3d0d48037385132 (patch)
treefce03a39658c4250d5c162492724fbf12fb78867
parent9aff43ff3b692f9fd15ae1f29e6522b5a4ee7642 (diff)
downloadmessenger-cli-a7cae3bf498397d1514aeeb6c3d0d48037385132.tar.gz
messenger-cli-a7cae3bf498397d1514aeeb6c3d0d48037385132.zip
Use meson as build system
Signed-off-by: TheJackiMonster <thejackimonster@gmail.com>
-rw-r--r--.gitignore1
-rw-r--r--INSTALL368
-rw-r--r--NEWS1
-rw-r--r--README.md20
-rwxr-xr-xbootstrap2
-rw-r--r--configure.ac67
-rw-r--r--meson.build44
-rw-r--r--src/application.c4
-rw-r--r--src/application.h3
-rw-r--r--src/chat.h3
-rw-r--r--src/meson.build28
-rw-r--r--src/ui/account_create_dialog.c4
-rw-r--r--src/ui/accounts.h3
-rw-r--r--src/ui/chat_open_dialog.c4
-rw-r--r--src/ui/chats.h3
-rw-r--r--src/ui/lobby_create_dialog.h3
-rw-r--r--src/ui/lobby_enter_dialog.c4
-rw-r--r--src/ui/members.h3
-rw-r--r--src/ui/meson.build33
-rw-r--r--src/ui/messages.h5
20 files changed, 131 insertions, 472 deletions
diff --git a/.gitignore b/.gitignore
index 2985721..dfa68b4 100644
--- a/.gitignore
+++ b/.gitignore
@@ -19,6 +19,7 @@ Makefile
19.cproject 19.cproject
20.project 20.project
21.settings/ 21.settings/
22.cache/
22 23
23# Binary files: 24# Binary files:
24*.o 25*.o
diff --git a/INSTALL b/INSTALL
deleted file mode 100644
index e82fd21..0000000
--- a/INSTALL
+++ /dev/null
@@ -1,368 +0,0 @@
1Installation Instructions
2*************************
3
4 Copyright (C) 1994-1996, 1999-2002, 2004-2017, 2020-2021 Free
5Software Foundation, Inc.
6
7 Copying and distribution of this file, with or without modification,
8are permitted in any medium without royalty provided the copyright
9notice and this notice are preserved. This file is offered as-is,
10without warranty of any kind.
11
12Basic Installation
13==================
14
15 Briefly, the shell command './configure && make && make install'
16should configure, build, and install this package. The following
17more-detailed instructions are generic; see the 'README' file for
18instructions specific to this package. Some packages provide this
19'INSTALL' file but do not implement all of the features documented
20below. The lack of an optional feature in a given package is not
21necessarily a bug. More recommendations for GNU packages can be found
22in *note Makefile Conventions: (standards)Makefile Conventions.
23
24 The 'configure' shell script attempts to guess correct values for
25various system-dependent variables used during compilation. It uses
26those values to create a 'Makefile' in each directory of the package.
27It may also create one or more '.h' files containing system-dependent
28definitions. Finally, it creates a shell script 'config.status' that
29you can run in the future to recreate the current configuration, and a
30file 'config.log' containing compiler output (useful mainly for
31debugging 'configure').
32
33 It can also use an optional file (typically called 'config.cache' and
34enabled with '--cache-file=config.cache' or simply '-C') that saves the
35results of its tests to speed up reconfiguring. Caching is disabled by
36default to prevent problems with accidental use of stale cache files.
37
38 If you need to do unusual things to compile the package, please try
39to figure out how 'configure' could check whether to do them, and mail
40diffs or instructions to the address given in the 'README' so they can
41be considered for the next release. If you are using the cache, and at
42some point 'config.cache' contains results you don't want to keep, you
43may remove or edit it.
44
45 The file 'configure.ac' (or 'configure.in') is used to create
46'configure' by a program called 'autoconf'. You need 'configure.ac' if
47you want to change it or regenerate 'configure' using a newer version of
48'autoconf'.
49
50 The simplest way to compile this package is:
51
52 1. 'cd' to the directory containing the package's source code and type
53 './configure' to configure the package for your system.
54
55 Running 'configure' might take a while. While running, it prints
56 some messages telling which features it is checking for.
57
58 2. Type 'make' to compile the package.
59
60 3. Optionally, type 'make check' to run any self-tests that come with
61 the package, generally using the just-built uninstalled binaries.
62
63 4. Type 'make install' to install the programs and any data files and
64 documentation. When installing into a prefix owned by root, it is
65 recommended that the package be configured and built as a regular
66 user, and only the 'make install' phase executed with root
67 privileges.
68
69 5. Optionally, type 'make installcheck' to repeat any self-tests, but
70 this time using the binaries in their final installed location.
71 This target does not install anything. Running this target as a
72 regular user, particularly if the prior 'make install' required
73 root privileges, verifies that the installation completed
74 correctly.
75
76 6. You can remove the program binaries and object files from the
77 source code directory by typing 'make clean'. To also remove the
78 files that 'configure' created (so you can compile the package for
79 a different kind of computer), type 'make distclean'. There is
80 also a 'make maintainer-clean' target, but that is intended mainly
81 for the package's developers. If you use it, you may have to get
82 all sorts of other programs in order to regenerate files that came
83 with the distribution.
84
85 7. Often, you can also type 'make uninstall' to remove the installed
86 files again. In practice, not all packages have tested that
87 uninstallation works correctly, even though it is required by the
88 GNU Coding Standards.
89
90 8. Some packages, particularly those that use Automake, provide 'make
91 distcheck', which can by used by developers to test that all other
92 targets like 'make install' and 'make uninstall' work correctly.
93 This target is generally not run by end users.
94
95Compilers and Options
96=====================
97
98 Some systems require unusual options for compilation or linking that
99the 'configure' script does not know about. Run './configure --help'
100for details on some of the pertinent environment variables.
101
102 You can give 'configure' initial values for configuration parameters
103by setting variables in the command line or in the environment. Here is
104an example:
105
106 ./configure CC=c99 CFLAGS=-g LIBS=-lposix
107
108 *Note Defining Variables::, for more details.
109
110Compiling For Multiple Architectures
111====================================
112
113 You can compile the package for more than one kind of computer at the
114same time, by placing the object files for each architecture in their
115own directory. To do this, you can use GNU 'make'. 'cd' to the
116directory where you want the object files and executables to go and run
117the 'configure' script. 'configure' automatically checks for the source
118code in the directory that 'configure' is in and in '..'. This is known
119as a "VPATH" build.
120
121 With a non-GNU 'make', it is safer to compile the package for one
122architecture at a time in the source code directory. After you have
123installed the package for one architecture, use 'make distclean' before
124reconfiguring for another architecture.
125
126 On MacOS X 10.5 and later systems, you can create libraries and
127executables that work on multiple system types--known as "fat" or
128"universal" binaries--by specifying multiple '-arch' options to the
129compiler but only a single '-arch' option to the preprocessor. Like
130this:
131
132 ./configure CC="gcc -arch i386 -arch x86_64 -arch ppc -arch ppc64" \
133 CXX="g++ -arch i386 -arch x86_64 -arch ppc -arch ppc64" \
134 CPP="gcc -E" CXXCPP="g++ -E"
135
136 This is not guaranteed to produce working output in all cases, you
137may have to build one architecture at a time and combine the results
138using the 'lipo' tool if you have problems.
139
140Installation Names
141==================
142
143 By default, 'make install' installs the package's commands under
144'/usr/local/bin', include files under '/usr/local/include', etc. You
145can specify an installation prefix other than '/usr/local' by giving
146'configure' the option '--prefix=PREFIX', where PREFIX must be an
147absolute file name.
148
149 You can specify separate installation prefixes for
150architecture-specific files and architecture-independent files. If you
151pass the option '--exec-prefix=PREFIX' to 'configure', the package uses
152PREFIX as the prefix for installing programs and libraries.
153Documentation and other data files still use the regular prefix.
154
155 In addition, if you use an unusual directory layout you can give
156options like '--bindir=DIR' to specify different values for particular
157kinds of files. Run 'configure --help' for a list of the directories
158you can set and what kinds of files go in them. In general, the default
159for these options is expressed in terms of '${prefix}', so that
160specifying just '--prefix' will affect all of the other directory
161specifications that were not explicitly provided.
162
163 The most portable way to affect installation locations is to pass the
164correct locations to 'configure'; however, many packages provide one or
165both of the following shortcuts of passing variable assignments to the
166'make install' command line to change installation locations without
167having to reconfigure or recompile.
168
169 The first method involves providing an override variable for each
170affected directory. For example, 'make install
171prefix=/alternate/directory' will choose an alternate location for all
172directory configuration variables that were expressed in terms of
173'${prefix}'. Any directories that were specified during 'configure',
174but not in terms of '${prefix}', must each be overridden at install time
175for the entire installation to be relocated. The approach of makefile
176variable overrides for each directory variable is required by the GNU
177Coding Standards, and ideally causes no recompilation. However, some
178platforms have known limitations with the semantics of shared libraries
179that end up requiring recompilation when using this method, particularly
180noticeable in packages that use GNU Libtool.
181
182 The second method involves providing the 'DESTDIR' variable. For
183example, 'make install DESTDIR=/alternate/directory' will prepend
184'/alternate/directory' before all installation names. The approach of
185'DESTDIR' overrides is not required by the GNU Coding Standards, and
186does not work on platforms that have drive letters. On the other hand,
187it does better at avoiding recompilation issues, and works well even
188when some directory options were not specified in terms of '${prefix}'
189at 'configure' time.
190
191Optional Features
192=================
193
194 If the package supports it, you can cause programs to be installed
195with an extra prefix or suffix on their names by giving 'configure' the
196option '--program-prefix=PREFIX' or '--program-suffix=SUFFIX'.
197
198 Some packages pay attention to '--enable-FEATURE' options to
199'configure', where FEATURE indicates an optional part of the package.
200They may also pay attention to '--with-PACKAGE' options, where PACKAGE
201is something like 'gnu-as' or 'x' (for the X Window System). The
202'README' should mention any '--enable-' and '--with-' options that the
203package recognizes.
204
205 For packages that use the X Window System, 'configure' can usually
206find the X include and library files automatically, but if it doesn't,
207you can use the 'configure' options '--x-includes=DIR' and
208'--x-libraries=DIR' to specify their locations.
209
210 Some packages offer the ability to configure how verbose the
211execution of 'make' will be. For these packages, running './configure
212--enable-silent-rules' sets the default to minimal output, which can be
213overridden with 'make V=1'; while running './configure
214--disable-silent-rules' sets the default to verbose, which can be
215overridden with 'make V=0'.
216
217Particular systems
218==================
219
220 On HP-UX, the default C compiler is not ANSI C compatible. If GNU CC
221is not installed, it is recommended to use the following options in
222order to use an ANSI C compiler:
223
224 ./configure CC="cc -Ae -D_XOPEN_SOURCE=500"
225
226and if that doesn't work, install pre-built binaries of GCC for HP-UX.
227
228 HP-UX 'make' updates targets which have the same timestamps as their
229prerequisites, which makes it generally unusable when shipped generated
230files such as 'configure' are involved. Use GNU 'make' instead.
231
232 On OSF/1 a.k.a. Tru64, some versions of the default C compiler cannot
233parse its '<wchar.h>' header file. The option '-nodtk' can be used as a
234workaround. If GNU CC is not installed, it is therefore recommended to
235try
236
237 ./configure CC="cc"
238
239and if that doesn't work, try
240
241 ./configure CC="cc -nodtk"
242
243 On Solaris, don't put '/usr/ucb' early in your 'PATH'. This
244directory contains several dysfunctional programs; working variants of
245these programs are available in '/usr/bin'. So, if you need '/usr/ucb'
246in your 'PATH', put it _after_ '/usr/bin'.
247
248 On Haiku, software installed for all users goes in '/boot/common',
249not '/usr/local'. It is recommended to use the following options:
250
251 ./configure --prefix=/boot/common
252
253Specifying the System Type
254==========================
255
256 There may be some features 'configure' cannot figure out
257automatically, but needs to determine by the type of machine the package
258will run on. Usually, assuming the package is built to be run on the
259_same_ architectures, 'configure' can figure that out, but if it prints
260a message saying it cannot guess the machine type, give it the
261'--build=TYPE' option. TYPE can either be a short name for the system
262type, such as 'sun4', or a canonical name which has the form:
263
264 CPU-COMPANY-SYSTEM
265
266where SYSTEM can have one of these forms:
267
268 OS
269 KERNEL-OS
270
271 See the file 'config.sub' for the possible values of each field. If
272'config.sub' isn't included in this package, then this package doesn't
273need to know the machine type.
274
275 If you are _building_ compiler tools for cross-compiling, you should
276use the option '--target=TYPE' to select the type of system they will
277produce code for.
278
279 If you want to _use_ a cross compiler, that generates code for a
280platform different from the build platform, you should specify the
281"host" platform (i.e., that on which the generated programs will
282eventually be run) with '--host=TYPE'.
283
284Sharing Defaults
285================
286
287 If you want to set default values for 'configure' scripts to share,
288you can create a site shell script called 'config.site' that gives
289default values for variables like 'CC', 'cache_file', and 'prefix'.
290'configure' looks for 'PREFIX/share/config.site' if it exists, then
291'PREFIX/etc/config.site' if it exists. Or, you can set the
292'CONFIG_SITE' environment variable to the location of the site script.
293A warning: not all 'configure' scripts look for a site script.
294
295Defining Variables
296==================
297
298 Variables not defined in a site shell script can be set in the
299environment passed to 'configure'. However, some packages may run
300configure again during the build, and the customized values of these
301variables may be lost. In order to avoid this problem, you should set
302them in the 'configure' command line, using 'VAR=value'. For example:
303
304 ./configure CC=/usr/local2/bin/gcc
305
306causes the specified 'gcc' to be used as the C compiler (unless it is
307overridden in the site shell script).
308
309Unfortunately, this technique does not work for 'CONFIG_SHELL' due to an
310Autoconf limitation. Until the limitation is lifted, you can use this
311workaround:
312
313 CONFIG_SHELL=/bin/bash ./configure CONFIG_SHELL=/bin/bash
314
315'configure' Invocation
316======================
317
318 'configure' recognizes the following options to control how it
319operates.
320
321'--help'
322'-h'
323 Print a summary of all of the options to 'configure', and exit.
324
325'--help=short'
326'--help=recursive'
327 Print a summary of the options unique to this package's
328 'configure', and exit. The 'short' variant lists options used only
329 in the top level, while the 'recursive' variant lists options also
330 present in any nested packages.
331
332'--version'
333'-V'
334 Print the version of Autoconf used to generate the 'configure'
335 script, and exit.
336
337'--cache-file=FILE'
338 Enable the cache: use and save the results of the tests in FILE,
339 traditionally 'config.cache'. FILE defaults to '/dev/null' to
340 disable caching.
341
342'--config-cache'
343'-C'
344 Alias for '--cache-file=config.cache'.
345
346'--quiet'
347'--silent'
348'-q'
349 Do not print messages saying which checks are being made. To
350 suppress all normal output, redirect it to '/dev/null' (any error
351 messages will still be shown).
352
353'--srcdir=DIR'
354 Look for the package's source code in directory DIR. Usually
355 'configure' can determine that directory automatically.
356
357'--prefix=DIR'
358 Use DIR as the installation prefix. *note Installation Names:: for
359 more details, including other options available for fine-tuning the
360 installation locations.
361
362'--no-create'
363'-n'
364 Run the configure checks, but stop before creating any output
365 files.
366
367'configure' also accepts some other, not widely useful, options. Run
368'configure --help' for more details.
diff --git a/NEWS b/NEWS
deleted file mode 100644
index 898a3da..0000000
--- a/NEWS
+++ /dev/null
@@ -1 +0,0 @@
1See ChangeLog.
diff --git a/README.md b/README.md
index 5988098..4a5bf35 100644
--- a/README.md
+++ b/README.md
@@ -24,21 +24,21 @@ The following dependencies are required and need to be installed to build the ap
24 - [libgnunetchat](https://git.gnunet.org/libgnunetchat.git/): For chatting via GNUnet messenger 24 - [libgnunetchat](https://git.gnunet.org/libgnunetchat.git/): For chatting via GNUnet messenger
25 - [ncurses](https://www.gnu.org/software/ncurses/): For the general UI visualization 25 - [ncurses](https://www.gnu.org/software/ncurses/): For the general UI visualization
26 26
27Then you can simply use [Autotools](https://www.gnu.org/software/automake/) as follows: 27Then you can simply use [Meson](https://mesonbuild.com/) as follows:
28``` 28```
29./bootstrap # Generate the configure script 29meson build # Configure the build files for your system
30./configure # Configure the Makefiles for your system 30ninja -C build # Build the application using those build files
31make # Build the application using the Makefiles 31ninja -C build install # Install the application
32sudo make install # Install the application
33``` 32```
34 33
35Here is a list of some useful build targets in the Makefile: 34Here is a list of some useful build commands using Meson and [Ninja](https://ninja-build.org/):
36 35
37 - `make` to just compile everything with default parameters 36 - `meson compile -C build` to just compile everything with configured parameters
38 - `make clean` to cleanup build files in case you want to recompile 37 - `rm -r build` to cleanup build files in case you want to recompile
39 - `make install` to install the compiled files (you might need sudo permissions to install) 38 - `meson install -C build` to install the compiled files (you might need sudo permissions to install)
39 - `meson dist -C build` to create a tar file for distribution
40 40
41If you want to change the installation location, use the `--prefix=` parameter in the `configure` script. Also you can enable debugging builds by adding `--enable-debug` as parameter when running the `configure` script. 41If you want to change the installation location, use the `--prefix=` parameter in the initial meson command. Also you can enable optimized release builds by adding `--buildtype=release` as parameter.
42 42
43## Contribution 43## Contribution
44 44
diff --git a/bootstrap b/bootstrap
deleted file mode 100755
index 68341a5..0000000
--- a/bootstrap
+++ /dev/null
@@ -1,2 +0,0 @@
1#!/bin/sh
2autoreconf -vfi
diff --git a/configure.ac b/configure.ac
deleted file mode 100644
index 0a499ab..0000000
--- a/configure.ac
+++ /dev/null
@@ -1,67 +0,0 @@
1# This file is part of GNUnet.
2# Copyright (C) 2022 GNUnet e.V.
3#
4# GNUnet is free software: you can redistribute it and/or modify it
5# under the terms of the GNU Affero General Public License as published
6# by the Free Software Foundation, either version 3 of the License,
7# or (at your option) any later version.
8#
9# GNUnet is distributed in the hope that it will be useful, but
10# WITHOUT ANY WARRANTY; without even the implied warranty of
11# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12# Affero General Public License for more details.
13#
14# You should have received a copy of the GNU Affero General Public License
15# along with this program. If not, see <http://www.gnu.org/licenses/>.
16#
17# SPDX-License-Identifier: AGPL3.0-or-later
18#
19# Process this file with autoconf to produce a configure script.
20#
21#
22AC_INIT([messenger-cli],[m4_esyscmd_s(sh contrib/get_version.sh)],[bug-gnunet@gnu.org])
23
24AC_CONFIG_AUX_DIR([build-aux])
25AC_CONFIG_MACRO_DIRS([m4])
26
27AC_CONFIG_HEADERS([
28 src/messenger_cli_config.h
29])
30
31AC_CANONICAL_TARGET
32AC_CANONICAL_HOST
33
34AM_INIT_AUTOMAKE
35AM_SILENT_RULES([yes])
36
37# maybe use AC_USE_SYSTEM_EXTENSIONS?
38AH_TOP([#define _GNU_SOURCE 1])
39
40AC_PROG_AWK
41AC_PROG_CC
42AC_PROG_CC_C_O
43AC_PROG_INSTALL
44AC_PROG_LN_S
45AC_PROG_MAKE_SET
46AC_PROG_MKDIR_P
47PKG_PROG_PKG_CONFIG([0.29.2])
48
49AC_DISABLE_STATIC
50LT_INIT
51
52AC_ARG_ENABLE([debug],
53[ --enable-debug turn on debugging],
54[case "${enableval}" in
55 yes) debug=true ;;
56 no) debug=false ;;
57 *) AC_MSG_ERROR([bad value ${enableval} for --enable-debug]) ;;
58esac],[debug=false])
59AM_CONDITIONAL([DEBUG], [test x$debug = xtrue])
60
61AC_CONFIG_FILES([
62 Makefile
63 src/Makefile
64 src/ui/Makefile
65])
66
67AC_OUTPUT
diff --git a/meson.build b/meson.build
new file mode 100644
index 0000000..9c1e284
--- /dev/null
+++ b/meson.build
@@ -0,0 +1,44 @@
1#
2# This file is part of GNUnet.
3# Copyright (C) 2023 GNUnet e.V.
4#
5# GNUnet is free software: you can redistribute it and/or modify it
6# under the terms of the GNU Affero General Public License as published
7# by the Free Software Foundation, either version 3 of the License,
8# or (at your option) any later version.
9#
10# GNUnet is distributed in the hope that it will be useful, but
11# WITHOUT ANY WARRANTY; without even the implied warranty of
12# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13# Affero General Public License for more details.
14#
15# You should have received a copy of the GNU Affero General Public License
16# along with this program. If not, see <http://www.gnu.org/licenses/>.
17#
18# SPDX-License-Identifier: AGPL3.0-or-later
19#
20
21project(
22 'messenger-cli',
23 'c',
24 license: 'AGPL3.0-or-later',
25 version: run_command('contrib/get_version.sh').stdout().strip(),
26)
27
28src_directory = include_directories('src')
29
30messenger_cli_deps = [
31 dependency('gnunetchat'),
32 dependency('gnunetutil'),
33 dependency('ncurses'),
34]
35
36subdir('src')
37
38messenger_cli_exec = executable(
39 'messenger_cli',
40 messenger_cli_sources,
41 install: true,
42 dependencies: messenger_cli_deps,
43 include_directories: src_directory,
44)
diff --git a/src/application.c b/src/application.c
index d8314df..57fb45c 100644
--- a/src/application.c
+++ b/src/application.c
@@ -1,6 +1,6 @@
1/* 1/*
2 This file is part of GNUnet. 2 This file is part of GNUnet.
3 Copyright (C) 2022 GNUnet e.V. 3 Copyright (C) 2022--2023 GNUnet e.V.
4 4
5 GNUnet is free software: you can redistribute it and/or modify it 5 GNUnet is free software: you can redistribute it and/or modify it
6 under the terms of the GNU Affero General Public License as published 6 under the terms of the GNU Affero General Public License as published
@@ -24,6 +24,8 @@
24 24
25#include "application.h" 25#include "application.h"
26 26
27#include "util.h"
28
27void 29void
28application_clear(MESSENGER_Application *app) 30application_clear(MESSENGER_Application *app)
29{ 31{
diff --git a/src/application.h b/src/application.h
index ea248e0..2ed9ea4 100644
--- a/src/application.h
+++ b/src/application.h
@@ -1,6 +1,6 @@
1/* 1/*
2 This file is part of GNUnet. 2 This file is part of GNUnet.
3 Copyright (C) 2022 GNUnet e.V. 3 Copyright (C) 2022--2023 GNUnet e.V.
4 4
5 GNUnet is free software: you can redistribute it and/or modify it 5 GNUnet is free software: you can redistribute it and/or modify it
6 under the terms of the GNU Affero General Public License as published 6 under the terms of the GNU Affero General Public License as published
@@ -29,7 +29,6 @@
29#include <curses.h> 29#include <curses.h>
30 30
31#include "chat.h" 31#include "chat.h"
32#include "util.h"
33 32
34#include "ui/accounts.h" 33#include "ui/accounts.h"
35#include "ui/chat.h" 34#include "ui/chat.h"
diff --git a/src/chat.h b/src/chat.h
index 7eb103f..00c01f1 100644
--- a/src/chat.h
+++ b/src/chat.h
@@ -1,6 +1,6 @@
1/* 1/*
2 This file is part of GNUnet. 2 This file is part of GNUnet.
3 Copyright (C) 2022 GNUnet e.V. 3 Copyright (C) 2022--2023 GNUnet e.V.
4 4
5 GNUnet is free software: you can redistribute it and/or modify it 5 GNUnet is free software: you can redistribute it and/or modify it
6 under the terms of the GNU Affero General Public License as published 6 under the terms of the GNU Affero General Public License as published
@@ -25,7 +25,6 @@
25#ifndef CHAT_H_ 25#ifndef CHAT_H_
26#define CHAT_H_ 26#define CHAT_H_
27 27
28#include <gnunet/platform.h>
29#include <gnunet/gnunet_chat_lib.h> 28#include <gnunet/gnunet_chat_lib.h>
30#include <gnunet/gnunet_util_lib.h> 29#include <gnunet/gnunet_util_lib.h>
31 30
diff --git a/src/meson.build b/src/meson.build
new file mode 100644
index 0000000..1d98bea
--- /dev/null
+++ b/src/meson.build
@@ -0,0 +1,28 @@
1#
2# This file is part of GNUnet.
3# Copyright (C) 2023 GNUnet e.V.
4#
5# GNUnet is free software: you can redistribute it and/or modify it
6# under the terms of the GNU Affero General Public License as published
7# by the Free Software Foundation, either version 3 of the License,
8# or (at your option) any later version.
9#
10# GNUnet is distributed in the hope that it will be useful, but
11# WITHOUT ANY WARRANTY; without even the implied warranty of
12# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13# Affero General Public License for more details.
14#
15# You should have received a copy of the GNU Affero General Public License
16# along with this program. If not, see <http://www.gnu.org/licenses/>.
17#
18# SPDX-License-Identifier: AGPL3.0-or-later
19#
20
21subdir('ui')
22
23messenger_cli_sources = files([
24 'application.c', 'application.h',
25 'chat.c', 'chat.h',
26 'util.c', 'util.h',
27 'messenger_cli.c',
28]) + messenger_cli_ui_sources
diff --git a/src/ui/account_create_dialog.c b/src/ui/account_create_dialog.c
index 1ef6568..6845a1d 100644
--- a/src/ui/account_create_dialog.c
+++ b/src/ui/account_create_dialog.c
@@ -1,6 +1,6 @@
1/* 1/*
2 This file is part of GNUnet. 2 This file is part of GNUnet.
3 Copyright (C) 2022 GNUnet e.V. 3 Copyright (C) 2022--2023 GNUnet e.V.
4 4
5 GNUnet is free software: you can redistribute it and/or modify it 5 GNUnet is free software: you can redistribute it and/or modify it
6 under the terms of the GNU Affero General Public License as published 6 under the terms of the GNU Affero General Public License as published
@@ -24,13 +24,11 @@
24 24
25#include "account_create_dialog.h" 25#include "account_create_dialog.h"
26 26
27#include <gnunet/platform.h>
28#include <gnunet/gnunet_chat_lib.h> 27#include <gnunet/gnunet_chat_lib.h>
29#include <gnunet/gnunet_util_lib.h> 28#include <gnunet/gnunet_util_lib.h>
30 29
31#include "text_input.h" 30#include "text_input.h"
32#include "../application.h" 31#include "../application.h"
33#include "../util.h"
34 32
35void 33void
36account_create_dialog_event(UI_ACCOUNT_CREATE_DIALOG_Handle *create_dialog, 34account_create_dialog_event(UI_ACCOUNT_CREATE_DIALOG_Handle *create_dialog,
diff --git a/src/ui/accounts.h b/src/ui/accounts.h
index 2566e78..392f476 100644
--- a/src/ui/accounts.h
+++ b/src/ui/accounts.h
@@ -1,6 +1,6 @@
1/* 1/*
2 This file is part of GNUnet. 2 This file is part of GNUnet.
3 Copyright (C) 2022 GNUnet e.V. 3 Copyright (C) 2022--2023 GNUnet e.V.
4 4
5 GNUnet is free software: you can redistribute it and/or modify it 5 GNUnet is free software: you can redistribute it and/or modify it
6 under the terms of the GNU Affero General Public License as published 6 under the terms of the GNU Affero General Public License as published
@@ -28,7 +28,6 @@
28#include <stdlib.h> 28#include <stdlib.h>
29#include <curses.h> 29#include <curses.h>
30 30
31#include <gnunet/platform.h>
32#include <gnunet/gnunet_chat_lib.h> 31#include <gnunet/gnunet_chat_lib.h>
33#include <gnunet/gnunet_util_lib.h> 32#include <gnunet/gnunet_util_lib.h>
34 33
diff --git a/src/ui/chat_open_dialog.c b/src/ui/chat_open_dialog.c
index cd98401..1ea5863 100644
--- a/src/ui/chat_open_dialog.c
+++ b/src/ui/chat_open_dialog.c
@@ -1,6 +1,6 @@
1/* 1/*
2 This file is part of GNUnet. 2 This file is part of GNUnet.
3 Copyright (C) 2022 GNUnet e.V. 3 Copyright (C) 2022--2023 GNUnet e.V.
4 4
5 GNUnet is free software: you can redistribute it and/or modify it 5 GNUnet is free software: you can redistribute it and/or modify it
6 under the terms of the GNU Affero General Public License as published 6 under the terms of the GNU Affero General Public License as published
@@ -24,13 +24,11 @@
24 24
25#include "chat_open_dialog.h" 25#include "chat_open_dialog.h"
26 26
27#include <gnunet/platform.h>
28#include <gnunet/gnunet_chat_lib.h> 27#include <gnunet/gnunet_chat_lib.h>
29#include <gnunet/gnunet_util_lib.h> 28#include <gnunet/gnunet_util_lib.h>
30 29
31#include "text_input.h" 30#include "text_input.h"
32#include "../application.h" 31#include "../application.h"
33#include "../util.h"
34 32
35void 33void
36chat_open_dialog_event(UI_CHAT_OPEN_DIALOG_Handle *open_dialog, 34chat_open_dialog_event(UI_CHAT_OPEN_DIALOG_Handle *open_dialog,
diff --git a/src/ui/chats.h b/src/ui/chats.h
index 7ab64d5..eb0ba99 100644
--- a/src/ui/chats.h
+++ b/src/ui/chats.h
@@ -1,6 +1,6 @@
1/* 1/*
2 This file is part of GNUnet. 2 This file is part of GNUnet.
3 Copyright (C) 2022 GNUnet e.V. 3 Copyright (C) 2022--2023 GNUnet e.V.
4 4
5 GNUnet is free software: you can redistribute it and/or modify it 5 GNUnet is free software: you can redistribute it and/or modify it
6 under the terms of the GNU Affero General Public License as published 6 under the terms of the GNU Affero General Public License as published
@@ -28,7 +28,6 @@
28#include <stdlib.h> 28#include <stdlib.h>
29#include <curses.h> 29#include <curses.h>
30 30
31#include <gnunet/platform.h>
32#include <gnunet/gnunet_chat_lib.h> 31#include <gnunet/gnunet_chat_lib.h>
33#include <gnunet/gnunet_util_lib.h> 32#include <gnunet/gnunet_util_lib.h>
34 33
diff --git a/src/ui/lobby_create_dialog.h b/src/ui/lobby_create_dialog.h
index 42d06fc..4ec5501 100644
--- a/src/ui/lobby_create_dialog.h
+++ b/src/ui/lobby_create_dialog.h
@@ -1,6 +1,6 @@
1/* 1/*
2 This file is part of GNUnet. 2 This file is part of GNUnet.
3 Copyright (C) 2022 GNUnet e.V. 3 Copyright (C) 2022--2023 GNUnet e.V.
4 4
5 GNUnet is free software: you can redistribute it and/or modify it 5 GNUnet is free software: you can redistribute it and/or modify it
6 under the terms of the GNU Affero General Public License as published 6 under the terms of the GNU Affero General Public License as published
@@ -28,7 +28,6 @@
28#include <stdlib.h> 28#include <stdlib.h>
29#include <curses.h> 29#include <curses.h>
30 30
31#include <gnunet/platform.h>
32#include <gnunet/gnunet_chat_lib.h> 31#include <gnunet/gnunet_chat_lib.h>
33#include <gnunet/gnunet_util_lib.h> 32#include <gnunet/gnunet_util_lib.h>
34 33
diff --git a/src/ui/lobby_enter_dialog.c b/src/ui/lobby_enter_dialog.c
index 0ae9018..a3ef356 100644
--- a/src/ui/lobby_enter_dialog.c
+++ b/src/ui/lobby_enter_dialog.c
@@ -1,6 +1,6 @@
1/* 1/*
2 This file is part of GNUnet. 2 This file is part of GNUnet.
3 Copyright (C) 2022 GNUnet e.V. 3 Copyright (C) 2022--2023 GNUnet e.V.
4 4
5 GNUnet is free software: you can redistribute it and/or modify it 5 GNUnet is free software: you can redistribute it and/or modify it
6 under the terms of the GNU Affero General Public License as published 6 under the terms of the GNU Affero General Public License as published
@@ -24,13 +24,11 @@
24 24
25#include "lobby_enter_dialog.h" 25#include "lobby_enter_dialog.h"
26 26
27#include <gnunet/platform.h>
28#include <gnunet/gnunet_chat_lib.h> 27#include <gnunet/gnunet_chat_lib.h>
29#include <gnunet/gnunet_util_lib.h> 28#include <gnunet/gnunet_util_lib.h>
30 29
31#include "text_input.h" 30#include "text_input.h"
32#include "../application.h" 31#include "../application.h"
33#include "../util.h"
34 32
35void 33void
36lobby_enter_dialog_event(UI_LOBBY_ENTER_DIALOG_Handle *enter_dialog, 34lobby_enter_dialog_event(UI_LOBBY_ENTER_DIALOG_Handle *enter_dialog,
diff --git a/src/ui/members.h b/src/ui/members.h
index 7769e74..9ff3078 100644
--- a/src/ui/members.h
+++ b/src/ui/members.h
@@ -1,6 +1,6 @@
1/* 1/*
2 This file is part of GNUnet. 2 This file is part of GNUnet.
3 Copyright (C) 2022 GNUnet e.V. 3 Copyright (C) 2022--2023 GNUnet e.V.
4 4
5 GNUnet is free software: you can redistribute it and/or modify it 5 GNUnet is free software: you can redistribute it and/or modify it
6 under the terms of the GNU Affero General Public License as published 6 under the terms of the GNU Affero General Public License as published
@@ -29,7 +29,6 @@
29#include <stdlib.h> 29#include <stdlib.h>
30#include <curses.h> 30#include <curses.h>
31 31
32#include <gnunet/platform.h>
33#include <gnunet/gnunet_chat_lib.h> 32#include <gnunet/gnunet_chat_lib.h>
34#include <gnunet/gnunet_util_lib.h> 33#include <gnunet/gnunet_util_lib.h>
35 34
diff --git a/src/ui/meson.build b/src/ui/meson.build
new file mode 100644
index 0000000..a57c670
--- /dev/null
+++ b/src/ui/meson.build
@@ -0,0 +1,33 @@
1#
2# This file is part of GNUnet.
3# Copyright (C) 2023 GNUnet e.V.
4#
5# GNUnet is free software: you can redistribute it and/or modify it
6# under the terms of the GNU Affero General Public License as published
7# by the Free Software Foundation, either version 3 of the License,
8# or (at your option) any later version.
9#
10# GNUnet is distributed in the hope that it will be useful, but
11# WITHOUT ANY WARRANTY; without even the implied warranty of
12# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13# Affero General Public License for more details.
14#
15# You should have received a copy of the GNU Affero General Public License
16# along with this program. If not, see <http://www.gnu.org/licenses/>.
17#
18# SPDX-License-Identifier: AGPL3.0-or-later
19#
20
21messenger_cli_ui_sources = files([
22 'account_create_dialog.c', 'account_create_dialog.h',
23 'accounts.c', 'accounts.h',
24 'chat_open_dialog.c', 'chat_open_dialog.h',
25 'chat.h',
26 'chats.c', 'chats.h',
27 'list_input.h',
28 'lobby_create_dialog.c', 'lobby_create_dialog.h',
29 'lobby_enter_dialog.c', 'lobby_enter_dialog.h',
30 'members.c', 'members.h',
31 'messages.c', 'messages.h',
32 'text_input.h',
33])
diff --git a/src/ui/messages.h b/src/ui/messages.h
index 3d509db..bcb2336 100644
--- a/src/ui/messages.h
+++ b/src/ui/messages.h
@@ -1,6 +1,6 @@
1/* 1/*
2 This file is part of GNUnet. 2 This file is part of GNUnet.
3 Copyright (C) 2022 GNUnet e.V. 3 Copyright (C) 2022--2023 GNUnet e.V.
4 4
5 GNUnet is free software: you can redistribute it and/or modify it 5 GNUnet is free software: you can redistribute it and/or modify it
6 under the terms of the GNU Affero General Public License as published 6 under the terms of the GNU Affero General Public License as published
@@ -26,9 +26,10 @@
26#define UI_MESSAGES_H_ 26#define UI_MESSAGES_H_
27 27
28#include <stdlib.h> 28#include <stdlib.h>
29#include <time.h>
30#include <unistd.h>
29#include <curses.h> 31#include <curses.h>
30 32
31#include <gnunet/platform.h>
32#include <gnunet/gnunet_chat_lib.h> 33#include <gnunet/gnunet_chat_lib.h>
33#include <gnunet/gnunet_util_lib.h> 34#include <gnunet/gnunet_util_lib.h>
34 35