Mercurial > pidgin
comparison autogen.sh @ 21832:8d5989d932c9
avoid some version blocking servers by updating the major version specified when 'Hide client ID' is specified for an account
author | Christopher O'Brien <siege@pidgin.im> |
---|---|
date | Sat, 15 Dec 2007 20:29:56 +0000 |
parents | a772d16ad8a8 |
children | 1dd83e2e582d |
comparison
equal
deleted
inserted
replaced
21830:f2cf1d61a676 | 21832:8d5989d932c9 |
---|---|
17 echo "You must have intltool installed to compile Pidgin."; | 17 echo "You must have intltool installed to compile Pidgin."; |
18 echo; | 18 echo; |
19 exit; | 19 exit; |
20 } | 20 } |
21 | 21 |
22 (libtoolize --version) < /dev/null > /dev/null 2>&1 || { | 22 (glibtoolize --version) < /dev/null > /dev/null 2>&1 || { |
23 echo; | 23 echo; |
24 echo "You must have libtool installed to compile Pidgin."; | 24 echo "You must have libtool installed to compile Pidgin."; |
25 echo; | 25 echo; |
26 exit; | 26 exit; |
27 } | 27 } |
42 | 42 |
43 echo "Generating configuration files for Pidgin, please wait...." | 43 echo "Generating configuration files for Pidgin, please wait...." |
44 echo; | 44 echo; |
45 | 45 |
46 echo "Running libtoolize, please ignore non-fatal messages...." | 46 echo "Running libtoolize, please ignore non-fatal messages...." |
47 echo n | libtoolize --copy --force || exit; | 47 echo n | glibtoolize --copy --force || exit; |
48 | 48 |
49 # Add other directories to this list if people continue to experience | 49 # Add other directories to this list if people continue to experience |
50 # brokennesses ... Obviously the real answer is for them to fix it | 50 # brokennesses ... Obviously the real answer is for them to fix it |
51 # themselves, but for Luke's sake we have this. | 51 # themselves, but for Luke's sake we have this. |
52 for dir in "/usr/local/share/aclocal" \ | 52 for dir in "/usr/local/share/aclocal" \ |
55 if test -d $dir ; then | 55 if test -d $dir ; then |
56 ACLOCAL_FLAGS="$ACLOCAL_FLAGS -I $dir" | 56 ACLOCAL_FLAGS="$ACLOCAL_FLAGS -I $dir" |
57 fi | 57 fi |
58 done | 58 done |
59 | 59 |
60 libtoolize -c -f --automake | 60 glibtoolize -c -f --automake |
61 glib-gettextize --force --copy | 61 glib-gettextize --force --copy |
62 intltoolize --force --copy | 62 intltoolize --force --copy |
63 aclocal $ACLOCAL_FLAGS || exit; | 63 aclocal $ACLOCAL_FLAGS || exit; |
64 autoheader || exit; | 64 autoheader || exit; |
65 automake --add-missing --copy; | 65 automake --add-missing --copy; |