From 3abb513923adb1f5238a62dd7c64c433a08d9d62 Mon Sep 17 00:00:00 2001 From: Vito Caputo Date: Mon, 26 Nov 2018 23:46:55 -0800 Subject: *: 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. --- configure.ac | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 configure.ac (limited to 'configure.ac') 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 -- cgit v1.2.3