This is the mail archive of the newlib@sourceware.org mailing list for the newlib project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

readdir_r not compiled


Hi,

I noticed that readdir_r wasn't in our libc.a
with posix enabled and now know why.  Typo
in a Makefile.am.

Sorry Ralf.. this two character patch means another
spin on the test tool RPMs. :(

2008-11-24 Joel Sherrill <joel.sherrill@oarcorp.com>

   * libc/posix/Makefile.am: Compile readdir_r.c
   not readdir.c twice.

--
Joel Sherrill, Ph.D.             Director of Research & Development
joel.sherrill@OARcorp.com        On-Line Applications Research
Ask me about RTEMS: a free RTOS  Huntsville AL 35805
  Support Available             (256) 722-9985


Index: Makefile.am
===================================================================
RCS file: /cvs/src/src/newlib/libc/posix/Makefile.am,v
retrieving revision 1.10
diff -u -r1.10 Makefile.am
--- Makefile.am	19 Nov 2008 20:55:51 -0000	1.10
+++ Makefile.am	24 Nov 2008 17:24:58 -0000
@@ -7,7 +7,7 @@
 GENERAL_SOURCES = \
 	closedir.c collate.c collcmp.c creat.c \
 	fnmatch.c glob.c _isatty.c isatty.c \
-	opendir.c readdir.c readdir.c \
+	opendir.c readdir.c readdir_r.c \
 	regcomp.c regerror.c regexec.c regfree.c \
 	rewinddir.c sleep.c usleep.c \
 	telldir.c

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]