jemalloc source added

This commit is contained in:
antirez
2011-05-09 10:52:55 +02:00
parent 07486df6fe
commit a78e148b7d
83 changed files with 40431 additions and 0 deletions

17
deps/jemalloc/autogen.sh vendored Executable file
View File

@ -0,0 +1,17 @@
#!/bin/sh
for i in autoconf; do
echo "$i"
$i
if [ $? -ne 0 ]; then
echo "Error $? in $i"
exit 1
fi
done
echo "./configure --enable-autogen $@"
./configure --enable-autogen $@
if [ $? -ne 0 ]; then
echo "Error $? in ./configure"
exit 1
fi