[mod_cgi] skip local-redir handling if to self (fixes #2779, #2108)
[lighttpd.git] / autogen.sh
blob7377a64a3e5952ba920cc54b03fd53c7f137759b
1 #!/bin/sh
2 # Run this to generate all the initial makefiles, etc.
4 set -e
6 if [ ! -f configure.ac -o ! -f COPYING ]; then
7 echo "Doesn't look like you're in the source directory" >&2
8 exit 1
9 fi
11 # old autoreconf/aclocal versions fail hard if m4 doesn't exist
12 mkdir -p m4
13 autoreconf --force --install
14 echo "Now type './configure ...' and 'make' to compile."