45 lines
1.6 KiB
C
45 lines
1.6 KiB
C
#ifndef _GW_DIRS_HG
|
|
#define _GW_DIRS_HG
|
|
|
|
/*
|
|
* This file is distributed as part of the MariaDB Corporation MaxScale. It is free
|
|
* software: you can redistribute it and/or modify it under the terms of the
|
|
* GNU General Public License as published by the Free Software Foundation,
|
|
* version 2.
|
|
*
|
|
* This program is distributed in the hope that it will be useful, but 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 along with
|
|
* this program; if not, write to the Free Software Foundation, Inc., 51
|
|
* Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
*
|
|
* Copyright MariaDB Corporation Ab 2015
|
|
*/
|
|
|
|
#include <stdlib.h>
|
|
|
|
/** Default file locations, configured by CMake */
|
|
static const char* default_cnf_fname = "maxscale.cnf";
|
|
static const char* default_configdir = "/etc/";
|
|
static const char* default_piddir = "/var/run/maxscale/";
|
|
static const char* default_logdir = "/var/log/maxscale/";
|
|
static const char* default_datadir = "/var/lib/maxscale/";
|
|
static const char* default_libdir = "@CMAKE_INSTALL_PREFIX@/@MAXSCALE_LIBDIR@";
|
|
static const char* default_cachedir = "/var/cache/maxscale/";
|
|
static const char* default_langdir = "@MAXSCALE_VARDIR@/lib/maxscale/";
|
|
|
|
static char* configdir = NULL;
|
|
static char* logdir = NULL;
|
|
static char* libdir = NULL;
|
|
static char* cachedir = NULL;
|
|
static char* maxscaledatadir = NULL;
|
|
static char* langdir = NULL;
|
|
static char* piddir = NULL;
|
|
char* get_libdir();
|
|
char* get_datadir();
|
|
char* get_cachedir();
|
|
#endif
|