File: bootstrap.sh

package info (click to toggle)
libgd2 2.3.3-13
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 13,396 kB
  • sloc: ansic: 49,708; sh: 5,660; javascript: 1,859; cpp: 1,308; makefile: 345; perl: 197; tcl: 45
file content (27 lines) | stat: -rwxr-xr-x 796 bytes parent folder | download | duplicates (2)
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
#!/bin/sh --
# Small shell script to build gd from source

v() { echo "$@"; "$@"; }

# 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.
v docs/naturaldocs/run_docs.sh --nonfatal

if uname | grep -qi '^darwin' ; then
	echo "Having trouble on OS X? Try: brew install autoconf libtool automake gettext pkg-config cmake"
fi

if ! v autoreconf -f -i ; then
	exit 1
fi

(
echo "/* Generated from config.hin via autoheader for cmake; see bootstrap.sh. */"
sed -E \
	-e '1d' \
	-e '/ENABLE_/s:#undef:#cmakedefine01:' \
	-e 's:#undef:#cmakedefine:' \
	src/config.hin
) > src/config.h.cmake