diff options
author | Timo Sirainen <cras@irssi.org> | 2002-02-15 08:31:35 +0000 |
---|---|---|
committer | cras <cras@dbcabf3a-b0e7-0310-adc4-f8d773084564> | 2002-02-15 08:31:35 +0000 |
commit | a4acb08ac9bbedede398080a43e4dfb24e6947ef (patch) | |
tree | 75bc07f8aff585790340dac7139747bfccc1781d | |
parent | b76b41aa6f918d53d35fcb755d7894d187db7f84 (diff) | |
download | irssi-a4acb08ac9bbedede398080a43e4dfb24e6947ef.zip |
Yell if gmodule doesn't work
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@2443 dbcabf3a-b0e7-0310-adc4-f8d773084564
-rw-r--r-- | configure.in | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/configure.in b/configure.in index 1282e2fd..80882d65 100644 --- a/configure.in +++ b/configure.in @@ -305,12 +305,14 @@ AC_DEFUN(AC_CHECK_GLIBDIR,[ if test -f $full_glib_dir/gmodule/.libs/libgmodule.a; then GLIB_LIBS="$GLIB_LIBS $full_glib_dir/gmodule/.libs/libgmodule.a" AC_DEFINE(HAVE_GMODULE) + have_gmodule=yes fi else GLIB_LIBS="$full_glib_dir/libglib.a $GLIB_LDEXTRA" if test -f $full_glib_dir/gmodule/libgmodule.a; then GLIB_LIBS="$GLIB_LIBS $full_glib_dir/gmodule/libgmodule.a" AC_DEFINE(HAVE_GMODULE) + have_gmodule=yes fi fi AC_SUBST(GLIB_CFLAGS) @@ -330,6 +332,7 @@ if test -z "$GLIB_DIR"; then AM_PATH_GLIB(1.2.0) else AC_DEFINE(HAVE_GMODULE) + have_gmodule=yes fi if test -z "$GLIB_LIBS"; then @@ -843,6 +846,13 @@ fi echo "Building irssi bot ......... : $want_irssibot" echo "Building irssi proxy ....... : $want_irssiproxy" echo "Building with IPv6 support . : $want_ipv6" +if test "x$have_gmodule" = "xyes"; then + echo "Building with module support : yes" +else + echo "Building with module support : NO!! /LOAD will not work!" + echo " - You're missing gmodule (comes with glib) for some reason," + echo " or it doesn't work in your system." +fi if test "x$want_perl" = "xstatic"; then echo "Building with Perl support . : static (in irssi binary)" @@ -878,5 +888,6 @@ if test "x$want_perl" != "xno"; then echo " Anyway, installing perl to this directory should work just as well." fi fi + echo "Install prefix ............. : $prefix" |