blob: 8765ed5860a7678fa4246d1419055317156ca490 (
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
|
#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/"
#else
#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
|