summaryrefslogtreecommitdiffstats
path: root/config
diff options
context:
space:
mode:
authorTavian Barnes <tavianator@tavianator.com>2024-04-18 15:34:33 -0400
committerTavian Barnes <tavianator@tavianator.com>2024-04-19 15:50:45 -0400
commit29ddac2bf64bb305b285db86015abebe8a0bd8b3 (patch)
tree34037b66261685496377e11f398014f71a70d843 /config
parent0035cc4ff492cab91adeb49d0c577fe5982064bd (diff)
config: Check for posix_spawn_file_actions_addfchdir{,_np}()
Diffstat (limited to 'config')
-rw-r--r--config/header.mk4
-rw-r--r--config/posix-spawn-addfchdir-np.c11
-rw-r--r--config/posix-spawn-addfchdir.c11
-rw-r--r--config/prelude.mk2
4 files changed, 26 insertions, 2 deletions
diff --git a/config/header.mk b/config/header.mk
index 3a1271e..8867200 100644
--- a/config/header.mk
+++ b/config/header.mk
@@ -10,7 +10,9 @@ include config/exports.mk
# All header fragments we generate
HEADERS := \
${GEN}/getprogname.h \
- ${GEN}/getprogname-gnu.h
+ ${GEN}/getprogname-gnu.h \
+ ${GEN}/posix-spawn-addfchdir.h \
+ ${GEN}/posix-spawn-addfchdir-np.h
${GEN}/config.h: ${HEADERS}
${MSG} "[ GEN] ${TGT}"
diff --git a/config/posix-spawn-addfchdir-np.c b/config/posix-spawn-addfchdir-np.c
new file mode 100644
index 0000000..b870a53
--- /dev/null
+++ b/config/posix-spawn-addfchdir-np.c
@@ -0,0 +1,11 @@
+// Copyright © Tavian Barnes <tavianator@tavianator.com>
+// SPDX-License-Identifier: 0BSD
+
+#include <spawn.h>
+
+int main(void) {
+ posix_spawn_file_actions_t actions;
+ posix_spawn_file_actions_init(&actions);
+ posix_spawn_file_actions_addfchdir_np(&actions, 3);
+ return 0;
+}
diff --git a/config/posix-spawn-addfchdir.c b/config/posix-spawn-addfchdir.c
new file mode 100644
index 0000000..c52ff81
--- /dev/null
+++ b/config/posix-spawn-addfchdir.c
@@ -0,0 +1,11 @@
+// Copyright © Tavian Barnes <tavianator@tavianator.com>
+// SPDX-License-Identifier: 0BSD
+
+#include <spawn.h>
+
+int main(void) {
+ posix_spawn_file_actions_t actions;
+ posix_spawn_file_actions_init(&actions);
+ posix_spawn_file_actions_addfchdir(&actions, 3);
+ return 0;
+}
diff --git a/config/prelude.mk b/config/prelude.mk
index 0ac5fde..b9bc61b 100644
--- a/config/prelude.mk
+++ b/config/prelude.mk
@@ -110,7 +110,7 @@ MSG = @msg() { \
msg
# Maximum width of a short message, to align the [X]
-MSG_WIDTH := 24
+MSG_WIDTH := 33
# cat a file if V=1
VCAT,y := @cat