diff options
author | Vito Caputo <vcaputo@pengaru.com> | 2018-11-26 23:46:55 -0800 |
---|---|---|
committer | Vito Caputo <vcaputo@pengaru.com> | 2018-11-26 23:46:55 -0800 |
commit | 3abb513923adb1f5238a62dd7c64c433a08d9d62 (patch) | |
tree | 58ce04e6d82548ea8a93446bd64a06af01e0749a /configure.ac |
*: initial commit
This is a simple allocator derived from the chunker in the
sparkler rototiller particle system module.
It's useful for pooling allocations of varying size with a
lot of churn. It also gives a convenient way of discarding
all allocations through a reset mechanism obviating the need
for granular freeing, where applicable.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac new file mode 100644 index 0000000..3283495 --- /dev/null +++ b/configure.ac @@ -0,0 +1,13 @@ +AC_INIT([libpad], [1.0], [vcaputo@pengaru.com]) +AM_INIT_AUTOMAKE([-Wall -Werror foreign]) +AC_PROG_CC +AM_PROG_CC_C_O +AM_PROG_AR +AC_PROG_RANLIB +AM_SILENT_RULES([yes]) + +AC_CONFIG_FILES([ + Makefile + src/Makefile +]) +AC_OUTPUT |