
Full changelog here: http://www.canonware.com/cgi-bin/gitweb.cgi?p=jemalloc.git;a=blob_plain;f=ChangeLog;hb=master Notable improvements from the point of view of Redis: 1) Bugfixing. 2) Support for Valgrind. 3) Support for OSX Lion, FreeBSD.
18 lines
266 B
Bash
Executable File
18 lines
266 B
Bash
Executable File
#!/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
|