Line data Source code
1 : /*
2 : This file is part of Challenger.
3 : Copyright (C) 2023 Taler Systems SA
4 :
5 : Challenger is free software; you can redistribute it and/or modify
6 : it under the terms of the GNU General Public License as published
7 : by the Free Software Foundation; either version 3, or (at your
8 : option) any later version.
9 :
10 : Challenger 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 : General Public License for more details.
14 :
15 : You should have received a copy of the GNU General Public License
16 : along with Challenger; see the file COPYING. If not, write to the
17 : Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
18 : Boston, MA 02110-1301, USA.
19 : */
20 :
21 : /**
22 : * @file os_installation.c
23 : * @brief initialize libgnunet OS subsystem for Challenger.
24 : * @author Christian Grothoff
25 : */
26 : #include "platform.h"
27 : #include <gnunet/gnunet_util_lib.h>
28 : #include "challenger_util.h"
29 :
30 : /**
31 : * Default project data used for installation path detection
32 : * for GNU Challenger.
33 : */
34 : static const struct GNUNET_OS_ProjectData challenger_pd = {
35 : .libname = "libchallengerutil",
36 : .project_dirname = "challenger",
37 : .binary_name = "challenger-httpd",
38 : .env_varname = "CHALLENGER_PREFIX",
39 : .base_config_varname = "CHALLENGER_BASE_CONFIG",
40 : .bug_email = "taler@lists.gnu.org",
41 : .homepage = "http://www.gnu.org/s/taler/",
42 : .config_file = "challenger.conf",
43 : .user_config_file = "~/.config/challenger.conf",
44 : .version = PACKAGE_VERSION,
45 : .is_gnu = 1,
46 : .gettext_domain = "challenger",
47 : .gettext_path = NULL,
48 : };
49 :
50 :
51 : const struct GNUNET_OS_ProjectData *
52 16 : CHALLENGER_project_data (void)
53 : {
54 16 : return &challenger_pd;
55 : }
56 :
57 :
58 : /* end of os_installation.c */
|