diff options
author | Timo Sirainen <cras@irssi.org> | 2000-07-26 23:55:32 +0000 |
---|---|---|
committer | cras <cras@dbcabf3a-b0e7-0310-adc4-f8d773084564> | 2000-07-26 23:55:32 +0000 |
commit | db2929decb48e27e376cca415d056730cad5ea3f (patch) | |
tree | bb4e8c91eebb42faee1f51131305549b6711f3e1 /configure.in | |
parent | 091292e079139480315f5cebed6be603e6505618 (diff) | |
download | irssi-db2929decb48e27e376cca415d056730cad5ea3f.zip |
Updates
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@543 dbcabf3a-b0e7-0310-adc4-f8d773084564
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 20 |
1 files changed, 15 insertions, 5 deletions
diff --git a/configure.in b/configure.in index 0c02c7b6..631a8214 100644 --- a/configure.in +++ b/configure.in @@ -88,6 +88,7 @@ AC_ARG_ENABLE(perl, else want_perl=yes PERL_LIB_DIR="$enableval" + perl_lib_dir_given=yes fi fi, want_perl=yes) @@ -198,9 +199,7 @@ dnl ** curses checks dnl ** if test "x$want_textui" = "xyes"; then - saved_LIBS="$LIBS" AC_CHECK_CURSES - LIBS="$saved_LIBS" if test "x$has_ncurses" != "x"; then AC_CHECK_LIB(ncurses, use_default_colors, [ @@ -222,7 +221,7 @@ if test "x$want_textui" = "xyes"; then fi if test "$has_curses" != "true"; then - want_textui=no; + want_textui=no curses_error=yes fi else @@ -414,10 +413,13 @@ fi echo -if test "$curses_error" != "xyes"; then +if test "x$curses_error" != "xyes"; then echo "Building text frontend ..... : $want_textui" else - echo "Building text frontend ..... : NO!! (Because curses was not found, specify the path to it with --with-curses=/dir)" + echo "Building text frontend ..... : NO!!" + echo " - Because curses was not found, specify the path to it with" + echo " --with-curses=/dir and make sure you have the curses headers" + echo " installed (usually in ncurses-devel package)" fi echo "Building irssi-bot ......... : $want_irssibot" echo "Building with IPv6 support . : $want_ipv6" @@ -427,6 +429,14 @@ if test "x$want_perl" = "xyes"; then echo "Perl library directory ..... : (default - usually /usr/local/lib/perl_site)" else echo "Perl library directory ..... : $PERL_LIB_DIR" + if test "x$perl_lib_dir_given" != "xyes"; then + echo " - NOTE: This is automatically set to the same directory you gave with" + echo " --prefix. Irssi's perl scripts do not work unless you also add" + echo " this directory to @INC (or do some other magic)." + echo " *OR* what you might want to do instead, is to simply give --enable-perl=" + echo " (nothing after '=') option to configure, and make install will install" + echo " the Perl libraries to defaut directory." + fi fi fi echo "Install prefix ............. : $prefix" |