-
Notifications
You must be signed in to change notification settings - Fork 20
/
autogen.sh
executable file
·116 lines (95 loc) · 2.87 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
#!/bin/bash
AUTOCONF_REQUIRED_VERSION=2.52
AUTOMAKE_REQUIRED_VERSION=1.8
cd `dirname $0`
TOPDIR=`pwd`
# check for proper versions
check_version ()
{
if expr $1 \>= $2 > /dev/null; then
echo "yes (version $1)"
else
echo "Too old (found version $1)!"
DIE=1
fi
}
echo -n "checking for autoconf >= $AUTOCONF_REQUIRED_VERSION ... "
if (autoconf --version) < /dev/null > /dev/null 2>&1; then
VER=`autoconf --version | grep -iw autoconf | sed "s/.* \([0-9.]*\)[-a-z0-9]*$/\1/"`
check_version $VER $AUTOCONF_REQUIRED_VERSION
else
echo
echo " autoconf version >= $VER $AUTOCONF_REQUIRED_VERSION must bei nstalled "
echo " to compile aeskulap."
echo " Download the appropriate package for your distribution,"
echo " or get the source tarball at ftp://ftp.gnu.org/pub/gnu/"
exit 1
fi
echo -n "checking for automake >= $AUTOMAKE_REQUIRED_VERSION ... "
if (automake --version) < /dev/null > /dev/null 2>&1; then
VER=`automake --version | grep -iw automake | sed "s/.* \([0-9.]*\)[-a-z0-9]*$/\1/"`
check_version $VER $AUTOMAKE_REQUIRED_VERSION
else
echo
echo " You must have automake 1.8 or newer installed to compile aeskulap."
echo " Get ftp://ftp.gnu.org/pub/gnu/automake/automake-1.8.5.tar.gz"
echo " (or a newer version of 1.8 if it is available; note that 1.9 is buggy)"
exit 1
fi
# process dcmtk
echo "Preparing dcmtk ..."
cd dcmtk/config
sh ./autoall
sh ./rootconf
cd $TOPDIR
echo "Generating build information ..."
aclocalinclude="$ACLOCAL_FLAGS"
echo "Running aclocal $aclocalinclude ..."
aclocal $aclocalinclude || {
echo
echo "**ERROR**: aclocal failed. This may mean that you have not"
echo "installed all of the packages you need, or you may need to"
echo "set ACLOCAL_FLAGS to include \"-I \$prefix/share/aclocal\""
echo "for the prefix where you installed the packages whose"
echo "macros were not found"
exit 1
}
echo "Running autoheader ..."
autoheader || {
echo "***ERROR*** autoheader failed."
exit 1
}
echo "Running libtoolize ..."
libtoolize --automake -c || {
echo
echo "**ERROR**: intltoolize failed. This may mean that you have not"
echo "installed all of the packages you need. Please install the"
echo "'libtool' package."
exit 1
}
echo "Running automake ..."
automake -c --foreign --add-missing || {
echo "***ERROR*** automake failed."
exit 1
}
echo "Running autoconf ..."
autoconf || {
echo "***ERROR*** autoconf failed."
exit 1
}
echo "Running glib-gettextize ..."
glib-gettextize --copy --force > /dev/null || {
echo
echo "***ERROR*** glib-gettextize failed."
exit 1
}
echo "Running intltoolize ..."
intltoolize -c -f --automake || {
echo
echo "***ERROR* intltoolize failed."
exit 1
}
chmod +x `find . -name configure`
chmod +x `find . -name mkinstalldirs`
echo
echo "Please run ./configure now."