Skip to content
Snippets Groups Projects
Commit a7e92d49 authored by Ondřej Surý's avatar Ondřej Surý
Browse files

Use configure variables to set paths inside binaries

parent 1b1c1c8b
No related branches found
No related tags found
No related merge requests found
......@@ -4,7 +4,7 @@ libexec_PROGRAMS = knot-zcompile unittests unittests-zcompile unittests-libknot-
sbin_PROGRAMS = knotd
# $(YACC) will generate header file
AM_CFLAGS = -Wall -I../ -I../libknot
AM_CFLAGS = -Wall -I../ -I../libknot -DLIBEXECDIR='"$(libexecdir)"' -DSYSCONFDIR='"$(sysconfdir)"' -DSBINDIR='"$(sbindir)"'
AM_YFLAGS = -d
libknotd_la_YFLAGS = -pcf_ -d
libknotd_la_LFLAGS = # TODO: reentrant parser, prefix
......
......@@ -27,8 +27,8 @@ typedef unsigned int uint; /*!< \brief Unsigned. */
#define PROJECT_NAME PACKAGE /*!< \brief Project name. */
#define PROJECT_VER 0x000100 /*!< \brief 0xMMIIRR (MAJOR,MINOR,REVISION). */
#define PROJECT_EXEC "knotd" /*!< \brief Project executable. */
#define ZONEPARSER_EXEC "knot-zcompile" /*!< \brief Zoneparser executable. */
#define PROJECT_EXEC SBINDIR "/" "knotd" /*!< \brief Project executable. */
#define ZONEPARSER_EXEC LIBEXECDIR "/" "knot-zcompile" /*!< \brief Zoneparser executable. */
#define PID_FILE "knot.pid" /*!< \brief Server PID file name. */
/*
......
......@@ -16,14 +16,15 @@
* Defaults.
*/
#define DEFAULT_CONF_COUNT 2 /*!< \brief Number of default config paths. */
/*! \brief Default config paths. */
static const char *DEFAULT_CONFIG[2] = {
"~/.knot/" PROJECT_EXEC ".conf",
"/etc/knot/" PROJECT_EXEC ".conf"
static const char *DEFAULT_CONFIG[] = {
SYSCONFDIR "/" "knotd.conf",
"~/.knot/" "knotd.conf",
"/etc/" PACKAGE "/" "knotd.conf"
};
#define DEFAULT_CONF_COUNT sizeof(DEFAULT_CONFIG) /*!< \brief Number of default config paths. */
/*
* Utilities.
*/
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment