summaryrefslogtreecommitdiff
path: root/libc/stdlib
diff options
context:
space:
mode:
authorBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2008-06-07 13:55:32 +0000
committerBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2008-06-07 13:55:32 +0000
commit8dec9e26aa8e5c92d87e57f745eef74810d088f9 (patch)
tree6b3e3648120ebc364c0cd36a6f869026d6c794be /libc/stdlib
parenta921f29db08ac413f92a9736332f9f0d1090f089 (diff)
- UCLIBC_HAS_GETPT pulls in getpt.
- ptsname_r depends on UCLIBC_HAS_PTY just like ptsname()
Diffstat (limited to 'libc/stdlib')
-rw-r--r--libc/stdlib/Makefile.in5
1 files changed, 4 insertions, 1 deletions
diff --git a/libc/stdlib/Makefile.in b/libc/stdlib/Makefile.in
index dfef6d18e..2f628362c 100644
--- a/libc/stdlib/Makefile.in
+++ b/libc/stdlib/Makefile.in
@@ -12,7 +12,7 @@ include $(top_srcdir)libc/stdlib/malloc-standard/Makefile.in
CSRC := \
abort.c getenv.c mkdtemp.c mktemp.c realpath.c mkstemp.c \
rand.c random.c random_r.c setenv.c system.c div.c ldiv.c lldiv.c \
- getpt.c drand48-iter.c jrand48.c \
+ drand48-iter.c jrand48.c \
jrand48_r.c lrand48.c lrand48_r.c mrand48.c mrand48_r.c nrand48.c \
nrand48_r.c rand_r.c srand48.c srand48_r.c seed48.c seed48_r.c \
valloc.c a64l.c l64a.c __uc_malloc.c
@@ -22,6 +22,9 @@ endif
ifeq ($(UCLIBC_HAS_PTY),y)
CSRC += grantpt.c unlockpt.c ptsname.c
endif
+ifeq ($(UCLIBC_HAS_GETPT),y)
+CSRC += getpt.c
+endif
ifeq ($(UCLIBC_HAS_ARC4RANDOM),y)
CSRC += arc4random.c
endif