lighttpd 1.4.x
https://www.lighttpd.net/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
491 B
21 lines
491 B
#!/bin/sh |
|
# Run this to generate all the initial makefiles, etc. |
|
|
|
function errtrace { |
|
echo 1>&2 \ |
|
"build requires autoconf automake libtool m4 pcre pcre-devel pkg-config" |
|
} |
|
|
|
trap errtrace ERR |
|
|
|
set -e |
|
|
|
if [ ! -f configure.ac -o ! -f COPYING ]; then |
|
echo "Doesn't look like you're in the source directory" >&2 |
|
exit 1 |
|
fi |
|
|
|
# old autoreconf/aclocal versions fail hard if m4 doesn't exist |
|
mkdir -p m4 |
|
autoreconf --force --install |
|
echo "Now type './configure ...' and 'make' to compile."
|
|
|