diff options
| author | Austin Foxley <austinf@cetoncorp.com> | 2009-10-17 11:15:57 -0700 |
|---|---|---|
| committer | Austin Foxley <austinf@cetoncorp.com> | 2009-10-17 11:22:11 -0700 |
| commit | 011e2470700cb5eb65c226bdb0640993fd3e7c6d (patch) | |
| tree | bf5d8b4fb9d552ad973bfb5a1303fab9a3a9771b /libc/stdlib | |
| parent | 56ee02b19ec01bef0ab6da46e54e40a418a29bab (diff) | |
| download | uClibc-alpine-011e2470700cb5eb65c226bdb0640993fd3e7c6d.tar.bz2 uClibc-alpine-011e2470700cb5eb65c226bdb0640993fd3e7c6d.tar.xz | |
mktemp does not depend on floats
Signed-off-by: Austin Foxley <austinf@cetoncorp.com>
Diffstat (limited to 'libc/stdlib')
| -rw-r--r-- | libc/stdlib/Makefile.in | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/libc/stdlib/Makefile.in b/libc/stdlib/Makefile.in index 1b549c543..af8be6451 100644 --- a/libc/stdlib/Makefile.in +++ b/libc/stdlib/Makefile.in @@ -32,9 +32,12 @@ CSRC += mkstemp64.c endif ifeq ($(UCLIBC_HAS_FLOATS),y) CSRC += drand48.c drand48_r.c erand48.c erand48_r.c +ifeq ($(UCLIBC_SUSV3_LEGACY),y) +CSRC += gcvt.c +endif endif ifeq ($(UCLIBC_SUSV3_LEGACY),y) -CSRC += gcvt.c mktemp.c +CSRC += mktemp.c endif # multi source stdlib.c |
