[uClibc-cvs] uClibc/libc/stdio Makefile,1.43,1.44

Manuel Novoa III mjn3 at uclibc.org
Fri Feb 13 01:03:50 UTC 2004


Update of /var/cvs/uClibc/libc/stdio
In directory nail:/tmp/cvs-serv5771

Modified Files:
	Makefile 
Log Message:
Oops.. The custom stream funcs should only be compiled if wanted.


Index: Makefile
===================================================================
RCS file: /var/cvs/uClibc/libc/stdio/Makefile,v
retrieving revision 1.43
retrieving revision 1.44
diff -u -d -r1.43 -r1.44
--- Makefile	11 Feb 2004 23:48:42 -0000	1.43
+++ Makefile	13 Feb 2004 01:03:48 -0000	1.44
@@ -43,7 +43,7 @@
 # Implementation support functions
 CSRC += _READ.c _WRITE.c _adjust_pos.c _fopen.c _fwrite.c \
 	_rfill.c _stdio.c _trans2r.c _trans2w.c _wcommit.c \
-	_load_inttype.c _store_inttype.c _uintmaxtostr.c
+	_cs_funcs.c _load_inttype.c _store_inttype.c _uintmaxtostr.c
 ifeq ($(strip $(UCLIBC_HAS_FLOATS)),y)
 CSRC += _fpmaxtostr.c
 endif
@@ -53,7 +53,9 @@
 	__freading.c __fsetlocking.c __fwritable.c __fwriting.c _flushlbf.c
 
 # Other glibc extensions
-CSRC += fopencookie.c fmemopen.c open_memstream.c _cs_funcs.c
+ifeq ($(strip $(UCLIBC_HAS_GLIBC_CUSTOM_STREAMS)),y)
+CSRC += fopencookie.c fmemopen.c open_memstream.c
+endif
 
 # pthread functions
 ifeq ($(strip $(UCLIBC_HAS_THREADS)),y)




More information about the uClibc-cvs mailing list