Commit 510bcca2 authored by Poul-Henning Kamp's avatar Poul-Henning Kamp

Disable persistent storage on s390

The ASLR is now so aggresive that it never works.
parent 9edc3449
......@@ -22,6 +22,13 @@ else
DST="--prefix=/opt/varnish --mandir=/opt/varnish/man"
fi
PERSISTENT=--with-persistent-storage
if [ `uname -m` = "s390x" ] ; then
# ASLR makes this impossible
PERSISTENT=
fi
rm -f $SRCDIR/configure
autoreconf -i -v $SRCDIR
......@@ -34,6 +41,6 @@ $SRCDIR/configure \
--enable-developer-warnings \
--enable-debugging-symbols \
--enable-dependency-tracking \
--with-persistent-storage \
${PERSISTENT} \
--with-contrib \
"$@"
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment