lin
2025-08-01 633231e833e21d5b8b1c00cb15aedb62b3b78e8f
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
#!/bin/sh
# Run this to generate all the initial makefiles, etc.
 
test -n "$srcdir" || srcdir=`dirname "$0"`
test -n "$srcdir" || srcdir=.
 
olddir=`pwd`
cd $srcdir
 
#echo -n "checking for ragel... "
#which ragel || {
#    echo "You need to install ragel... See http://www.complang.org/ragel/"
#    exit 1
#}
 
echo -n "checking for pkg-config... "
which pkg-config || {
   echo "*** No pkg-config found, please install it ***"
   exit 1
}
 
echo -n "checking for libtoolize... "
which glibtoolize || which libtoolize || {
   echo "*** No libtoolize (libtool) found, please install it ***"
   exit 1
}
echo -n "checking for gtkdocize... "
if which gtkdocize ; then
   gtkdocize --copy || exit 1
else
   echo "*** No gtkdocize (gtk-doc) found, skipping documentation ***"
   echo "EXTRA_DIST = " > gtk-doc.make
fi
 
echo -n "checking for autoreconf... "
which autoreconf || {
   echo "*** No autoreconf (autoconf) found, please install it ***"
   exit 1
}
 
echo "running autoreconf --force --install --verbose"
autoreconf --force --install --verbose || exit $?
 
cd $olddir
test -n "$NOCONFIGURE" || {
   echo "running configure $@"
   "$srcdir/configure" "$@"
}