forked from vitrine/wmaker
28 lines
776 B
C
28 lines
776 B
C
#ifndef wmaker_config_paths_h
|
|
|
|
// TODO: this is a snapshot of configuration values generated by autotools. As
|
|
// we migrate away from autotools, it should go away.
|
|
|
|
/* define where the translations are stored */
|
|
#define LOCALEDIR "/usr/local/share/locale"
|
|
|
|
/* define an extra path for pixmaps */
|
|
#define PIXMAPDIR "/usr/local/share/pixmaps"
|
|
|
|
/* where shared data is stored */
|
|
#define PKGDATADIR "/usr/local/share/WindowMaker"
|
|
|
|
/* where the global defaults are stored */
|
|
#define PKGCONFDIR "/usr/local/etc/WindowMaker"
|
|
|
|
/* where the user data root is located */
|
|
#define GSUSER_SUBDIR "GNUstep"
|
|
|
|
/* where the user defaults are stored */
|
|
#define DEFAULTS_SUBDIR "Defaults"
|
|
|
|
/* where the user data are stored */
|
|
#define USERDATA_SUBDIR "Library"
|
|
|
|
#endif // wmaker_config_paths_h
|