forked from pbiering/ipv6calc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathautogen.sh
executable file
·229 lines (209 loc) · 5.77 KB
/
autogen.sh
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
#!/bin/sh
#
# Project : ipv6calc
# File : autogen.sh
# Version : $Id$
# Copyright : 2003-2015 by Peter Bieringer <pb (at) bieringer.de>
#
# Information: autogeneration of projects with optional features
OPTIONS_CONFIGURE=""
LAST=""
while [ "$1" != "$LAST" ]; do
LAST="$1"
case $1 in
'--no-make'|'-n')
shift
flag_no_make=1
;;
'--all'|'-a')
shift
OPTIONS_CONFIGURE="$OPTIONS_CONFIGURE --enable-geoip --enable-ip2location --enable-dbip --enable-external --enable-mod_ipv6calc"
SKIP_STATIC=1
use_geoip=1
use_ip2location=1
use_dbip=1
use_external=1
;;
'--geoip'|'-g')
shift
OPTIONS_CONFIGURE="$OPTIONS_CONFIGURE --enable-geoip"
SKIP_STATIC=1
use_geoip=1
;;
'--geoip-dyn'|'-G')
shift
OPTIONS_CONFIGURE="$OPTIONS_CONFIGURE --enable-geoip --with-geoip-dynamic"
SKIP_STATIC=1
use_geoip=1
use_geoip_dyn=1
;;
'--ip2location'|'-i')
shift
OPTIONS_CONFIGURE="$OPTIONS_CONFIGURE --enable-ip2location"
SKIP_STATIC=1
use_ip2location=1
;;
'--ip2location-dyn'|'-I')
shift
OPTIONS_CONFIGURE="$OPTIONS_CONFIGURE --enable-ip2location --with-ip2location-dynamic"
SKIP_STATIC=1
use_ip2location=1
use_ip2location_dyn=1
;;
'--dbip'|'-d')
shift
OPTIONS_CONFIGURE="$OPTIONS_CONFIGURE --enable-dbip"
SKIP_STATIC=1
use_dbip=1
;;
'--external'|'-e')
shift
OPTIONS_CONFIGURE="$OPTIONS_CONFIGURE --enable-external"
SKIP_STATIC=1
use_external=1
;;
'--disable-db-ieee')
shift
OPTIONS_CONFIGURE="$OPTIONS_CONFIGURE --disable-db-ieee"
;;
'--disable-db-ipv4')
shift
OPTIONS_CONFIGURE="$OPTIONS_CONFIGURE --disable-db-ipv4"
;;
'--disable-db-ipv6')
shift
OPTIONS_CONFIGURE="$OPTIONS_CONFIGURE --disable-db-ipv6"
;;
'--geoip-ipv6-compat')
shift
OPTIONS_CONFIGURE="$OPTIONS_CONFIGURE --with-geoip-ipv6-compat"
SKIP_STATIC=1
;;
'-S')
shift
OPTIONS_CONFIGURE="$OPTIONS_CONFIGURE --enable-shared"
SKIP_STATIC=1
;;
'--no-static-build')
shift
SKIP_STATIC=1
;;
'--no-test')
shift
SKIP_TEST=1
;;
'--clang')
shift
USE_CLANG=1
;;
'-?'|'-h'|'--help')
echo "Supported options:"
echo " -?|-h|--help : this help"
echo " -n|--no-make : stop before running 'make'"
echo " -a|--all : enable GeoIP/IP2Location/db-ip.com/External/mod_ipv6calc support"
echo " -g|--geoip : enable GeoIP support"
echo " --geoip-dyn|-G : switch to dynamic library loading of GeoIP"
echo " -i|--ip2location : enable IP2Location support"
echo " --ip2location-dyn|-I: switch to dynamic library loading of IP2Location"
echo " -d|--dbip : enable db-ip.com support"
echo " -e|--external : enable external database support"
echo " --disable-db-ieee : disable built-in IEEE database"
echo " --disable-db-ipv4 : disable built-in IPv4 database"
echo " --disable-db-ipv6 : disable built-in IPv6 database"
echo " --geoip-ipv6-compat : enable GeoIP IPv6 compatibility mode"
echo " -S : enable shared library mode"
echo " --no-static-build : skip static build"
echo " --no-test : skip 'make test'"
echo " --clang : use 'clang' instead of default (usually 'gcc')"
exit 1
;;
*)
OPTIONS_CONFIGURE="$OPTIONS_CONFIGURE $1"
shift
;;
esac
done
source ./autogen-support.sh "source"
if [ "$use_geoip" = "1" ]; then
if ! echo "$OPTIONS_CONFIGURE" | grep -q 'with-geoip-headers='; then
OPTIONS_CONFIGURE="$OPTIONS_CONFIGURE $(fallback_options_from_name GeoIP)"
fi
fi
if [ "$use_ip2location" = "1" ]; then
if ! echo "$OPTIONS_CONFIGURE" | grep -q 'with-ip2location-headers='; then
OPTIONS_CONFIGURE="$OPTIONS_CONFIGURE $(fallback_options_from_name IP2Location)"
fi
fi
if [ -f Makefile ]; then
echo "*** cleanup"
make autoclean
fi
if [ "$USE_CLANG" = "1" ]; then
if [ -x "/usr/bin/clang" ]; then
export CC=/usr/bin/clang
else
echo "ERROR : --clang selected but binary is missing: /usr/bin/clang"
exit 1
fi
fi
echo "*** run: autoheader"
autoheader || exit 1
echo "*** run: autoconf"
autoconf || exit 1
echo "*** run: configure, options: $OPTIONS_CONFIGURE $*"
LDFLAGS="$LDFLAGS -Wl,--as-needed" ./configure --bindir=/usr/bin --mandir=/usr/share/man $OPTIONS_CONFIGURE $* || exit 1
if [ "$flag_no_make" = "1" ]; then
echo
echo "Stop before running 'make'"
exit
fi
echo "*** run: make clean"
make clean || exit 1
if [ "$use_ip2location_dyn" = "1" ]; then
if ldd ./ipv6calc/ipv6calc | grep -i IPLocation; then
echo "ERROR : dynamic library mode enabled, but ldd of binary still reports reference to IP2Location"
exit 1
fi
fi
if [ "$use_geoip_dyn" = "1" ]; then
if ldd ./ipv6calc/ipv6calc | grep -i GeoIP; then
echo "ERROR : dynamic library mode enabled, but ldd of binary still reports reference to GeoIP"
exit 1
fi
fi
make
if [ $? -ne 0 ]; then
echo "ERROR : 'make' was not successful with configure options: $OPTIONS_CONFIGURE"
exit 1
fi
if [ "$SKIP_TEST" = "1" ]; then
echo "*** skip: make test"
else
echo "*** run: make test"
make test
if [ $? -ne 0 ]; then
echo "ERROR : 'make test' was not successful with configure options: $OPTIONS_CONFIGURE"
exit 1
fi
fi
if [ "$SKIP_STATIC" != "1" -a ! -e /etc/redhat-release ]; then
# skip static on non Fedora/RedHat/CentOS systems
SKIP_STATIC="1"
echo "NOTICE: 'make static' skipped on non Fedora/RedHat/CentOS systems"
fi
if [ "$SKIP_STATIC" != "1" ]; then
echo "*** run: make static"
make static
if [ $? -ne 0 ]; then
echo "ERROR : 'make static' reports an error (perhaps glibc-static/openssl-static/zlib-static is missing)"
exit 1
fi
fi
echo "*** run: make -n install (dummy install test)"
make -n install
if [ $? -ne 0 ]; then
echo "ERROR : 'make -n install' reports an error"
exit 1
fi
echo
echo "For installing the binaries, type: make install"