aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRob Landley <rob@landley.net>2018-04-18 10:32:20 -0500
committerRob Landley <rob@landley.net>2018-04-18 10:32:20 -0500
commit941f5644d18b751693bf086c4af1dc21cae558d8 (patch)
tree868e14aa0978c01436282a749f933e6f6e722de1
parent1e1684742dc26e62bbc2afbaab124fca58d60c8e (diff)
downloadtoybox-941f5644d18b751693bf086c4af1dc21cae558d8.tar.gz
Add the flags linux kernel build checks for.
-rw-r--r--toys/posix/getconf.c20
1 files changed, 14 insertions, 6 deletions
diff --git a/toys/posix/getconf.c b/toys/posix/getconf.c
index adc96e64..a97bc1af 100644
--- a/toys/posix/getconf.c
+++ b/toys/posix/getconf.c
@@ -107,15 +107,20 @@ char *limit_names[] = {
"_POSIX2_RE_DUP_MAX"
};
+// Names that default to blank
+char *other_names[] = {
+ "LFS_CFLAGS", "LFS_LDFLAGS", "LFS_LIBS"
+};
+
void getconf_main(void)
{
- char **names[] = {sysconf_names, confstr_names, limit_names},
+ char **names[] = {sysconf_names, confstr_names, limit_names, other_names},
**args;
- int i, j, lens[] = {ARRAY_LEN(sysconf_names),
- ARRAY_LEN(confstr_names), ARRAY_LEN(limit_names)};
+ int i, j, lens[] = {ARRAY_LEN(sysconf_names), ARRAY_LEN(confstr_names),
+ ARRAY_LEN(limit_names), ARRAY_LEN(other_names)};
if (toys.optflags&FLAG_l) {
- for (i = 0; i<3; i++) for (j = 0; j<lens[i]; j++) puts(names[i][j]);
+ for (i = 0; i<4; i++) for (j = 0; j<lens[i]; j++) puts(names[i][j]);
return;
}
@@ -126,14 +131,17 @@ void getconf_main(void)
// Workaround for autogen using CS_PATH instead of PATH
if (!strcmp("CS_PATH", name)) name += 3;
- for (i = 0; i<3; i++) for (j = 0; j<lens[i]; j++) {
+ for (i = 0; i<4; i++) for (j = 0; j<lens[i]; j++) {
if (strcmp(names[i][j], name)) continue;
if (!i) printf("%ld\n", sysconf(sysconf_vals[j]));
else if (i==1) {
confstr(confstr_vals[j], toybuf, sizeof(toybuf));
puts(toybuf);
- } else printf("%d\n", limit_vals[j]);
+ } else if (i==2) printf("%d\n", limit_vals[j]);
+ // For legacy kernel build
+ else if (sizeof(long)==4 && !j)
+ puts("-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64");
goto cont;
}