|
Revision 3341, 461 bytes
(checked in by des, 17 months ago)
|
|
config-cache is more trouble than it's worth.
|
-
Property svn:executable set to
*
-
Property svn:keywords set to
Id
|
| Line | |
|---|
| 1 | #!/bin/sh |
|---|
| 2 | # |
|---|
| 3 | # $Id$ |
|---|
| 4 | # |
|---|
| 5 | |
|---|
| 6 | set -ex |
|---|
| 7 | |
|---|
| 8 | . ./autogen.sh |
|---|
| 9 | |
|---|
| 10 | # autoconf prior to 2.62 has issues with zsh 4.2 and newer |
|---|
| 11 | export CONFIG_SHELL=/bin/sh |
|---|
| 12 | |
|---|
| 13 | ./configure \ |
|---|
| 14 | --enable-developer-warnings \ |
|---|
| 15 | --enable-debugging-symbols \ |
|---|
| 16 | --enable-dependency-tracking \ |
|---|
| 17 | --enable-diagnostics \ |
|---|
| 18 | --enable-extra-developer-warnings \ |
|---|
| 19 | --enable-stack-protector \ |
|---|
| 20 | --enable-tests \ |
|---|
| 21 | --enable-werror \ |
|---|
| 22 | --prefix=/opt/varnish \ |
|---|
| 23 | --mandir=/opt/varnish/man \ |
|---|
| 24 | "$@" |
|---|