Load a configuration file in SYSCONFDIR
This commit is contained in:
parent
5ebbcb4b78
commit
fa81e2b8b9
@ -50,6 +50,9 @@
|
|||||||
#ifndef PREFIX
|
#ifndef PREFIX
|
||||||
# define PREFIX "/usr/local"
|
# define PREFIX "/usr/local"
|
||||||
#endif
|
#endif
|
||||||
|
#ifndef SYSCONFDIR
|
||||||
|
# define SYSCONFDIR PREFIX "/etc"
|
||||||
|
#endif
|
||||||
#ifndef DATADIR
|
#ifndef DATADIR
|
||||||
# define DATADIR PREFIX "/share"
|
# define DATADIR PREFIX "/share"
|
||||||
#endif
|
#endif
|
||||||
@ -252,6 +255,14 @@ static int _new_load_config(Configure * configure)
|
|||||||
configure_warning(0, "%s: %s", filename,
|
configure_warning(0, "%s: %s", filename,
|
||||||
"Could not load program definitions");
|
"Could not load program definitions");
|
||||||
string_delete(filename);
|
string_delete(filename);
|
||||||
|
#ifndef BASEDIR
|
||||||
|
if((filename = string_new(SYSCONFDIR "/" PACKAGE "/" PACKAGE CONFEXT))
|
||||||
|
== NULL)
|
||||||
|
return -configure_error(1, "%s", error_get(NULL));
|
||||||
|
/* we can ignore errors */
|
||||||
|
config_load(configure->config, filename);
|
||||||
|
string_delete(filename);
|
||||||
|
#endif
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user