mirror of
https://github.com/irssi/irssi.git
synced 2024-11-03 04:27:19 -05:00
When glib isn't found, download recent glib version (2.8.3) instead of the old 1.2.10
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@4064 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
parent
a0a30db489
commit
a2637a3ac0
15
configure.in
15
configure.in
@ -431,21 +431,18 @@ if test -z "$GLIB_DIR"; then
|
|||||||
echo "*** Irssi will automatically compile and use it."
|
echo "*** Irssi will automatically compile and use it."
|
||||||
echo
|
echo
|
||||||
|
|
||||||
dnl * I think it's pretty safe to assume GLib 1.2.9 since the next
|
glib_url=ftp://ftp.gtk.org/pub/gtk/v2.8/
|
||||||
dnl * will be 2.0 (or 1.4?) and it's not sure if irssi compiles
|
glib_file=glib-2.8.3.tar.gz
|
||||||
dnl * with it (yea, just a few weeks after I put this text for 1.2.8
|
|
||||||
dnl * the 1.2.9 came :) .. and then .10
|
|
||||||
glib_file=glib-1.2.10.tar.gz
|
|
||||||
|
|
||||||
dlcmd=
|
dlcmd=
|
||||||
if test -n "`wget --version 2>/dev/null|grep -i wget`"; then
|
if test -n "`wget --version 2>/dev/null|grep -i wget`"; then
|
||||||
dlcmd="wget -c ftp://ftp.gtk.org/pub/gtk/v1.2/$glib_file"
|
dlcmd="wget -c $glib_url$glib_file"
|
||||||
elif test -n "`ncftpget --version 2>/dev/null|grep -i ncftp`"; then
|
elif test -n "`ncftpget --version 2>/dev/null|grep -i ncftp`"; then
|
||||||
dlcmd="ncftpget -z ftp://ftp.gtk.org/pub/gtk/v1.2/$glib_file"
|
dlcmd="ncftpget -z $glib_url$glib_file"
|
||||||
elif test -n "`lynx --version 2>/dev/null|grep -i lynx`"; then
|
elif test -n "`lynx --version 2>/dev/null|grep -i lynx`"; then
|
||||||
dlcmd="lynx --source ftp://ftp.gtk.org/pub/gtk/v1.2/$glib_file > $glib_file"
|
dlcmd="lynx --source $glib_url$glib_file > $glib_file"
|
||||||
elif test -n "`curl --version 2>/dev/null|grep -i curl`"; then
|
elif test -n "`curl --version 2>/dev/null|grep -i curl`"; then
|
||||||
dlcmd="curl -C - ftp://ftp.gtk.org/pub/gtk/v1.2/$glib_file"
|
dlcmd="curl -C - $glib_url$glib_file"
|
||||||
fi
|
fi
|
||||||
if test -n "$dlcmd"; then
|
if test -n "$dlcmd"; then
|
||||||
echo "*** I can download GLib for you now. If you don't want to, press CTRL-C now."
|
echo "*** I can download GLib for you now. If you don't want to, press CTRL-C now."
|
||||||
|
Loading…
Reference in New Issue
Block a user