mirror of
https://github.com/irssi/irssi.git
synced 2026-08-20 17:12:51 +02:00
updates for new version:
+ configure displays a summary of things to compile + /set toggle_use_colors = yes|no, sets colors on/off in irssi-text - Some kB/s messages displayed wrong values when resuming DCC transfers. Also, kB/s is now displayed with two decimals - "Day changed to 00-10-2000" .. month was wrong. No Y2K bugs however ;) - List of ircnets was displyed wrong in server dialog. - Userhost replies didn't handle ircops right.. - Doesn't quit when receives SIGHUP - some window managers send it when restarting itself (Afterstep) - Specifying "source host IP" didn't work (vhosts). - Using ctrl-b etc. didn't move the cursor forward.. - Don't try to compile GTK parts of plugins if we don't even want build GTK irssi - Doesn't crash when trying to create DCC dialog after being disconnected from IRC server git-svn-id: http://svn.irssi.org/repos/irssi/trunk@104 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
parent
2219b4096a
commit
accc66c511
7 changed files with 136 additions and 90 deletions
40
configure.in
40
configure.in
|
|
@ -1,7 +1,7 @@
|
|||
AC_INIT(src)
|
||||
|
||||
AM_CONFIG_HEADER(config.h)
|
||||
AM_INIT_AUTOMAKE(irssi, 0.7.21)
|
||||
AM_INIT_AUTOMAKE(irssi, 0.7.22)
|
||||
|
||||
AM_MAINTAINER_MODE
|
||||
|
||||
|
|
@ -14,7 +14,7 @@ AC_STDC_HEADERS
|
|||
AC_ARG_PROGRAM
|
||||
AM_PROG_LIBTOOL
|
||||
|
||||
AC_CHECK_HEADERS(string.h stdlib.h unistd.h dirent.h sys/ioctl.h)
|
||||
AC_CHECK_HEADERS(string.h stdlib.h unistd.h dirent.h sys/ioctl.h libintl.h)
|
||||
|
||||
GNOME_INIT
|
||||
GNOME_SUPPORT_CHECKS
|
||||
|
|
@ -153,7 +153,7 @@ AC_ARG_ENABLE(ipv6,
|
|||
want_ipv6=yes
|
||||
fi
|
||||
fi,
|
||||
want_ip6=no)
|
||||
want_ipv6=no)
|
||||
|
||||
AC_ARG_ENABLE(gtk-hebrew,
|
||||
[ --enable-gtk-hebrew Enable Hebrew support],
|
||||
|
|
@ -316,19 +316,23 @@ if test "x$want_textui" = "xyes"; then
|
|||
AC_DEFINE(HAVE_CURSES_IDCOK)
|
||||
],, $CURSES_LIBS)
|
||||
fi
|
||||
|
||||
if test "$has_curses" != "true"; then
|
||||
want_textui=no;
|
||||
fi
|
||||
else
|
||||
has_curses=false
|
||||
fi
|
||||
AM_CONDITIONAL(HAS_CURSES, test "$has_curses" = true)
|
||||
|
||||
dnl ** check what we want to build
|
||||
AM_CONDITIONAL(BUILD_IRSSIBOT, test "$want_irssibot" = "xyes")
|
||||
AM_CONDITIONAL(BUILD_PLUGINS, test "x$want_plugins" = "xyes")
|
||||
AM_CONDITIONAL(BUILD_SERVERTEST, test "x$want_servertest" = "xyes")
|
||||
AM_CONDITIONAL(BUILD_GNOMEUI, test "x$GUI_LIBS" != "x")
|
||||
AM_CONDITIONAL(HAVE_GNOME, test "x$want_gnome" = "xyes")
|
||||
AM_CONDITIONAL(HAVE_GNOME_PANEL, test "x$want_gnome_panel" = "xyes")
|
||||
AM_CONDITIONAL(HAVE_MYSQL, test "x$want_mysql" = "xyes")
|
||||
AM_CONDITIONAL(BUILD_TEXTUI, test "$want_textui" = "yes")
|
||||
AM_CONDITIONAL(BUILD_IRSSIBOT, test "$want_irssibot" = "yes")
|
||||
AM_CONDITIONAL(BUILD_PLUGINS, test "$want_plugins" = "yes")
|
||||
AM_CONDITIONAL(BUILD_SERVERTEST, test "$want_servertest" = "yes")
|
||||
AM_CONDITIONAL(HAVE_GNOME, test "$want_gnome" = "yes")
|
||||
AM_CONDITIONAL(HAVE_GNOME_PANEL, test "$want_gnome_panel" = "yes")
|
||||
AM_CONDITIONAL(HAVE_MYSQL, test "$want_mysql" = "yes")
|
||||
|
||||
AC_SUBST(MYSQL_LIBS)
|
||||
|
||||
|
|
@ -388,3 +392,19 @@ plugins/bot/Makefile
|
|||
plugins/sql/Makefile
|
||||
stamp.h
|
||||
irssi.spec)
|
||||
|
||||
echo
|
||||
|
||||
if test "$GUI_LIBS" != "x"; then
|
||||
echo Building GTK frontend ...... : yes
|
||||
else
|
||||
echo Building GTK frontend ...... : no
|
||||
fi
|
||||
echo Building with GNOME ........ : $want_gnome
|
||||
echo Building with GNOME panel .. : $want_gnome_panel
|
||||
|
||||
echo Building text frontend ..... : $want_textui
|
||||
echo Building irssi-bot ......... : $want_irssibot
|
||||
echo Building with IPv6 support . : $want_ipv6
|
||||
echo Install prefix ............. : $prefix
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue