forked from michaelrsweet/epm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.h.in
134 lines (90 loc) · 2.06 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
/*
* Configuration file for the ESP Package Manager (EPM).
*
* Copyright 1999-2014 by Michael R Sweet
* Copyright 1999-2005 by Easy Software Products.
*
* 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 2, 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.
*/
/*
* Version of software...
*/
#define EPM_VERSION ""
/*
* Where are files stored?
*/
#define EPM_SOFTWARE "/etc/software"
/*
* Where are binaries stored?
*/
#define EPM_BINDIR "/usr/bin"
#define EPM_DATADIR "/usr/share/epm"
#define EPM_LIBDIR "/usr/lib/epm"
/*
* What options does the strip command take?
*/
#define EPM_STRIP "/bin/strip"
/*
* What command is used to build RPMs?
*/
#define EPM_RPMBUILD "rpm"
/*
* What option is used to specify the RPM architecture?
*/
#define EPM_RPMARCH "--target"
/*
* Does this version of RPM support the "topdir_" variable?
*/
#undef EPM_RPMTOPDIR
/*
* Compiler stuff...
*/
#undef const
#undef __CHAR_UNSIGNED__
/*
* Do we have the <strings.h> header file?
*/
#undef HAVE_STRINGS_H
/*
* Which header files do we use for the statfs() function?
*/
#undef HAVE_SYS_MOUNT_H
#undef HAVE_SYS_STATFS_H
#undef HAVE_SYS_VFS_H
#undef HAVE_SYS_PARAM_H
/*
* Do we have the strXXX() functions?
*/
#undef HAVE_STRCASECMP
#undef HAVE_STRDUP
#undef HAVE_STRLCAT
#undef HAVE_STRLCPY
#undef HAVE_STRNCASECMP
/*
* Do we have the (v)snprintf() functions?
*/
#undef HAVE_SNPRINTF
#undef HAVE_VSNPRINTF
/*
* Which directory functions and headers do we use?
*/
#undef HAVE_DIRENT_H
#undef HAVE_SYS_DIR_H
#undef HAVE_SYS_NDIR_H
#undef HAVE_NDIR_H
/*
* Where is the "gzip" executable?
*/
#define EPM_GZIP "gzip"
/*
* Compress files by default?
*/
#define EPM_COMPRESS 0