summaryrefslogtreecommitdiffstats
path: root/libc/misc/glob
Commit message (Collapse)AuthorAgeFilesLines
* prettify make cleanBernhard Reutner-Fischer2010-03-251-2/+2
| | | | Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
* silence some warnings about unused paramsBernhard Reutner-Fischer2010-01-231-1/+2
| | | | Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
* convert // comments to /**/; remove empty #if/#endif pairs. no code changesDenys Vlasenko2009-09-182-9/+0
| | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* trim Experimentally off and uncommented hiddenBernhard Reutner-Fischer2009-09-182-41/+0
| | | | | | | | sed -i -e '/Experimentally off - /d' $(grep -rl "Experimentally off - " *) sed -i -e '/^\/\*[[:space:]]*libc_hidden_proto(/d' $(grep -rl "libc_hidden_proto" *) should be a nop Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
* support building out-of-treeBernhard Reutner-Fischer2009-08-171-0/+2
| | | | | | Handle O= Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
* Last portion of libc_hidden_proto removal.Denis Vlasenko2008-11-202-25/+25
| | | | | Appears to build fine (several .configs tried)
* next portion of libc_hidden_proto removalDenis Vlasenko2008-11-202-2/+2
|
* - less verbose make cleanBernhard Reutner-Fischer2008-11-071-4/+4
|
* - remove non stdc path (old style definitions). No obj-code changesBernhard Reutner-Fischer2008-09-181-7/+6
|
* - trim any trailing whitespaceBernhard Reutner-Fischer2008-07-232-4/+4
|
* replace "if (p) free(p)" by just "free(p)" - free(NULL) is safe.Denis Vlasenko2008-05-201-2/+1
|
* Moving libc_hidden_proto's into #ifdef UCLIBC_INTERNAL blockDenis Vlasenko2008-05-192-14/+14
| | | | | | | | | in string.h and strings.h. This caught unguarded string ops in libc/inet/ethers.c __ether_line_w() function. I will wait for fallout reports for a week or so, then continue converting more libc_hidden_proto's.
* - should look if LFS is enabled as suggested by pkj in #1131. This generates ↵Bernhard Reutner-Fischer2007-01-301-1/+1
| | | | 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).
* - fix compilation of GNU glob with !LFSBernhard Reutner-Fischer2007-01-291-1/+1
| | | | Sounds like a typo, really
* psm writes:Eric Andersen2006-07-132-36/+1
| | | | | | | | forgotten to mention to remove glob-hooks.c and the reference in Makefile.in (the prototypes for the 3 hooks were already removed by the patch applied here) Peter
* patch from psm:Eric Andersen2006-07-131-19/+15
| | | | | | | | | | | | | | | - malloc/realloc/free are not prepared to be hidable in trunk, you can't use libc_hidden_proto(x) for them - using libc_hidden_proto(x64) LFS unguarded will fail because the header does not provide the prototype - if you are using libc_hidden_proto(collated_compare|prefix_array), you also need libc_hidden_def|_weak(x) after the function itself, the result being to provide a hidden __GI_collated_compare and a visible collated_compare, for this case I do not consider this necessary, especially that collated_compare is hidden already (I have chosen to prefix them with __ to know that they are intended to be internal only, against the practice in glibc, you could go without prefix as well)
* remove jump relocs, with minor related cleanupsEric Andersen2006-07-052-40/+53
|
* fixup my copyright notice, trim stale remnants of older notices whichEric Andersen2006-07-051-1/+0
| | | | I had clearly run search/replace on that were cluttering things up.
* minor updatesEric Andersen2006-07-052-52/+56
|
* gcc 4.1.x is apparently miscompiling gnu glob on mips. This ports the ↵Eric Andersen2006-07-042-228/+771
| | | | | | | latest and massivly bloated greatest from glibc. And fixes things so the gnu glob interface is no longer the default.
* Rich Felker's glob() ported to uClibcPeter S. Mazinger2006-02-273-0/+349
|
* Don't build glob64 for non-LFSPeter S. Mazinger2006-02-261-1/+4
|
* Use _lfs_64, reorganize a bit, why did stat*fs64 use stat*fs?Peter S. Mazinger2006-02-261-17/+1
|
* Change collated_compare/prefix_array to __x hidden, shrinks glob64 from 2352 ↵Peter S. Mazinger2006-02-161-8/+10
| | | | to 2063
* Remove __P(), reorder so that gcc-4.0.2 does not fail w/ multiPeter S. Mazinger2006-02-163-230/+205
|
* libc-{a,so,multi}-y replaced by libc-y covering common objects both in ↵Peter S. Mazinger2006-02-131-13/+8
| | | | libc.a/libc.so, the diffs go into libc-static-y/libc-shared-y exclusively, add IMA to libc, don't use any MSRC anymore
* no point in redeclaring oldcount locallyMike Frysinger2006-01-291-2/+0
|
* Enable _GNU_SOURCE build wide, trying to get consistent interfaces, else IMA ↵Peter S. Mazinger2006-01-222-2/+0
| | | | is a useless attempt
* make gcc4 happy w/ hidden_def/proto, correct some typosPeter S. Mazinger2006-01-152-36/+35
|
* hide __glob_*dir_hookPeter S. Mazinger2006-01-152-6/+6
|
* hidden_def/hidden_proto: convert all users (I hope) termios split, add some ↵Peter S. Mazinger2006-01-142-29/+34
| | | | missing headers, other jump relocs removed
* Hope it solves JBG's problem, why didn't it bail out here?Peter S. Mazinger2005-12-161-0/+4
|
* glob/ftw/regex_old reworked. regex_old did not have MBS_SUPPORT enabledPeter S. Mazinger2005-12-162-17/+39
|
* Convert all users of earlier hiddensPeter S. Mazinger2005-12-132-3/+3
|
* Convert internal users of chmod/*stat*, minimize change for __strsepPeter S. Mazinger2005-12-131-1/+1
|
* Use internal versionsPeter S. Mazinger2005-12-081-3/+7
|
* More hiding, 300 leftPeter S. Mazinger2005-12-041-0/+1
|
* Hide mostly used functionsPeter S. Mazinger2005-12-011-13/+13
|
* Hide some of mem* and str*Peter S. Mazinger2005-11-271-0/+3
|
* Remove TOPDIRPeter S. Mazinger2005-11-211-3/+1
|
* Sync w/ dirent.h, s:HAVE_D_NAMLEN:_DIRENT_HAVE_D_NAMLEN:Peter S. Mazinger2005-11-111-1/+1
|
* Enable IMAPeter S. Mazinger2005-11-031-1/+3
|
* Remove last unused references to libc-a-pic-, we use only the lists in ↵Peter S. Mazinger2005-11-011-1/+0
| | | | libc-a-y for objects that go into static libs, changing their suffix to .os, of they should be PIC
* Replace all Makefiles for new build infrastucturePeter S. Mazinger2005-10-291-37/+8
|
* All Makefile.in's. Only arm/i386/mips/powerpc/x86_64 are done, the other ↵Peter S. Mazinger2005-10-251-0/+30
| | | | archs lack proper crt1. The Makefiles in extra/scripts are intended to be linked into each dir, where it is necessary to build locally.
* Rewrote almost all Makefiles: do not use strip $(x),y; run strip on all ↵Peter S. Mazinger2005-10-121-8/+7
| | | | objects at once; use :=//$</$^; use CRT_SRC/CRT_OBJ/SCRT_OBJ/CSRC/COBJ/SSRC/SOBJ/MSRC/MOBJ where no more is needed, if only CSRC is present use OBJS directly instead of COBJ; CTOR_TARGETS are created directly in lib; remove unused/unneeded parts. Hope I haven't broken too much.
* import fix from glibc to resolve segfault reported by wmq in Bug 335Mike Frysinger2005-07-121-1/+1
|
* merge parallel build supportMike Frysinger2005-01-251-5/+4
|
* Peter Kjellerstedt writes:Eric Andersen2003-10-181-1/+1
| | | | | | | rm.patch: * Define $(RM) as rm -f in Rules.mak and test/Rules.mak (this is the same definition as gmake uses by default). * Change all occurrences of rm and rm -f into $(RM).
* Don't make two copiesEric Andersen2003-10-122-34/+40
|