summaryrefslogtreecommitdiff
path: root/hash.h
AgeCommit message (Collapse)AuthorFilesLines
2012-10-28Rearrange elements to reduce struct size on 64bit architectures.Paul Smith1-3/+3
2012-03-04Convert all "`'" quotes to "''" per new GNU Coding Standard guidelines.Paul Smith1-3/+3
Fixes Savannah bug #34530.
2010-07-13Update copyrights for 2010.Paul Smith1-1/+1
2009-09-24- Rework secondary expansion so we only defer it if there's a possibilityPaul Smith1-6/+9
it might be needed: for most situations we parse prereqs immediately as we used to. Reduces memory usage. - Fixes Savannah bug #18622.
2007-07-04* Update to GPLv3Paul Smith1-10/+8
* Update copyright to 2007 * Fix download URL for translation files (thanks to Thiemo Seufer)
2007-05-09Fix Savannah bug #19656: rationalize our use of case-insensitive stringPaul Smith1-2/+2
comparison functions to always use POSIX strcasecmp(). For non-POSIX systems that use other functions (strcmpi or stricmp) use a macro to alias strcasecmp to those. If we can't find any of them (VMS, plus whatever UNIX doesn't have them) then define our own version in misc.c.
2006-02-11More copyright/license updates.Paul Smith1-16/+16
2006-02-10- New code capability: a read-only string cache. Start of solution forPaul Smith1-2/+2
Savannah bug #15182, but not much uses it yet. Coming shortly. - Added short-circuiting $(and ..) and $(or ...) functions.
2002-09-11Fix HAVE_BROKEN_RESTART logic.Paul Smith1-3/+3
Fix hash.h typos (only noticed when using Windows). Update .cvsignore files.
2002-08-08Incorporate some VMS fixes.Paul Smith1-2/+2
Add -B option docs. Add .VARIABLES variable. Add a few new tests. Add a new translation: Swedish
2002-07-11Install Greg McGary's patches to port the id-utils hashing functions toPaul Smith1-0/+233
GNU make. Also he provides some other performance fixups after doing some profiling of make on large makefiles. Modify the test suite to allow the use of Valgrind to find memory problems.