forked from Hamlib/Hamlib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
bootstrap
executable file
·74 lines (54 loc) · 1.9 KB
/
bootstrap
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
#!/bin/sh
# Run this to generate all the initial makefiles, etc.
# Taken from glib CVS
# Change the following to match the versions installed on your system
LIBTOOLIZE=libtoolize
AUTORECONF=autoreconf
AUTOMAKE=automake
# Check if we compile on OSX and resolve the name conflict with
# Apple's tool for creating Mach-O dynamic libraries.
case `uname` in Darwin*) LIBTOOLIZE=glibtoolize ;; esac
# variables below this line should not need modification
SRCDIR=`dirname "$0"`
test -z "$SRCDIR" && SRCDIR=.
ORIGDIR=`pwd`
PROJECT=hamlib
TEST_TYPE=-f
FILE=include/hamlib/rig.h
DIE=0
("$AUTORECONF" --version) > /dev/null 2>&1 || {
echo
echo "You must have autoreconf installed to compile $PROJECT."
echo "Download the appropriate package for your distribution,"
DIE=1
}
("$AUTOMAKE" --version) > /dev/null 2>&1 || {
echo
echo "You must have automake installed to compile $PROJECT."
echo "Download the appropriate package for your distribution,"
DIE=1
}
("$LIBTOOLIZE" --version) > /dev/null 2>&1 || {
echo
echo "You must have libtool installed to compile $PROJECT."
echo "Download the appropriate package for your distribution."
DIE=1
}
if test "$DIE" -eq 1; then
exit 1
fi
cd "$SRCDIR"
test $TEST_TYPE $FILE || {
echo "You must run this script in the top-level $PROJECT directory"
exit 1
}
###################################################################
### autoreconf is now the preferred way to process configure.ac ###
### which should handle compiler variations and ensures that ###
### subtools are processed in the correct order. ###
###################################################################
echo "Running '$AUTORECONF -i' to process configure.ac"
echo "and generate the configure script."
# Tell autoreconf to install needed build system files
"$AUTORECONF" -i
cd "$ORIGDIR"