-
Notifications
You must be signed in to change notification settings - Fork 1
/
configure
executable file
·405 lines (394 loc) · 9.15 KB
/
configure
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
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
#!/bin/sh
#
# Defaults
#
INPUT_FILE=Makefile_start
OUTPUT_FILE=Makefile
LIBTYPE=static
INSTALLDIR=/usr/local/bin
LIBINSTALLDIR=/usr/local/lib
#
# Process command line arguments
#
while [ $# -gt 0 ] ; do
if [ "$1" = "--install-dir" ] ; then
if [ $# -lt 2 ] ; then
echo "--install-dir requires a directory"
exit
else
shift
INSTALLDIR="$1"
shift
fi
elif [ "$1" = "--install-lib" ] ; then
if [ $# -lt 2 ] ; then
echo "--install-lib requires a directory"
exit
else
shift
LIBINSTALLDIR="$1"
shift
fi
elif [ "$1" = "--dynamic" ] ; then
LIBTYPE="dynamic"
shift
elif [ "$1" = "--static" ] ; then
LIBTYPE="static"
shift
else
echo "Unidentified argument $1"
exit
fi
done
#
# Use the correct makefiles for dynamic/static option
#
if [ "$LIBTYPE" = "dynamic" ] ; then
cp lib/Makefile.dynamic lib/Makefile
cp bin/Makefile.dynamic bin/Makefile
cp test/Makefile.dynamic test/Makefile
else
cp lib/Makefile.static lib/Makefile
cp bin/Makefile.static bin/Makefile
cp test/Makefile.static test/Makefile
fi
#
# Determine architecture and architecture-dependent values
#
type="Unknown"
universal_binary="FALSE"
UNAME=$(uname -a)
if [ $( echo $UNAME | grep Linux | wc | awk '{print $1;}' ) -eq 1 ] ; then
if [ $( echo $UNAME | grep 'i[3456]86' | wc | awk '{print $1};') -eq 1 ] ; then
type="Linux_x86"
elif [ $( echo $UNAME | grep 'x86_64' | wc | awk '{print $1};') -eq 1 ] ; then
type="Linux_x86_64"
elif [ $( echo $UNAME | grep 'ppc64le' | wc | awk '{print $1};') -eq 1 ] ; then
type="Linux_ppc64le"
else
type="Linux_Unknown"
fi
fi
if [ $( echo $UNAME | grep Darwin | wc | awk '{print $1;}' ) -eq 1 ] ; then
type="MacOSX_Unknown"
if [ $( echo $UNAME | grep -E 'powerpc|Power Macintosh' | wc | awk '{print $1};') -eq 1 ] ; then
type="MacOSX_ppc"
fi
if [ $( echo $UNAME | grep 'i386' | wc | awk '{print $1}') -eq 1 ] ; then
type="MacOSX_i386"
fi
if [ $( echo $UNAME | grep 'x86_64' | wc | awk '{print $1}') -eq 1 ] ; then
type="MacOSX_x86_64"
fi
fi
if [ $( echo $UNAME | grep SunOS | wc | awk '{print $1;}' ) -eq 1 ] ; then
type="SunOS5"
fi
if [ $( echo $UNAME | grep IRIX | wc | awk '{print $1;}' ) -eq 1 ] ; then
type="IRIX"
fi
if [ $( echo $UNAME | grep NetBSD | wc | awk '{print $1;}' ) -eq 1 ] ; then
type="NetBSD"
fi
if [ $( echo $UNAME | grep FreeBSD | wc | awk '{print $1;}' ) -eq 1 ] ; then
type="FreeBSD"
fi
if [ $( echo $UNAME | grep OpenBSD | wc | awk '{print $1;}' ) -eq 1 ] ; then
type="OpenBSD"
fi
if [ $( echo $UNAME | grep Cygwin | wc | awk '{print $1;}' ) -eq 1 ] ; then
type="Cygwin"
fi
if [ $( echo $UNAME | grep Msys | wc | awk '{print $1;}' ) -eq 1 ] ; then
type="MinGW"
fi
if [ "$type" = "Linux_x86" ] ; then
CC='cc'
CFLAGS='-Wall'
if [ "$LIBTYPE" = "dynamic" ] ; then
CLIBFLAGS='-Wall -fPIC'
else
CLIBFLAGS='-Wall'
fi
EXEEXT=''
LIBBASE='libbibutils'
STATICLIBEXT='.a'
DYNAMICLIBEXT='.so'
RANLIB='ranlib'
POSTFIX='_i386'
elif [ "$type" = "Linux_x86_64" ] ; then
CC='cc'
CFLAGS='-Wall'
if [ "$LIBTYPE" = "dynamic" ] ; then
CLIBFLAGS='-Wall -fPIC'
else
CLIBFLAGS='-Wall'
fi
EXEEXT=''
LIBBASE='libbibutils'
STATICLIBEXT='.a'
DYNAMICLIBEXT='.so'
RANLIB='ranlib'
POSTFIX='_amd64'
elif [ "$type" = "Linux_ppc64le" ] ; then
CC='cc'
CFLAGS='-Wall'
if [ "$LIBTYPE" = "dynamic" ] ; then
CLIBFLAGS='-Wall -fPIC'
else
CLIBFLAGS='-Wall'
fi
EXEEXT=''
LIBBASE='libbibutils'
STATICLIBEXT='.a'
DYNAMICLIBEXT='.so'
RANLIB='ranlib'
POSTFIX='_ppc64le'
elif [ "$type" = "Linux_Unknown" ] ; then
CC='cc'
CFLAGS='-Wall'
if [ "$LIBTYPE" = "dynamic" ] ; then
CLIBFLAGS='-Wall -fPIC'
else
CLIBFLAGS='-Wall'
fi
EXEEXT=''
LIBBASE='libbibutils'
STATICLIBEXT='.a'
DYNAMICLIBEXT='.so'
RANLIB='ranlib'
POSTFIX=''
elif [ "$type" = "MacOSX_ppc" ] ; then
CC='cc'
CFLAGS='-Wall'
if [ "$LIBTYPE" = "dynamic" ] ; then
CLIBFLAGS='-Wall -fPIC'
else
CLIBFLAGS='-Wall'
fi
EXEEXT=''
LIBBASE='libbibutils'
STATICLIBEXT='.a'
DYNAMICLIBEXT='.so'
RANLIB='ranlib -s'
POSTFIX='_osx_ppc'
elif [ "$type" = "MacOSX_i386" ] ; then
CC='cc'
CFLAGS='-Wall'
if [ "$LIBTYPE" = "dynamic" ] ; then
CLIBFLAGS='-Wall -fPIC'
else
CLIBFLAGS='-Wall'
fi
EXEEXT=''
LIBBASE='libbibutils'
STATICLIBEXT='.a'
DYNAMICLIBEXT='.so'
RANLIB='ranlib -s'
POSTFIX='_osx_i386'
elif [ "$type" = "MacOSX_x86_64" ] ; then
CC='cc'
CFLAGS='-Wall'
if [ "$LIBTYPE" = "dynamic" ] ; then
CLIBFLAGS='-Wall -fPIC'
else
CLIBFLAGS='-Wall'
fi
EXEEXT=''
LIBBASE='libbibutils'
STATICLIBEXT='.a'
DYNAMICLIBEXT='.so'
RANLIB='ranlib -s'
POSTFIX='_osx_x86_64'
elif [ "$type" = "MacOSX_Unknown" ] ; then
CC='cc'
CFLAGS='-Wall'
if [ "$LIBTYPE" = "dynamic" ] ; then
CLIBFLAGS='-Wall -fPIC'
else
CLIBFLAGS='-Wall'
fi
EXEEXT=''
LIBBASE='libbibutils'
STATICLIBEXT='.a'
DYNAMICLIBEXT='.so'
RANLIB='ranlib -s'
POSTFIX='_osx'
elif [ "$type" = "SunOS5" ] ; then
CC='gcc'
CFLAGS='-Wall'
if [ "$LIBTYPE" = "dynamic" ] ; then
CLIBFLAGS='-Wall -fPIC'
else
CLIBFLAGS='-Wall'
fi
EXEEXT=''
LIBBASE='libbibutils'
STATICLIBEXT='.a'
DYNAMICLIBEXT='.so'
RANLIB='"echo Skipping ranlib"'
POSTFIX='_sunos5'
elif [ "$type" = "IRIX" ] ; then
CC='gcc'
CFLAGS='-Wall'
if [ "$LIBTYPE" = "dynamic" ] ; then
CLIBFLAGS='-Wall -fPIC'
else
CLIBFLAGS='-Wall'
fi
EXEEXT=''
LIBBASE='libbibutils'
STATICLIBEXT='.a'
DYNAMICLIBEXT='.so'
RANLIB='"echo Skipping ranlib"'
POSTFIX='_irix'
elif [ "$type" = "NetBSD" ] ; then
CC='gcc'
CFLAGS='-Wall'
if [ "$LIBTYPE" = "dynamic" ] ; then
CLIBFLAGS='-Wall -fPIC'
else
CLIBFLAGS='-Wall'
fi
EXEEXT=''
LIBBASE='libbibutils'
STATICLIBEXT='.a'
DYNAMICLIBEXT='.so'
RANLIB='ranlib'
POSTFIX='_netbsd'
elif [ "$type" = "FreeBSD" ] ; then
CC='gcc'
CFLAGS='-Wall'
if [ "$LIBTYPE" = "dynamic" ] ; then
CLIBFLAGS='-Wall -fPIC'
else
CLIBFLAGS='-Wall'
fi
EXEEXT=''
LIBBASE='libbibutils'
STATICLIBEXT='.a'
DYNAMICLIBEXT='.so'
RANLIB='ranlib'
POSTFIX='_freebsd'
elif [ "$type" = "OpenBSD" ] ; then
CC='gcc'
CFLAGS='-Wall'
if [ "$LIBTYPE" = "dynamic" ] ; then
CLIBFLAGS='-Wall -fPIC'
else
CLIBFLAGS='-Wall'
fi
EXEEXT=''
LIBBASE='libbibutils'
STATICLIBEXT='.a'
DYNAMICLIBEXT='.so'
RANLIB='ranlib'
POSTFIX='_openbsd'
elif [ "$type" = "Cygwin" ] ; then
CC='cc'
CFLAGS='-Wall'
CLIBFLAGS='-Wall'
EXEEXT='.exe'
LIBBASE='bibutils'
STATICLIBEXT='.a'
DYNAMICLIBEXT='.dll'
RANLIB='"echo Skipping ranlib"'
POSTFIX='_cygwin'
LIBINSTALLDIR=${INSTALLDIR}
elif [ "$type" = "MinGW" ] ; then
CC='gcc'
CFLAGS='-Wall'
CLIBFLAGS='-Wall'
EXEEXT='.exe'
LIBBASE='bibutils'
STATICLIBEXT='.a'
DYNAMICLIBEXT='.dll'
RANLIB='"echo Skipping ranlib"'
POSTFIX='_mingw'
LIBINSTALLDIR=${INSTALLDIR}
else
# Unknown operating system
CC='cc'
CFLAGS=''
CLIBFLAGS=''
if [ "$LIBTYPE" = "dynamic" ] ; then
CLIBFLAGS='-Wall -fPIC'
else
CLIBFLAGS='-Wall'
fi
EXEEXT=''
LIBBASE='libbibutils'
STATICLIBEXT='.a'
DYNAMICLIBEXT='.so'
RANLIB='"echo Skipping ranlib"'
POSTFIX=''
fi
#
# Set up for dynamic or static libraries
#
if [ "$LIBTYPE" = "dynamic" ] ; then
cp lib/Makefile.dynamic lib/Makefile
cp bin/Makefile.dynamic bin/Makefile
cp test/Makefile.dynamic test/Makefile
LIBEXT=${DYNAMICLIBEXT}
else
cp lib/Makefile.static lib/Makefile
cp bin/Makefile.static bin/Makefile
cp test/Makefile.static test/Makefile
LIBEXT=${STATICLIBEXT}
fi
#
# Generate the upper-level Makefile
#
LIBTARGET=${LIBBASE}${LIBEXT}
cat $INPUT_FILE | \
sed "s/REPLACE_CC/${CC}/" | \
sed "s/REPLACE_CFLAGS/${CFLAGS}/" | \
sed "s/REPLACE_CLIBFLAGS/${CLIBFLAGS}/" | \
sed "s/REPLACE_EXEEXT/${EXEEXT}/" | \
sed "s/REPLACE_LIBTARGET/${LIBTARGET}/" | \
sed "s/REPLACE_LIBEXT/${LIBEXT}/" | \
sed "s/REPLACE_RANLIB/${RANLIB}/" | \
sed "s|REPLACE_INSTALLDIR|${INSTALLDIR}|" | \
sed "s|REPLACE_LIBINSTALLDIR|${LIBINSTALLDIR}|" | \
sed "s/REPLACE_POSTFIX/${POSTFIX}/" > $OUTPUT_FILE
echo
echo
echo "Bibutils Configuration"
echo "----------------------"
echo
echo "Operating system: $type"
echo "Library and binary type: $LIBTYPE"
echo "Binary installation directory: $INSTALLDIR"
echo "Library installation directory: $LIBINSTALLDIR"
echo
echo " - If auto-identification of operating system failed, e-mail cdputnam@ucsd.edu"
echo " with the output of the command: uname -a"
echo
echo " - Use --static or --dynamic to specify library and binary type;"
echo " the --static option is the default"
echo
echo " - Set binary installation directory with: --install-dir DIR"
echo
echo " - Set library installation directory with: --install-lib DIR"
echo
echo
if [ $OUTPUT_FILE = "Makefile" ] ; then
echo "To compile, type: make"
echo "To install, type: make install"
echo "To make tgz package, type: make package"
echo "To make deb package, type: make deb"
echo
echo "To clean up temporary files, type: make clean"
echo "To clean up all files, type: make realclean"
else
echo "To compile, type: make -f $OUTPUT_FILE"
echo "To install, type: make -f $OUTPUT_FILE install"
echo "To make tgz package, type: make -f $OUTPUT_FILE package"
echo "To make deb package, type: make -f $OUTPUT_FILE deb"
echo
echo "To clean up temporary files, type: make -f $OUTPUT_FILE clean"
echo "To clean up all files, type: make -f $OUTPUT_FILE realclean"
fi
echo
echo