2015-03-20 23:51:28 +01:00
|
|
|
/*
|
2016-03-31 20:56:16 +02:00
|
|
|
This file is part of GNU Taler.
|
2020-01-19 20:33:07 +01:00
|
|
|
Copyright (C) 2016 Taler Systems SA
|
2015-03-20 23:51:28 +01:00
|
|
|
|
2016-03-31 20:56:16 +02:00
|
|
|
Taler is free software; you can redistribute it and/or modify
|
2015-03-20 23:51:28 +01:00
|
|
|
it under the terms of the GNU General Public License as published
|
|
|
|
by the Free Software Foundation; either version 3, or (at your
|
|
|
|
option) any later version.
|
|
|
|
|
2016-03-31 20:56:16 +02:00
|
|
|
Taler is distributed in the hope that it will be useful, but
|
2015-03-20 23:51:28 +01:00
|
|
|
WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
2016-03-31 20:56:16 +02:00
|
|
|
along with Taler; see the file COPYING. If not, write to the
|
2015-06-30 13:55:39 +02:00
|
|
|
Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
|
|
Boston, MA 02110-1301, USA.
|
2015-03-20 23:51:28 +01:00
|
|
|
*/
|
|
|
|
/**
|
|
|
|
* @file os_installation.c
|
2016-03-31 20:56:16 +02:00
|
|
|
* @brief initialize libgnunet OS subsystem for Taler.
|
|
|
|
* @author Christian Grothoff
|
2015-03-20 23:51:28 +01:00
|
|
|
*/
|
|
|
|
#include "platform.h"
|
|
|
|
#include <gnunet/gnunet_util_lib.h>
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2016-03-31 20:56:16 +02:00
|
|
|
* Default project data used for installation path detection
|
|
|
|
* for GNU Taler.
|
2015-03-20 23:51:28 +01:00
|
|
|
*/
|
2016-03-31 20:56:16 +02:00
|
|
|
static const struct GNUNET_OS_ProjectData taler_pd = {
|
|
|
|
.libname = "libtalerutil",
|
2016-04-07 11:09:30 +02:00
|
|
|
.project_dirname = "taler",
|
2016-03-31 20:56:16 +02:00
|
|
|
.binary_name = "taler-exchange-httpd",
|
2016-04-07 22:52:23 +02:00
|
|
|
.env_varname = "TALER_PREFIX",
|
2016-04-22 16:11:19 +02:00
|
|
|
.base_config_varname = "TALER_BASE_CONFIG",
|
2016-04-07 22:52:23 +02:00
|
|
|
.bug_email = "taler@gnu.org",
|
|
|
|
.homepage = "http://www.gnu.org/s/taler/",
|
2016-04-15 19:41:44 +02:00
|
|
|
.config_file = "taler.conf",
|
2016-04-16 13:10:29 +02:00
|
|
|
.user_config_file = "~/.config/taler.conf",
|
2019-09-01 15:04:53 +02:00
|
|
|
.version = PACKAGE_VERSION,
|
|
|
|
.is_gnu = 1,
|
|
|
|
.gettext_domain = "taler",
|
|
|
|
.gettext_path = NULL,
|
2016-03-31 20:56:16 +02:00
|
|
|
};
|
2015-03-20 23:51:28 +01:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
2016-04-07 22:52:23 +02:00
|
|
|
* Return default project data used by Taler.
|
2015-03-20 23:51:28 +01:00
|
|
|
*/
|
2016-03-31 20:56:16 +02:00
|
|
|
const struct GNUNET_OS_ProjectData *
|
|
|
|
TALER_project_data_default (void)
|
2015-03-20 23:51:28 +01:00
|
|
|
{
|
2016-03-31 20:56:16 +02:00
|
|
|
return &taler_pd;
|
2015-03-20 23:51:28 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2016-03-31 20:56:16 +02:00
|
|
|
* Initialize libtalerutil.
|
2015-03-20 23:51:28 +01:00
|
|
|
*/
|
2016-03-31 20:56:16 +02:00
|
|
|
void __attribute__ ((constructor))
|
|
|
|
TALER_OS_init ()
|
2015-03-20 23:51:28 +01:00
|
|
|
{
|
2016-03-31 20:56:16 +02:00
|
|
|
GNUNET_OS_init (&taler_pd);
|
2015-03-20 23:51:28 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* end of os_installation.c */
|