summaryrefslogtreecommitdiff
path: root/configure.ac
AgeCommit message (Collapse)AuthorFilesLines
2013-10-25Add a new int-set structure for a set of integersCarl Worth1-0/+1
Much like the motivation for the original set.c, this int-set.c code is not difficult, but it makes sense to do this up-front in the original hash_table module (with testing) rather than expecting users to repeat this work.
2011-08-18Add a set implementation derived from the hash_table implementation.Eric Anholt1-0/+1
While it was easy to produce, it's easier to do it once and maintain it than leave this up to every possible user. Plus, it means it gets testing.
2009-11-23Add testing infrastructure.Eric Anholt1-0/+3
2009-11-23Remove AM_MAINTAINER_MODE stuff.Eric Anholt1-1/+0
While it was cargo-culted from many other projects, allowing people to lose the Makefile regeneration rules is a recipe for disaster. autotools is apparently discouraging the presence of AM_MAINTAINER_MODE, in a shocking bout of sanity.
2009-11-23Initial import of hash_table.Eric Anholt1-0/+51
This is entirely written by myself, with the exception of the hash_sizes[] contents which come from the hash_table implementation in nickle, which I decided to not use.