summaryrefslogtreecommitdiff
path: root/librt/Makefile.in
diff options
context:
space:
mode:
authorIsmael Luceno <ismael.luceno@gmail.com>2012-03-05 06:43:49 -0200
committerMike Frysinger <vapier@gentoo.org>2012-03-25 01:45:23 -0400
commit0dcf66744f533e160232072bd03273ca1c448879 (patch)
tree3658f9d75614bede75cfd49e00da4e73da2e8436 /librt/Makefile.in
parentd1bc0c9915e3b1db796f4466de6167c0a0f0f108 (diff)
librt: add posix_spawn support
Signed-off-by: Ismael Luceno <ismael.luceno@gmail.com> Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Diffstat (limited to 'librt/Makefile.in')
-rw-r--r--librt/Makefile.in8
1 files changed, 8 insertions, 0 deletions
diff --git a/librt/Makefile.in b/librt/Makefile.in
index 909afd884..857efb517 100644
--- a/librt/Makefile.in
+++ b/librt/Makefile.in
@@ -33,6 +33,14 @@ else
librt_filter_SRC += clock_nanosleep.c clock_getcpuclockid.c clock_gettime.c
librt_SSRC :=
endif
+
+librt_filter_SRC += $(if $(UCLIBC_HAS_ADVANCED_REALTIME),, \
+ spawn.c \
+ spawn_faction_addclose.c \
+ spawn_faction_adddup2.c \
+ spawn_faction_addopen.c \
+ spawn_faction_init.c)
+
librt_SRC := $(filter-out $(librt_filter_SRC),$(librt_SRC))
librt_OBJ := $(patsubst %.c,$(librt_OUT)/%.o,$(librt_SRC))