blob: 783fc6c1e7fb7cec4b7fc9b6a9ef77126e8d7882 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
#ifndef PATH_H
#define PATH_H
#include "main.h"
#ifndef PREFIX
#define PREFIX "/usr/local"
#endif
#ifndef PUBLIC_SERVER
#define PATH_DIR PREFIX "/share/tuxanci-ng/"
#define PATH_MODULES PREFIX "/lib/tuxanci-ng/"
#endif
#ifdef PUBLIC_SERVER
#define PATH_DIR PREFIX "/share/tuxanci-ng-server/"
#define PATH_MODULES PREFIX "/lib/tuxanci-ng-server/"
#define SERVER_CONFIG "/etc/tuxanci-ng-server/server.conf"
#endif
#define PATH_IMAGE PATH_DIR "image/"
#define PATH_FONT PATH_DIR "font/"
#define PATH_ARENA PATH_DIR "arena/"
#define PATH_SOUND PATH_DIR "sound/"
#define PATH_MUSIC PATH_DIR "music/"
#define PATH_CONFIG PATH_DIR "conf/"
#define PATH_LANG PATH_DIR "lang/"
#define PATH_DATA PATH_DIR "doc/"
#endif
|