Fix how we do manpages.
[awesomized/libmemcached] / bootstrap.sh
1 #!/bin/bash
2 #
3 # Copyright (C) 2012 Brian Aker
4 # All rights reserved.
5 #
6 # Redistribution and use in source and binary forms, with or without
7 # modification, are permitted provided that the following conditions are
8 # met:
9 #
10 # * Redistributions of source code must retain the above copyright
11 # notice, this list of conditions and the following disclaimer.
12 #
13 # * Redistributions in binary form must reproduce the above
14 # copyright notice, this list of conditions and the following disclaimer
15 # in the documentation and/or other materials provided with the
16 # distribution.
17 #
18 # * The names of its contributors may not be used to endorse or
19 # promote products derived from this software without specific prior
20 # written permission.
21 #
22 # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
23 # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
24 # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
25 # A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
26 # OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
27 # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
28 # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
29 # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
30 # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
31 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
32 # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
33
34 die() { echo "$@"; exit 1; }
35
36 command_exists () {
37 type "$1" &> /dev/null ;
38 }
39
40 run() {
41 echo $TESTS_ENVIRONMENT
42 echo "\`$@' $ARGS"
43 $@ $ARGS
44 }
45
46 bootstrap() {
47 if [ -d .git ]
48 then
49 AUTORECONF_FLAGS="--install --force --verbose -Wall -Werror"
50 elif [ -d .bzr ]
51 then
52 AUTORECONF_FLAGS="--install --force --verbose -Wall -Werror"
53 elif [ -d .svn ]
54 then
55 AUTORECONF_FLAGS="--install --force --verbose -Wall -Werror"
56 elif [ -d .hg ]
57 then
58 AUTORECONF_FLAGS="--install --force --verbose -Wall -Werror"
59 else
60 AUTORECONF_FLAGS="--install --force --verbose -Wall"
61 fi
62
63 LIBTOOLIZE_FLAGS="--force --verbose"
64
65 if [ $(uname) = "Darwin" ]
66 then
67 LIBTOOLIZE=glibtoolize
68 elif [ -z "$LIBTOOLIZE" ]
69 then
70 LIBTOOLIZE=libtoolize
71 fi
72
73 AUTOMAKE=automake
74 AUTORECONF=autoreconf
75
76 AUTOMAKE_FLAGS=--add-missing
77
78
79 # Set ENV DEBUG in order to enable debugging
80 if [ -n "$DEBUG" ]
81 then
82 DEBUG="--enable-debug"
83 fi
84
85 # Set ENV ASSERT in order to enable assert
86 if [ -n "$ASSERT" ]
87 then
88 ASSERT="--enable-assert"
89 fi
90
91 # Set ENV VALGRIND in order to enable assert
92 if [ -n "$VALGRIND" ] && command_exists valgrind
93 then
94 VALGRIND="valgrind --error-exitcode=1 --leak-check=yes --show-reachable=yes --track-fds=yes --malloc-fill=A5 --free-fill=DE"
95 TESTS_ENVIRONMENT="$VALGRIND"
96 fi
97
98 # Set ENV MAKE in order to override "make"
99 if [ -z "$MAKE" ]
100 then
101 MAKE="make"
102 fi
103
104 # Set ENV MAKE_J in order to override "-j2"
105 if [ -z "$MAKE_J" ]
106 then
107 MAKE_J="-j2"
108 fi
109
110 # Set ENV PREFIX in order to set --prefix for ./configure
111 if [ -n "$PREFIX" ]
112 then
113 PREFIX="--prefix=$PREFIX"
114 fi
115
116 if [ -f Makefile ]
117 then
118 $MAKE $MAKE_J maintainer-clean
119 fi
120
121 run $LIBTOOLIZE $LIBTOOLIZE_FLAGS || die "Can't execute $LIBTOOLIZE"
122 run $AUTOMAKE $AUTOMAKE_FLAGS || die "Can't execute $AUTORECONF"
123 run $AUTORECONF $AUTORECONF_FLAGS || die "Can't execute $AUTORECONF"
124
125 # If we are executing on OSX use CLANG, otherwise only use it if we find it in the ENV
126 if [ $(uname) = "Darwin" ]
127 then
128 CC=clang CXX=clang++ ./configure $DEBUG $ASSERT $PREFIX || die "configure failed to run"
129 else
130 ./configure $DEBUG $ASSERT $PREFIX || die "configure failed to run"
131 fi
132
133 if [[ -n "$TESTS_ENVIRONMENT" ]] && [[ -f libtool ]]
134 then
135 TESTS_ENVIRONMENT="./libtool --mode=execute $TESTS_ENVIRONMENT"
136 export TESTS_ENVIRONMENT
137 fi
138
139 if [ -f docs/conf.py ]
140 then
141 run $MAKE $MAKE_J man || die "Can't execute make"
142 fi
143
144 # Set ENV MAKE_TARGET in order to override default of "all"
145 if [ -z "$MAKE_TARGET" ]
146 then
147 MAKE_TARGET="all"
148 fi
149
150 run $MAKE $MAKE_J $MAKE_TARGET || die "Can't execute make"
151 }
152
153 bootstrap