1999-09-03 14:27:29 +00:00
AC_INIT(src)
AM_CONFIG_HEADER(config.h)
2001-08-09 00:08:31 +00:00
AM_INIT_AUTOMAKE(irssi, 0.7.98.CVS)
1999-09-03 14:27:29 +00:00
AM_MAINTAINER_MODE
AC_ISC_POSIX
AC_PROG_CC
AC_PROG_CPP
AC_STDC_HEADERS
AC_ARG_PROGRAM
AM_PROG_LIBTOOL
2001-07-30 22:10:11 +00:00
AC_PATH_PROG(sedpath, sed)
AC_PATH_PROG(perlpath, perl)
2000-12-17 04:20:31 +00:00
dnl * --disable-static isn't a good idea, complain if it's used
if test "x$enable_static" = "xno"; then
AC_ERROR([Don't give --disable-static option to configure])
fi
2000-10-04 10:42:13 +00:00
2001-09-11 17:32:29 +00:00
AC_CHECK_HEADERS(string.h stdlib.h unistd.h dirent.h sys/ioctl.h sys/resource.h)
1999-09-03 14:27:29 +00:00
2000-10-26 18:12:20 +00:00
# check posix headers..
AC_CHECK_HEADERS(sys/time.h sys/utsname.h regex.h)
2000-10-08 12:54:26 +00:00
2001-05-01 09:38:06 +00:00
AC_ARG_WITH(big5,
[ --with-big5 Build with tr-Chinese Big5 support],
if test x$withval = xyes; then
want_big5=yes
else
if test "x$withval" = xno; then
want_big5=no
else
want_big5=yes
fi
fi,
want_big5=no)
1999-09-03 14:27:29 +00:00
AC_ARG_WITH(socks,
[ --with-socks Build with socks support],
if test x$withval = xyes; then
2000-10-03 22:57:14 +00:00
want_socks=yes
1999-09-03 14:27:29 +00:00
else
2000-10-03 22:57:14 +00:00
if test "x$withval" = xno; then
want_socks=no
else
want_socks=yes
fi
1999-09-03 14:27:29 +00:00
fi,
want_socks=no)
AC_ARG_WITH(textui,
2000-03-10 20:58:04 +00:00
[ --with-textui Build text frontend],
1999-09-03 14:27:29 +00:00
if test x$withval = xyes; then
2000-10-03 22:57:14 +00:00
want_textui=yes
1999-09-03 14:27:29 +00:00
else
if test "x$withval" = xno; then
want_textui=no
else
2000-10-03 22:57:14 +00:00
want_textui=yes
1999-09-03 14:27:29 +00:00
fi
fi,
want_textui=yes)
1999-10-02 10:29:01 +00:00
AC_ARG_WITH(bot,
[ --with-bot Build irssi-bot],
if test x$withval = xyes; then
2000-10-03 22:57:14 +00:00
want_irssibot=yes
1999-10-02 10:29:01 +00:00
else
if test "x$withval" = xno; then
want_irssibot=no
else
2000-10-03 22:57:14 +00:00
want_irssibot=yes
1999-10-02 10:29:01 +00:00
fi
fi,
2000-09-06 21:30:56 +00:00
want_irssibot=no)
1999-10-02 10:29:01 +00:00
2000-09-29 23:59:51 +00:00
AC_ARG_WITH(proxy,
[ --with-proxy Build irssi-proxy],
if test x$withval = xyes; then
2000-10-03 22:57:14 +00:00
want_irssiproxy=yes
2000-09-29 23:59:51 +00:00
else
if test "x$withval" = xno; then
want_irssiproxy=no
else
2000-10-03 22:57:14 +00:00
want_irssiproxy=yes
2000-09-29 23:59:51 +00:00
fi
fi,
want_irssiproxy=no)
2000-05-29 16:37:00 +00:00
AC_ARG_WITH(modules,
[ --with-modules Specify what modules to build in binary],
2000-10-11 22:09:53 +00:00
if test x$withval != xyes -a x$withval != xno; then
build_modules="$withval"
fi)
1999-09-03 14:27:29 +00:00
2001-07-30 22:10:11 +00:00
if test "x$prefix" != "xNONE"; then
2001-10-13 16:22:11 +00:00
prefix=`eval echo $prefix`
2001-07-30 22:10:11 +00:00
PERL_MM_PARAMS="INSTALLDIRS=perl PREFIX=$prefix"
PERL_USE_LIB="$prefix`$perlpath -e 'use Config; $dir = $Config{archlibexp}; $prefix = $Config{prefixexp}; $dir =~ s/^$prefix//; print $dir;'`"
perl_library_dir="$PERL_USE_LIB"
perl_prefix_note=yes
2000-07-16 14:30:29 +00:00
fi
2001-07-30 22:10:11 +00:00
AC_ARG_WITH(perl-lib,
[ --with-perl-lib=[site|vendor|DIR] Specify where to install the
Perl libraries for irssi, default is site],
if test "x$withval" = xyes; then
2000-10-03 22:57:14 +00:00
want_perl=yes
2001-07-30 22:10:11 +00:00
elif test "x$withval" = xno; then
want_perl=no
elif test "x$withval" = xsite; then
want_perl=yes
2001-10-14 15:19:57 +00:00
perl_prefix_note=no
2001-10-14 14:56:49 +00:00
PERL_MM_PARAMS=""
2001-07-30 22:10:11 +00:00
elif test "x$withval" = xvendor; then
want_perl=yes
2001-10-14 15:19:57 +00:00
perl_prefix_note=no
2001-07-30 22:10:11 +00:00
if test -z "`$perlpath -v|grep '5\.0'`"; then
PERL_MM_PARAMS="INSTALLDIRS=vendor"
2000-02-20 23:28:50 +00:00
else
2001-07-30 22:10:11 +00:00
PERL_MM_PARAMS="INSTALLDIRS=perl PREFIX=`perl -e 'use Config; print $Config{prefix}'`"
2000-02-20 23:28:50 +00:00
fi
2001-07-30 22:10:11 +00:00
perl_library_dir="(vendor default - `$perlpath -e 'use Config; print $Config{archlib}'`)"
else
want_perl=yes
2001-10-14 15:19:57 +00:00
perl_prefix_note=no
2001-07-30 22:10:11 +00:00
PERL_MM_PARAMS="INSTALLDIRS=perl LIB=$withval"
PERL_USE_LIB="$withval"
2000-02-20 23:28:50 +00:00
fi,
want_perl=yes)
2001-07-29 09:17:53 +00:00
AC_ARG_WITH(perl,
2001-10-20 21:32:22 +00:00
[ --with-perl[=yes|no|module] Build with Perl support - also specifies
2001-07-29 09:17:53 +00:00
if it should be built into main irssi binary
2001-10-20 21:32:22 +00:00
(static, default) or as module],
2001-07-29 09:17:53 +00:00
if test x$withval = xyes; then
2001-10-20 21:32:22 +00:00
want_perl=static
2001-07-29 09:17:53 +00:00
elif test x$withval = xstatic; then
2000-10-03 22:57:14 +00:00
want_perl=static
2001-10-20 21:32:22 +00:00
elif test x$withval = xmodule; then
want_perl=module
2000-10-03 22:57:14 +00:00
else
want_perl=no
fi,
2001-10-20 21:32:22 +00:00
want_perl=static)
2000-10-03 22:57:14 +00:00
2001-03-28 21:23:13 +00:00
AC_ARG_WITH(tests,
[ --with-tests Run all the tests],
if test x$withval != xno; then
TEST_DIR=test
1999-09-03 14:27:29 +00:00
fi,
2001-03-28 21:23:13 +00:00
TEST_DIR=)
AC_SUBST(TEST_DIR)
1999-09-03 14:27:29 +00:00
2000-10-08 12:54:26 +00:00
AC_ARG_ENABLE(curses-windows,
[ --enable-curses-windows Use curses windows],
if test x$enableval != xno; then
AC_DEFINE(USE_CURSES_WINDOWS)
fi,
AC_DEFINE(USE_CURSES_WINDOWS))
1999-09-03 14:27:29 +00:00
AC_ARG_ENABLE(memdebug,
[ --enable-memdebug Enable memory debugging],
if test x$enableval = xyes; then
want_memdebug=yes
else
2000-10-03 22:57:14 +00:00
if test "x$enableval" = xno; then
want_memdebug=no
else
want_memdebug=yes
fi
1999-09-03 14:27:29 +00:00
fi,
want_memdebug=no)
AC_ARG_ENABLE(ipv6,
[ --enable-ipv6 Enable IPv6 support],
if test x$enableval = xyes; then
2000-10-03 22:57:14 +00:00
want_ipv6=yes
1999-09-03 14:27:29 +00:00
else
2000-10-03 22:57:14 +00:00
if test "x$enableval" = xno; then
want_ipv6=no
else
want_ipv6=yes
fi
1999-09-03 14:27:29 +00:00
fi,
2000-01-12 22:10:30 +00:00
want_ipv6=no)
1999-09-03 14:27:29 +00:00
dnl **
dnl ** just some generic stuff...
dnl **
2000-04-26 08:10:09 +00:00
AC_CHECK_FUNCS(mkfifo fcntl)
1999-09-03 14:27:29 +00:00
AC_CHECK_LIB(socket, socket, [
1999-10-05 18:53:45 +00:00
PROG_LIBS="$PROG_LIBS -lsocket"
1999-09-03 14:27:29 +00:00
])
AC_CHECK_LIB(nsl, inet_addr, [
1999-10-05 18:53:45 +00:00
PROG_LIBS="$PROG_LIBS -lnsl"
1999-09-03 14:27:29 +00:00
], -lsocket)
2000-03-26 16:46:40 +00:00
dnl * gcc specific options
1999-09-03 14:27:29 +00:00
if test "x$ac_cv_prog_gcc" = "xyes"; then
CFLAGS="$CFLAGS -Wall"
fi
2001-03-03 21:01:36 +00:00
dnl * OS specific options
case "$host_os" in
hpux*)
CFLAGS="$CFLAGS -D_XOPEN_SOURCE_EXTENDED"
;;
*)
;;
esac
2000-03-26 16:46:40 +00:00
dnl * socklen_t - AC_CHECK_TYPE() would be _really_ useful if it only would
dnl * accept header files where to find the typedef..
AC_MSG_CHECKING([for socklen_t])
AC_CACHE_VAL(irssi_cv_type_socklen_t,
[AC_TRY_COMPILE([
2000-07-09 15:11:47 +00:00
#include <sys/types.h>
2000-03-26 16:46:40 +00:00
#include <sys/socket.h>],
[socklen_t t;],
irssi_cv_type_socklen_t=yes,
irssi_cv_type_socklen_t=no,
)])
if test $irssi_cv_type_socklen_t = no; then
AC_DEFINE(socklen_t, int, Define to 'int' if <sys/socket.h> doesn't define.)
fi
AC_MSG_RESULT($irssi_cv_type_socklen_t)
1999-09-03 14:27:29 +00:00
dnl **
dnl ** check for socks
dnl **
if test "x$want_socks" = "xyes"; then
AC_CHECK_LIB(socks, connect, [
1999-10-05 18:53:45 +00:00
PROG_LIBS="$PROG_LIBS -lsocks"
1999-09-03 14:27:29 +00:00
AC_CHECK_HEADER(socks.h, [
AC_DEFINE(HAVE_SOCKS_H)
CFLAGS="$CFLAGS -DSOCKS"
AC_MSG_RESULT(["socks5 library found, building with it"])
], [
AC_MSG_RESULT(["socks4 library found, building with it"])
CFLAGS="$CFLAGS -Dconnect=Rconnect -Dgetsockname=Rgetsockname -Dgetpeername=Rgetpeername -Dbind=Rbind -Daccept=Raccept -Dlisten=Rlisten -Dselect=Rselect"
])
])
fi
dnl **
2000-04-26 08:10:09 +00:00
dnl ** fe-text checks
1999-09-03 14:27:29 +00:00
dnl **
2001-02-23 08:07:10 +00:00
AC_DEFUN(AC_CHECK_GLIBDIR,[
AC_MSG_CHECKING([whether GLib is unpacked to irssi dir])
GLIB_DIR=`for d in *; do test -f $d/glib.h && echo $d; done`
2001-07-14 19:13:07 +00:00
if test -n "$GLIB_DIR"; then
2001-02-23 08:07:10 +00:00
dnl * glib in irssi directory, use it
AC_MSG_RESULT([yes, using it])
dnl * we have to do this at this point so we know what libs gmodule needs
if test ! -f $GLIB_DIR/.libs/libglib.a; then
echo
echo "configuring GLib ..."
echo
cd $GLIB_DIR
if test ! -f glib-config; then
./configure
fi
${MAKE-make}
cd ..
echo
2001-01-16 00:14:14 +00:00
fi
2001-02-23 08:07:10 +00:00
GLIB_LDEXTRA=`$GLIB_DIR/glib-config --libs gmodule|$sedpath -e 's/-lglib//' -e 's/-lgmodule//' -e 's,-L/usr/local/lib ,,'|$sedpath 's/ \+/ /g'`
full_glib_dir="`pwd`/$GLIB_DIR"
GLIB_CFLAGS="-I$full_glib_dir -I$full_glib_dir/gmodule"
if test -f $full_glib_dir/.libs/libglib.a; then
GLIB_LIBS="$full_glib_dir/.libs/libglib.a $GLIB_LDEXTRA"
if test -f $full_glib_dir/gmodule/.libs/libgmodule.a; then
GLIB_LIBS="$GLIB_LIBS $full_glib_dir/gmodule/.libs/libgmodule.a"
2001-05-14 15:25:24 +00:00
AC_DEFINE(HAVE_GMODULE)
2001-02-23 08:07:10 +00:00
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"
2001-05-14 15:25:24 +00:00
AC_DEFINE(HAVE_GMODULE)
2001-02-23 08:07:10 +00:00
fi
2001-01-16 00:14:14 +00:00
fi
2001-02-23 08:07:10 +00:00
AC_SUBST(GLIB_CFLAGS)
AC_SUBST(GLIB_LIBS)
2001-01-16 00:14:14 +00:00
else
2001-02-23 08:07:10 +00:00
AC_MSG_RESULT([no])
2001-01-16 00:14:14 +00:00
fi
2001-02-23 08:07:10 +00:00
])
AC_CHECK_GLIBDIR
2001-07-14 18:46:19 +00:00
if test -z "$GLIB_DIR"; then
2000-11-23 22:42:37 +00:00
AM_PATH_GLIB(1.2.0,,, gmodule)
2001-07-14 19:16:34 +00:00
if test -z "$GLIB_LIBS"; then
2001-01-16 00:14:14 +00:00
echo "*** trying without -lgmodule"
glib_config_args=
AM_PATH_GLIB(1.2.0)
else
AC_DEFINE(HAVE_GMODULE)
fi
2001-02-23 08:07:10 +00:00
2001-07-14 18:46:19 +00:00
if test -z "$GLIB_LIBS"; then
2001-02-23 08:07:10 +00:00
echo
echo "*** If you don't have GLIB, you can get it from ftp://ftp.gtk.org"
echo "*** If you can't install GLIB anywhere or if you don't want to,"
echo "*** you can just unpack it to Irssi's source directory and"
echo "*** Irssi will automatically compile and use it."
echo
2001-03-15 02:23:43 +00:00
dnl * I think it's pretty safe to assume GLib 1.2.9 since the next
2001-02-23 08:07:10 +00:00
dnl * will be 2.0 (or 1.4?) and it's not sure if irssi compiles
2001-03-15 02:23:43 +00:00
dnl * with it (yea, just a few weeks after I put this text for 1.2.8
2001-05-14 15:25:24 +00:00
dnl * the 1.2.9 came :) .. and then .10
glib_file=glib-1.2.10.tar.gz
2001-02-23 08:07:10 +00:00
dlcmd=
2001-07-14 18:46:19 +00:00
if test -n "`ncftpget 2>/dev/null|grep -i ncftp`"; then
2001-02-23 08:07:10 +00:00
dlcmd="ncftpget ftp://ftp.gtk.org/pub/gtk/v1.2/$glib_file"
fi
2001-07-14 18:46:19 +00:00
if test -n "`wget 2>/dev/null|grep -i wget`"; then
2001-02-23 08:07:10 +00:00
dlcmd="wget http://irssi.org/files/$glib_file"
fi
2001-07-14 18:46:19 +00:00
if test -n "$dlcmd"; then
2001-02-23 08:07:10 +00:00
echo "*** I can download GLib for you now. If you don't want to, press CTRL-C now."
read answer
eval $dlcmd
if `gunzip $glib_file`; then
glib_file=`echo $glib_file|$sedpath s/\.gz$//`
if `tar xf $glib_file`; then
rm -f $glib_file
AC_CHECK_GLIBDIR
fi
fi
fi
2001-07-14 18:46:19 +00:00
if test -z "$GLIB_LIBS"; then
2001-02-23 08:07:10 +00:00
AC_ERROR([GLIB is required to build irssi.])
fi
2000-11-23 22:42:37 +00:00
fi
2000-07-31 20:17:33 +00:00
fi
1999-09-03 14:27:29 +00:00
2000-05-09 11:42:42 +00:00
PROG_LIBS="$PROG_LIBS $GLIB_LIBS"
1999-10-30 13:21:14 +00:00
2001-01-01 10:42:15 +00:00
dnl **
dnl ** check if we can link dynamic libraries to modules
2001-01-16 00:14:14 +00:00
dnl ** also checks if libraries are built to .libs dir
2001-01-01 10:42:15 +00:00
dnl **
AC_MSG_CHECKING([if we can link dynamic libraries with modules])
DYNLIB_MODULES=no
2001-01-16 00:14:14 +00:00
dnl ** compile object file
2001-01-01 10:42:15 +00:00
cat > conftest.c <<EOF
#include <math.h>
int modfunc(void){return (int)floor(1.2);}
EOF
2001-05-17 20:13:59 +00:00
2001-01-01 10:42:15 +00:00
./libtool --mode=compile $CC $CFLAGS -c conftest.c 2> /dev/null > /dev/null
if test ! -s conftest.lo; then
2001-01-16 00:14:14 +00:00
AC_ERROR([error compiling test module])
fi
dnl ** link to library
2001-02-17 07:16:58 +00:00
./libtool --mode=link $CC $CFLAGS $LDFLAGS -rpath /usr/lib conftest.lo -lm -o libconftest.la > /dev/null
2001-02-17 10:44:06 +00:00
if test ! -s .libs/libconftest.a; then
2001-01-16 00:14:14 +00:00
AC_ERROR([error, can't even find .a library])
fi
dnl ** check if dynamic linking worked
2001-04-09 16:39:30 +00:00
libfile=`grep '^library_names' libconftest.la|$sedpath "s/library_names='\(.*\)'.*/\1/"|$sedpath 's/.* \([[^ ]]*\)$/\1/'`
2001-02-23 08:07:10 +00:00
if test ! -s .libs/$libfile; then
2001-01-16 00:14:14 +00:00
AC_MSG_RESULT([no, error linking test module])
else
cat > conftest.c <<EOF
2001-01-01 10:42:15 +00:00
#include <gmodule.h>
main() {
2001-01-16 00:14:14 +00:00
GModule *m; int (*modfunc)(void);
2001-02-23 08:07:10 +00:00
m = g_module_open(".libs/$libfile", 0);
2001-01-16 00:14:14 +00:00
if (!m) g_print("error loading: %s", g_module_error());
else if (!g_module_symbol(m, "modfunc", (gpointer *) &modfunc))
g_print("modfunc() symbol not found from module");
else if (modfunc() == 1) g_print("ok"); else g_print("wrong result?! 1 vs %d", modfunc());
return 0; }
2001-01-01 10:42:15 +00:00
EOF
2001-02-23 08:07:10 +00:00
$CC $CFLAGS conftest.c -o conftest $GLIB_CFLAGS $GLIB_LIBS 2> /dev/null > /dev/null
2001-01-16 00:14:14 +00:00
if test ! -s conftest; then
AC_MSG_RESULT([no, error compiling test program])
else
status="`./conftest`"
if test "x$status" = "xok"; then
DYNLIB_MODULES=yes
AC_MSG_RESULT([yes])
2001-01-01 10:42:15 +00:00
else
2001-01-16 00:14:14 +00:00
AC_MSG_RESULT([no, error running: $status])
2001-01-01 10:42:15 +00:00
fi
fi
fi
2001-02-17 10:58:53 +00:00
rm -rf conftest conftest.* libconftest.* .libs
2001-01-01 10:42:15 +00:00
1999-09-03 14:27:29 +00:00
dnl **
dnl ** curses checks
dnl **
if test "x$want_textui" = "xyes"; then
AC_CHECK_CURSES
2001-07-14 18:46:19 +00:00
if test -n "$has_ncurses"; then
1999-09-03 14:27:29 +00:00
AC_CHECK_LIB(ncurses, use_default_colors, [
AC_DEFINE(HAVE_NCURSES_USE_DEFAULT_COLORS)
],, $CURSES_LIBS)
AC_CHECK_LIB(ncurses, idcok, [
AC_DEFINE(HAVE_CURSES_IDCOK)
],, $CURSES_LIBS)
2000-02-20 13:40:49 +00:00
AC_CHECK_LIB(ncurses, resizeterm, [
AC_DEFINE(HAVE_CURSES_RESIZETERM)
],, $CURSES_LIBS)
2000-08-10 20:02:59 +00:00
AC_CHECK_LIB(ncurses, wresize, [
AC_DEFINE(HAVE_CURSES_WRESIZE)
],, $CURSES_LIBS)
2000-10-04 04:01:45 +00:00
elif test "x$has_curses" = "xtrue"; then
1999-09-03 14:27:29 +00:00
AC_CHECK_LIB(curses, idcok, [
AC_DEFINE(HAVE_CURSES_IDCOK)
],, $CURSES_LIBS)
2000-02-20 13:40:49 +00:00
AC_CHECK_LIB(curses, resizeterm, [
AC_DEFINE(HAVE_CURSES_RESIZETERM)
],, $CURSES_LIBS)
2000-08-10 20:02:59 +00:00
AC_CHECK_LIB(curses, wresize, [
AC_DEFINE(HAVE_CURSES_WRESIZE)
],, $CURSES_LIBS)
2000-10-04 04:01:45 +00:00
else
2000-07-26 23:55:32 +00:00
want_textui=no
2000-07-09 14:27:59 +00:00
curses_error=yes
2000-01-12 22:10:30 +00:00
fi
1999-09-03 14:27:29 +00:00
else
has_curses=false
fi
2001-01-01 10:42:15 +00:00
dnl **
dnl ** perl checks
dnl **
2000-10-03 22:57:14 +00:00
if test "$want_perl" != "no"; then
2001-02-22 20:39:35 +00:00
AC_MSG_CHECKING(for working Perl support)
2001-07-14 19:34:28 +00:00
if test -z "$perlpath"; then
2001-02-22 20:39:35 +00:00
perl_check_error="perl binary not found"
else
PERL_CFLAGS=`$perlpath -MExtUtils::Embed -e ccopts 2>/dev/null`
fi
2000-02-24 21:14:44 +00:00
2001-07-14 18:46:19 +00:00
if test -z "$PERL_CFLAGS"; then
if test -n "$perl_check_error"; then
perl_check_error="Error getting perl CFLAGS"
fi
2001-02-22 20:39:35 +00:00
AC_MSG_RESULT([not found, building without Perl])
2000-02-24 21:14:44 +00:00
want_perl=no
else
2001-01-01 10:42:15 +00:00
PERL_LDFLAGS=`$perlpath -MExtUtils::Embed -e ldopts 2>/dev/null`
2000-09-07 21:55:58 +00:00
2000-09-07 22:43:07 +00:00
dnl * Perl 5.004 and older use perl_xxx variables while
dnl * later use PL_perl_xxx variables ..
have_pl_perl=`$perlpath -e 'print $] < 5.005 ? "no" : "yes";'`
if test "x$have_pl_perl" = "xyes"; then
AC_DEFINE(HAVE_PL_PERL)
fi
2001-01-01 10:42:15 +00:00
if test "x$DYNLIB_MODULES" = "xno" -a "$want_perl" != "static"; then
dnl * wanted perl as module, won't get it.
want_perl=static
perl_mod_error="Dynamic library dependencies don't work with modules"
fi
if test "$want_perl" != "static"; then
2000-10-03 22:57:14 +00:00
dnl * dynaloader.a -> libperl_dynaloader.la
2001-02-21 03:43:31 +00:00
DYNALOADER_A=`echo $PERL_LDFLAGS | $perlpath -pe 's/^(.* )*([[^ ]]*DynaLoader\.a).*/\2/'`
2000-10-03 22:57:14 +00:00
fi
2000-09-07 21:55:58 +00:00
2001-01-01 10:42:15 +00:00
dnl * don't check libperl.a if dynaloader.a wasn't found..
2001-07-14 18:46:19 +00:00
if test -n "$DYNALOADER_A"; then
2001-01-01 10:42:15 +00:00
dnl * find either libperl.a or libperl.so
LIBPERL_A=`echo "$PERL_LDFLAGS -L/usr/lib"|$perlpath -e 'foreach (split(/ /, <STDIN>)) { if (/^-L(.*)/) { my $dir=$1; if (\`ls $dir/libperl.so* 2>/dev/null\`) { print "-lperl"; last; }; if (-e "$dir/libperl.a") { print "$dir/libperl.a"; last } } };'`
2001-07-14 18:46:19 +00:00
if test -z "$LIBPERL_A"; then
2001-01-01 10:42:15 +00:00
perl_mod_error="Didn't find location of -lperl"
DYNALOADER_A=
elif test "$LIBPERL_A" = "-lperl"; then
LIBPERL_A=
fi
fi
2000-09-07 21:55:58 +00:00
dnl * remove all database stuffs
dnl * nsl is already in ldflags
2001-02-23 08:07:10 +00:00
dnl * libc is of course linked without needing -lc
dnl * -rdynamic must not be in LIBADD line
2001-04-09 16:36:28 +00:00
for word in -ldb -ldbm -lndbm -lgdbm -lc -rdynamic; do
2001-02-23 08:07:10 +00:00
PERL_LDFLAGS=`echo $PERL_LDFLAGS | $sedpath -e "s/$word //" -e "s/$word$//"`
done
2000-02-24 21:14:44 +00:00
2001-02-23 08:07:10 +00:00
case "$host_os" in
linux*)
PERL_LDFLAGS=`echo $PERL_LDFLAGS | $sedpath -e 's/-lposix //' -e 's/-lposix$//'`
;;
hpux*)
if test "x$ac_cv_prog_gcc" = "xyes"; then
PERL_CFLAGS=`echo $PERL_CFLAGS | $sedpath -e 's/-Ae //' -e 's/-Ae$//'`
PERL_LDFLAGS=`echo $PERL_LDFLAGS | $sedpath -e 's/-Ae //' -e 's/-Ae$//'`
fi
;;
*)
;;
esac
2000-09-07 21:55:58 +00:00
2001-02-22 20:39:35 +00:00
dnl * check that perl's ldflags actually work
AC_CACHE_VAL(irssi_cv_lib_perl_works, [
2001-02-23 08:07:10 +00:00
echo "main(){perl_alloc(); return 0;}" > conftest.c
$CC $CFLAGS conftest.c -o conftest $LDFLAGS $PERL_LDFLAGS 2> /dev/null > /dev/null
2001-02-22 20:39:35 +00:00
if test -s conftest; then
irssi_cv_lib_perl_works=yes
else
irssi_cv_lib_perl_works=no
fi
])
if test "x$irssi_cv_lib_perl_works" = "xno"; then
perl_check_error="Error linking with perl libraries: $PERL_LDFLAGS"
AC_MSG_RESULT([error linking with perl libraries, building without Perl])
want_perl=no
fi
fi
if test "x$want_perl" != "xno"; then
2000-10-03 22:57:14 +00:00
if test "x$want_perl" = "xstatic"; then
AC_MSG_RESULT(ok)
2001-07-14 18:46:19 +00:00
elif test -z "$DYNALOADER_A"; then
2000-10-03 22:57:14 +00:00
AC_MSG_RESULT([error parsing ldopts, building Perl into irssi binary instead of as module])
want_perl=static
2000-09-07 21:55:58 +00:00
else
AC_MSG_RESULT(ok)
2001-02-21 03:43:31 +00:00
PERL_LDFLAGS=`echo $PERL_LDFLAGS | $perlpath -pe 's/^(.* )*[[^ ]]*DynaLoader\.a/\1libperl_dynaloader.la/'`
2001-07-14 18:46:19 +00:00
if test -n "$LIBPERL_A"; then
2001-03-03 15:19:33 +00:00
PERL_LDFLAGS=`echo $PERL_LDFLAGS | $sedpath -e 's/-lperl /libperl_orig.la /' -e 's/-lperl$/libperl_orig.la$/'`
2001-01-01 10:42:15 +00:00
fi
2000-10-03 23:54:56 +00:00
AC_SUBST(LIBPERL_A)
AC_SUBST(DYNALOADER_A)
2000-10-03 22:57:14 +00:00
fi
2000-03-11 20:19:24 +00:00
2000-10-03 22:57:14 +00:00
if test "x$want_perl" = "xstatic"; then
2000-10-04 00:22:59 +00:00
dnl * building with static perl support
dnl * all PERL_LDFLAGS linking is done in fe-text
2001-07-29 09:17:53 +00:00
PERL_LINK_FLAGS="$PERL_LDFLAGS"
PERL_LINK_LIBS="../perl/libperl_core_static.la"
PERL_FE_LINK_LIBS="../perl/libfe_perl_static.la"
2000-10-03 22:57:14 +00:00
PERL_LDFLAGS=
AC_DEFINE(HAVE_STATIC_PERL)
2000-10-04 00:22:59 +00:00
dnl * build only static library of perl module
2001-02-17 10:35:35 +00:00
perl_module_lib=
2001-07-29 09:17:53 +00:00
perl_module_fe_lib=
perl_static_lib=libperl_core_static.la
perl_static_fe_lib=libfe_perl_static.la
2000-10-04 00:22:59 +00:00
PERL_LIBTOOL='$(SHELL) $(top_builddir)/libtool'
2000-10-03 23:54:56 +00:00
else
2001-05-31 21:19:29 +00:00
dnl * build dynamic library of perl module
2001-02-17 10:35:35 +00:00
perl_module_lib=libperl_core.la
2001-07-29 09:17:53 +00:00
perl_module_fe_lib=libfe_perl.la
2001-02-17 10:35:35 +00:00
perl_static_lib=
2001-07-29 09:17:53 +00:00
perl_static_fe_lib=
2001-05-31 21:19:29 +00:00
PERL_LIBTOOL='$(SHELL) $(top_builddir)/libtool'
2000-09-07 21:55:58 +00:00
fi
2001-02-17 10:35:35 +00:00
AC_SUBST(perl_module_lib)
AC_SUBST(perl_static_lib)
2001-07-29 09:17:53 +00:00
AC_SUBST(perl_module_fe_lib)
AC_SUBST(perl_static_fe_lib)
2000-10-04 00:22:59 +00:00
AC_SUBST(PERL_LIBTOOL)
2000-10-03 23:54:56 +00:00
2001-07-29 09:17:53 +00:00
AC_SUBST(PERL_LINK_FLAGS)
2001-02-17 11:05:29 +00:00
AC_SUBST(PERL_LINK_LIBS)
2001-07-29 09:17:53 +00:00
AC_SUBST(PERL_FE_LINK_LIBS)
2001-02-17 11:05:29 +00:00
2000-10-03 22:57:14 +00:00
AC_SUBST(PERL_LDFLAGS)
AC_SUBST(PERL_CFLAGS)
2001-07-30 22:10:11 +00:00
AC_SUBST(PERL_USE_LIB)
AC_SUBST(PERL_MM_PARAMS)
2000-03-11 20:19:24 +00:00
fi
2000-02-20 23:28:50 +00:00
fi
1999-10-30 13:21:14 +00:00
dnl ** check what we want to build
2000-01-12 22:10:30 +00:00
AM_CONDITIONAL(BUILD_TEXTUI, test "$want_textui" = "yes")
AM_CONDITIONAL(BUILD_IRSSIBOT, test "$want_irssibot" = "yes")
2000-09-29 23:59:51 +00:00
AM_CONDITIONAL(BUILD_IRSSIPROXY, test "$want_irssiproxy" = "yes")
2000-01-12 22:10:30 +00:00
AM_CONDITIONAL(BUILD_PLUGINS, test "$want_plugins" = "yes")
2001-07-14 18:46:19 +00:00
AM_CONDITIONAL(BUILD_SERVERTEST, test -n "$TEST_DIR")
2000-10-03 22:57:14 +00:00
AM_CONDITIONAL(HAVE_PERL, test "$want_perl" != "no")
2000-10-03 23:54:56 +00:00
AM_CONDITIONAL(HAVE_STATIC_PERL, test "$want_perl" = "static")
2000-10-03 22:57:14 +00:00
AC_SUBST(PROG_LIBS)
1999-11-28 17:50:17 +00:00
2000-04-26 08:10:09 +00:00
dnl **
dnl ** Keep all the libraries here so each frontend doesn't need to
dnl ** keep track of them all
dnl **
2000-05-09 11:42:42 +00:00
dnl ** (these could be made configurable)
2000-07-16 20:34:49 +00:00
CHAT_MODULES="irc"
2000-05-09 11:42:42 +00:00
irc_MODULES="dcc flood notifylist"
2001-07-14 18:46:19 +00:00
if test -n "$build_modules"; then
2000-05-29 16:37:00 +00:00
irc_MODULES="$irc_MODULES $build_modules"
fi
2000-04-26 08:10:09 +00:00
2000-05-09 11:42:42 +00:00
dnl ****************************************
AC_SUBST(CHAT_MODULES)
AC_SUBST(irc_MODULES)
2000-08-27 22:40:08 +00:00
CORE_LIBS="../core/libcore.a ../lib-config/libirssi_config.a ../lib-popt/libpopt.a"
2000-09-06 21:30:56 +00:00
FE_COMMON_LIBS=""
2000-05-09 11:42:42 +00:00
CHAT_LIBS=""
for c in $CHAT_MODULES; do
2000-07-16 14:30:29 +00:00
module_inits=""
module_deinits=""
fe_module_inits=""
fe_module_deinits=""
2000-08-27 22:40:08 +00:00
CHAT_LIBS="$CHAT_LIBS ../$c/lib$c.a ../$c/core/lib${c}_core.a"
2001-04-16 12:46:57 +00:00
if test -f $srcdir/src/fe-common/$c/module.h; then
2000-09-06 21:30:56 +00:00
FE_COMMON_LIBS="$FE_COMMON_LIBS../fe-common/$c/libfe_common_$c.a "
2000-07-16 14:30:29 +00:00
fi
2000-05-09 11:42:42 +00:00
for s in `eval echo \\$${c}_MODULES`; do
2001-06-01 18:39:45 +00:00
CHAT_LIBS="$CHAT_LIBS ../$c/$s/lib${c}_$s.a"
2000-05-25 11:30:47 +00:00
module_inits="$module_inits ${c}_${s}_init();"
module_deinits="${c}_${s}_deinit(); $module_deinits"
2001-04-16 12:46:57 +00:00
if test -f $srcdir/src/fe-common/$c/$s/module.h; then
2001-06-01 18:39:45 +00:00
FE_COMMON_LIBS="$FE_COMMON_LIBS../fe-common/$c/$s/libfe_${c}_$s.a "
2000-05-25 11:30:47 +00:00
fe_module_inits="$fe_module_inits fe_${c}_${s}_init();"
fe_module_deinits="fe_${c}_${s}_deinit(); $fe_module_deinits"
fi
2000-05-09 11:42:42 +00:00
done
2000-05-25 11:30:47 +00:00
file="$srcdir/src/$c/$c.c"
echo "/* this file is automatically generated by configure - don't change */" > $file
echo "void ${c}_core_init(void); void ${c}_core_deinit(void);" >> $file
2001-07-14 18:46:19 +00:00
if test -n "$module_inits"; then
2000-07-16 14:30:29 +00:00
echo "$module_inits" | $sedpath -e 's/()/(void)/g' -e 's/ /void /g' >> $file
2000-09-07 21:55:58 +00:00
echo "$module_deinits" | $sedpath -e 's/ *$//' -e 's/()/(void)/g' -e 's/ /void /g' -e 's/^/void /' >> $file
2000-07-16 14:30:29 +00:00
fi
2000-05-25 11:30:47 +00:00
echo "void ${c}_init(void) { ${c}_core_init(); $module_inits }" >> $file
echo "void ${c}_deinit(void) { $module_deinits ${c}_core_deinit(); }" >> $file
2001-04-16 12:46:57 +00:00
if test -f $srcdir/src/fe-common/$c/module.h; then
2000-07-16 14:30:29 +00:00
file="$srcdir/src/fe-common/$c/${c}-modules.c"
echo "/* this file is automatically generated by configure - don't change */" > $file
2001-07-14 18:46:19 +00:00
if test -n "$fe_module_inits"; then
2000-08-27 22:40:08 +00:00
echo "$fe_module_inits" | $sedpath -e 's/()/(void)/g' -e 's/ /void /g' >> $file
2000-09-07 21:55:58 +00:00
echo "$fe_module_deinits" | $sedpath -e 's/ *$//' -e 's/()/(void)/g' -e 's/ /void /g' -e 's/^/void /' >> $file
2000-08-27 22:40:08 +00:00
fi
2000-07-16 14:30:29 +00:00
echo "void fe_${c}_modules_init(void) { $fe_module_inits }" >> $file
echo "void fe_${c}_modules_deinit(void) { $fe_module_deinits }" >> $file
fi
2000-05-09 11:42:42 +00:00
done
2000-04-26 08:10:09 +00:00
2000-09-06 21:30:56 +00:00
FE_COMMON_LIBS="$FE_COMMON_LIBS../fe-common/core/libfe_common_core.a"
2000-04-26 08:10:09 +00:00
dnl ** common libraries needed by frontends
2001-02-17 11:09:14 +00:00
COMMON_NOUI_LIBS="$CHAT_LIBS $CORE_LIBS $INTLLIBS"
COMMON_LIBS="$FE_COMMON_LIBS $COMMON_NOUI_LIBS"
2000-05-09 11:42:42 +00:00
AC_SUBST(COMMON_NOUI_LIBS)
2000-04-26 08:10:09 +00:00
AC_SUBST(COMMON_LIBS)
1999-09-03 14:27:29 +00:00
dnl **
dnl ** memory debugging
dnl **
if test "x$want_memdebug" = "xyes"; then
AC_DEFINE(MEM_DEBUG)
fi
AM_CONDITIONAL(BUILD_MEMDEBUG, test "x$want_memdebug" = "xyes")
2001-05-01 09:38:06 +00:00
dnl **
dnl ** tr-Chinese Big5 support
dnl **
if test "x$want_big5" = "xyes"; then
AC_DEFINE(WANT_BIG5)
fi
1999-09-03 14:27:29 +00:00
dnl **
dnl ** IPv6 support
dnl **
if test "x$want_ipv6" = "xyes"; then
2001-08-09 11:03:14 +00:00
AC_MSG_CHECKING([for IPv6])
AC_CACHE_VAL(irssi_cv_type_in6_addr,
[AC_TRY_COMPILE([
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <netdb.h>
#include <arpa/inet.h>],
[struct in6_addr i;],
irssi_cv_type_in6_addr=yes,
irssi_cv_type_in6_addr=no,
)])
if test $irssi_cv_type_in6_addr = yes; then
AC_DEFINE(HAVE_IPV6)
fi
AC_MSG_RESULT($irssi_cv_type_in6_addr)
1999-09-03 14:27:29 +00:00
fi
AC_OUTPUT(
Makefile
src/Makefile
2000-04-26 08:10:09 +00:00
src/core/Makefile
src/irc/Makefile
src/irc/core/Makefile
2000-05-25 11:30:47 +00:00
src/irc/bot/Makefile
2000-04-26 08:10:09 +00:00
src/irc/dcc/Makefile
src/irc/notifylist/Makefile
2000-09-29 23:59:51 +00:00
src/irc/proxy/Makefile
2000-04-26 08:10:09 +00:00
src/irc/flood/Makefile
src/fe-common/Makefile
src/fe-common/core/Makefile
src/fe-common/irc/Makefile
src/fe-common/irc/dcc/Makefile
src/fe-common/irc/notifylist/Makefile
src/fe-none/Makefile
src/fe-text/Makefile
1999-09-03 14:27:29 +00:00
src/lib-config/Makefile
1999-10-06 16:47:43 +00:00
src/lib-popt/Makefile
2000-04-26 08:10:09 +00:00
src/perl/Makefile
2000-10-03 19:10:24 +00:00
src/perl/common/Makefile.PL
2000-09-29 23:59:51 +00:00
src/perl/irc/Makefile.PL
2001-06-28 11:01:24 +00:00
src/perl/ui/Makefile.PL
2001-07-14 18:46:19 +00:00
src/perl/textui/Makefile.PL
1999-09-03 14:27:29 +00:00
servertest/Makefile
2000-03-15 20:59:36 +00:00
scripts/Makefile
1999-10-30 15:56:53 +00:00
docs/Makefile
docs/help/Makefile
2000-07-26 17:52:19 +00:00
docs/help/in/Makefile
1999-09-04 11:42:33 +00:00
stamp.h
2000-05-09 11:42:42 +00:00
irssi.spec
irssi-config)
2000-01-12 22:10:30 +00:00
2000-10-03 23:54:56 +00:00
dnl ** for building from objdir
2000-10-03 22:57:14 +00:00
if test "x$want_perl" != "xno"; then
2000-03-11 20:19:24 +00:00
old_dir=`pwd` && cd $srcdir && whole_dir=`pwd` && cd $old_dir
if test "x$old_dir" != "x$whole_dir"; then
2000-12-03 07:27:39 +00:00
for file in $whole_dir/src/perl/*.[[ch]] $whole_dir/src/perl/libperl_orig.la $whole_dir/src/perl/libperl_dynaloader.la $whole_dir/src/perl/common/typemap $whole_dir/src/perl/common/module.h $whole_dir/src/perl/common/*.xs $whole_dir/src/perl/irc/typemap $whole_dir/src/perl/irc/module.h $whole_dir/src/perl/irc/*.xs; do
2001-02-23 08:07:10 +00:00
link=`echo $file|$sedpath "s?$whole_dir/??"`
2000-10-04 00:22:59 +00:00
rm -f $link
$LN_S $file $link
2000-06-04 16:01:19 +00:00
done
2000-03-11 20:19:24 +00:00
fi
fi
2000-01-12 22:10:30 +00:00
echo
2000-07-26 23:55:32 +00:00
if test "x$curses_error" != "xyes"; then
2000-07-09 14:27:59 +00:00
echo "Building text frontend ..... : $want_textui"
else
2000-07-26 23:55:32 +00:00
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)"
2000-07-09 14:27:59 +00:00
fi
2000-09-06 21:30:56 +00:00
echo "Building irssi bot ......... : $want_irssibot"
2000-09-29 23:59:51 +00:00
echo "Building irssi proxy ....... : $want_irssiproxy"
2000-07-09 12:33:33 +00:00
echo "Building with IPv6 support . : $want_ipv6"
2001-02-23 08:07:10 +00:00
2000-10-03 22:57:14 +00:00
if test "x$want_perl" = "xstatic"; then
echo "Building with Perl support . : static (in irssi binary)"
2001-10-20 21:32:22 +00:00
elif test "x$want_perl" = "xmodule"; then
2000-10-03 22:57:14 +00:00
echo "Building with Perl support . : module"
else
2001-07-14 18:46:19 +00:00
if test -z "$perl_check_error"; then
2001-02-22 20:39:35 +00:00
echo "Building with Perl support . : no"
else
echo "Building with Perl support . : NO!"
echo " - $perl_check_error"
fi
2000-10-03 22:57:14 +00:00
fi
2001-02-23 08:07:10 +00:00
if test "x$want_perl" != "xno" -a "x$perl_mod_error" != "x"; then
2001-01-01 10:42:15 +00:00
echo " - NOTE: Perl support will be compiled statically to irssi, not as"
echo " a module as requested. Reason:"
echo " $perl_mod_error"
fi
2001-10-20 21:32:22 +00:00
if test "x$want_perl" != "xno"; then
2001-07-30 22:10:11 +00:00
if test -z "$perl_library_dir"; then
perl_library_dir="(site default - `$perlpath -e 'use Config; print $Config{sitearch}'`)"
fi
echo "Perl library directory ..... : $perl_library_dir"
if test "x$perl_prefix_note" = "xyes"; then
echo " - NOTE: This was automatically set to the same directory you gave with"
echo " --prefix. If you want the perl libraries to install to their 'correct'"
echo " path, you'll need to give --with-perl-lib=site option to configure."
echo " Anyway, installing perl to this directory should work just as well."
2000-07-09 12:33:33 +00:00
fi
fi
echo "Install prefix ............. : $prefix"
2000-01-12 22:10:30 +00:00