forked from darkbatcher/picobat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.h.in
77 lines (60 loc) · 1.76 KB
/
config.h.in
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
/*
Dos9 Makefiles, The Dos9 project
Copyright (C) 2012-2018 Romain Garbi (DarkBatcher)
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#define BINARY_PATH "@BINDIR@"
#define DATA_PATH "@BINDIR@/share"
#if @use_cmdlycorrect@
#define DOS9_STATIC_CMDLYCORRECT 1
#endif
#if @use_libcu8@
#define DOS9_USE_LIBCU8 1
#endif
#if @use_nls@
#define ENABLE_NLS 1
#endif
#if !@use_console@
#define LIBDOS9_NO_CONSOLE 1
#endif
#if @use_w10ansi@
#define LIBDOS9_W10_ANSI 1
#endif
#if @use_modules@
#define DOS9_USE_MODULES 1
#endif
#if !@use_linenoise@
#define DOS9_NO_LINENOISE 1
#endif
#define PACKAGE "@PACKAGE@"
#define PACKAGE_BUGREPORT "@PACKAGE_BUGREPORT@"
#define PACKAGE_NAME "@PACKAGE@"
#define PACKAGE_STRING "@PACKAGE@ @VERSION@"
#define PACKAGE_URL "@PACKAGE_URL@"
#define PACKAGE_VERSION "@VERSION@"
#define STDC_HEADERS 1
#define HOST "@HOST@"
#define __YEAR__ "@YEAR@"
#define VERSION PACKAGE_VERSION
#if @prg_xdg-open@
#define XDG_OPEN "@path_xdg-open@"
#endif
#if @prg_mimeopen@
#define MIMEOPEN "@path_mimeopen@"
#endif
#if defined(MIMEOPEN)
#define START_SCRIPT MIMEOPEN
#elif defined(XDG_OPEN)
#define START_SCRIPT XDG_OPEN
#else
#define START_SCRIPT ""
#endif