svn commit: trunk/uClibc/libc/misc/glob

aldot at uclibc.org aldot at uclibc.org
Tue Jan 30 17:26:39 UTC 2007


Author: aldot
Date: 2007-01-30 09:26:38 -0800 (Tue, 30 Jan 2007)
New Revision: 17671

Log:
- should look if LFS is enabled as suggested by pkj in #1131. This generates identical cc1 input for LFS enabled (compared to before r17652) but makes sure that we pickup the non-LFS if LFS is turned off (like r17652 did in this case).


Modified:
   trunk/uClibc/libc/misc/glob/glob.c


Changeset:
Modified: trunk/uClibc/libc/misc/glob/glob.c
===================================================================
--- trunk/uClibc/libc/misc/glob/glob.c	2007-01-30 16:47:27 UTC (rev 17670)
+++ trunk/uClibc/libc/misc/glob/glob.c	2007-01-30 17:26:38 UTC (rev 17671)
@@ -361,7 +361,7 @@
 		{
 		  const char *name;
 		  size_t len;
-#if defined COMPILE_GLOB64
+#if defined __UCLIBC_HAS_LFS__ && !defined COMPILE_GLOB64
 		  struct dirent64 *d;
 		  union
 		    {




More information about the uClibc-cvs mailing list