-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathautogen.sh
More file actions
executable file
·61 lines (54 loc) · 1.61 KB
/
autogen.sh
File metadata and controls
executable file
·61 lines (54 loc) · 1.61 KB
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
#!/bin/sh
# generated 2005/12/14 20:48:47 SGT by fabrice@amra.dyndns.org.(none)
# using glademm V2.6.0
if test ! -f install-sh ; then touch install-sh ; fi
MAKE=`which gnumake`
if test ! -x "$MAKE" ; then MAKE=`which gmake` ; fi
if test ! -x "$MAKE" ; then MAKE=`which make` ; fi
HAVE_GNU_MAKE=`$MAKE --version|grep -c "Free Software Foundation"`
if test "$HAVE_GNU_MAKE" != "1"; then
echo Only non-GNU make found: $MAKE
else
echo `$MAKE --version | head -1` found
fi
if which autoconf2.50 >/dev/null 2>&1
then AC_POSTFIX=2.50
elif which autoconf >/dev/null 2>&1
then AC_POSTFIX=""
else
echo 'you need autoconfig (2.58+ recommended) to generate the Makefile'
exit 1
fi
echo `autoconf$AC_POSTFIX --version | head -1` found
if which automake-1.9 >/dev/null 2>&1
then AM_POSTFIX=-1.9
elif which automake-1.8 >/dev/null 2>&1
then AM_POSTFIX=-1.8
elif which automake-1.7 >/dev/null 2>&1
then AM_POSTFIX=-1.7
elif which automake-1.6 >/dev/null 2>&1
then AM_POSTFIX=-1.6
elif which automake >/dev/null 2>&1
then AM_POSTFIX=""
else
echo 'you need automake (1.8.3+ recommended) to generate the Makefile'
exit 1
fi
echo `automake$AM_POSTFIX --version | head -1` found
echo This script runs configure and make...
echo You did remember necessary arguments for configure, right?
# autoreconf$AC_POSTFIX -fim _might_ do the trick, too.
# chose to your taste
aclocal$AM_POSTFIX
libtoolize --force --copy
gettextize
if test ! -e po/Makevars
then cp po/Makevars.template po/Makevars
fi
if test ! -e po/LINGUAS
then touch po/LINGUAS
fi
autoheader$AC_POSTFIX
automake$AM_POSTFIX --add-missing --copy --gnu
autoconf$AC_POSTFIX
./configure $* && $MAKE