blob: dac639eeaa49619e78ee10be3717a544d0a5ed64 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
#!/bin/sh --
# $Id$
# Small shell script to build gd from source
# Generate the manual (unless naturaldocs isn't installed). Source
# dists should include the docs so that end users don't need to
# install naturaldocs. At the same time, we tolerate it being missing
# so that random hackers don't need it just to build the code.
if which naturaldocs > /dev/null; then
echo "Generation user docs:"
(cd docs/naturaldocs; bash run_docs.sh)
else
echo "Can't find naturaldocs; not generating user manual."
fi
# allow importing from the environment, e.g.
# "AUTOCONF=autoconf259 ... ./bootstrap.sh"
if echo $OSTYPE | grep -q '^darwin' ; then
echo Having trouble on OS X? Try brew install autoconf libtool automake gettext apple-gcc42 pkg-config cmake
LIBTOOLIZE=${LIBTOOLIZE:-glibtoolize}
fi
ACLOCAL=${ACLOCAL:-aclocal}
AUTOCONF=${AUTOCONF:-autoconf}
AUTOHEADER=${AUTOHEADER:-autoheader}
AUTOMAKE=${AUTOMAKE:-automake}
LIBTOOLIZE=${LIBTOOLIZE:-libtoolize}
# might handle this differently
AUTOMAKE_FLAGS="--add-missing --copy"
#
CLEANFILES="Makefile.in aclocal.m4 autom4te.cache configure libtool config/Makefile.in \
tests/Makefile.in src/Makefile.in"
#
rm -rf ${CLEANFILES}
#
if ${ACLOCAL} -I m4 \
&& ${LIBTOOLIZE} --automake --copy --force \
&& ${ACLOCAL} -I m4 \
&& ${AUTOHEADER} \
&& ${AUTOMAKE} ${AUTOMAKE_FLAGS} \
&& ${AUTOCONF} --force && [ -f configure ]
then
echo Now run configure and make
else
echo Failed
exit 1
fi
exit 0
|