summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVito Caputo <vcaputo@pengaru.com>2018-11-27 00:13:23 -0800
committerVito Caputo <vcaputo@pengaru.com>2018-11-27 00:24:24 -0800
commit4c25d8b865534db92ab08f9c4723b7fc831f4e96 (patch)
tree840851bcba9fa1f0f0506a2f299c7d51fb1ed871
parentb9f85a38b51eaa8b0590deedfc2cc9c247e920db (diff)
*: incorporate libpad submodule
In preparation of adding an ix2_reset() method, pull in the libpad allocator which will be used for caching all allocations instead of the libc allocator, and a convenient fast reset.
-rw-r--r--.gitmodules3
-rw-r--r--Makefile.am2
-rwxr-xr-xbootstrap4
-rw-r--r--configure.ac5
m---------libpad0
5 files changed, 10 insertions, 4 deletions
diff --git a/.gitmodules b/.gitmodules
new file mode 100644
index 0000000..f10f023
--- /dev/null
+++ b/.gitmodules
@@ -0,0 +1,3 @@
+[submodule "libpad"]
+ path = libpad
+ url = git://git.pengaru.com/libpad
diff --git a/Makefile.am b/Makefile.am
index af437a6..52621f0 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -1 +1 @@
-SUBDIRS = src
+SUBDIRS = libpad src
diff --git a/bootstrap b/bootstrap
index 99f6f06..c5a7472 100755
--- a/bootstrap
+++ b/bootstrap
@@ -1,5 +1,3 @@
#!/bin/sh
-aclocal \
-&& automake --gnu --add-missing \
-&& autoconf
+autoreconf --install
diff --git a/configure.ac b/configure.ac
index bc889ed..7dde710 100644
--- a/configure.ac
+++ b/configure.ac
@@ -10,4 +10,9 @@ AC_CONFIG_FILES([
Makefile
src/Makefile
])
+
+AC_CONFIG_SUBDIRS([
+ libpad
+])
+
AC_OUTPUT
diff --git a/libpad b/libpad
new file mode 160000
+Subproject 3abb513923adb1f5238a62dd7c64c433a08d9d6
© All Rights Reserved