summary refs log tree commit diff stats
path: root/src/common
ModeNameSize
-rw-r--r--Makefile.am1274log stats plain blame
-rw-r--r--cfgfiles.c34060log stats plain blame
-rw-r--r--cfgfiles.h2568log stats plain blame
-rw-r--r--chanopt.c8883log stats plain blame
-rw-r--r--chanopt.h1129log stats plain blame
-rw-r--r--common.vcxproj7245log stats plain blame
-rw-r--r--common.vcxproj.filters6131log stats plain blame
-rw-r--r--ctcp.c4821log stats plain blame
-rw-r--r--ctcp.h987log stats plain blame
d---------dbus529log stats plain
-rw-r--r--dcc.c57796log stats plain blame
-rw-r--r--dcc.h3777log stats plain blame
-rw-r--r--fe.h7230log stats plain blame
-rw-r--r--hexchat-plugin.h11863log stats plain blame
-rw-r--r--hexchat.c26907log stats plain blame
-rw-r--r--hexchat.h20949log stats plain blame
-rw-r--r--hexchatc.h2005log stats plain blame
-rw-r--r--history.c2401log stats plain blame
-rw-r--r--history.h1170log stats plain blame
-rw-r--r--identd.c5120log stats plain blame
-rw-r--r--identd.h910log stats plain blame
-rw-r--r--ignore.c9114log stats plain blame
-rw-r--r--ignore.h1677log stats plain blame
-rw-r--r--inbound.c30017log stats plain blame
-rw-r--r--inbound.h3388log stats plain blame
-rw-r--r--inet.h1818log stats plain blame
-rw-r--r--make-te.c2997log stats plain blame
-rw-r--r--make-te.vcxproj5032log stats plain blame
-rw-r--r--make-te.vcxproj.filters954log stats plain blame
-rw-r--r--modes.c19479log stats plain blame
-rw-r--r--modes.h1369log stats plain blame
-rw-r--r--msproxy.c13987log stats plain blame
-rw-r--r--msproxy.h10914log stats plain blame
-rw-r--r--network.c8830log stats plain blame
-rw-r--r--network.h1759log stats plain blame
-rw-r--r--notify.c13373log stats plain blame
-rw-r--r--notify.h1907log stats plain blame
-rw-r--r--outbound.c100617log stats plain blame
-rw-r--r--outbound.h1763log stats plain blame
-rw-r--r--plugin-timer.c4638log stats plain blame
-rw-r--r--plugin-timer.h1019log stats plain blame
-rw-r--r--plugin.c43157log stats plain blame
-rw-r--r--plugin.h6134log stats plain blame
-rw-r--r--proto-irc.c33881log stats plain blame
-rw-r--r--proto-irc.h911log stats plain blame
-rw-r--r--server.c49319log stats plain blame
-rw-r--r--server.h1747log stats plain blame
-rw-r--r--servlist.c27639log stats plain blame
-rw-r--r--servlist.h2624log stats plain blame
-rw-r--r--ssl.c7446log stats plain blame
-rw-r--r--ssl.h2921log stats plain blame
-rw-r--r--text.c47598log stats plain blame
-rw-r--r--text.h2149log stats plain blame
-rw-r--r--textevents.in14564log stats plain blame
-rw-r--r--thread.c1321log stats plain blame
-rw-r--r--thread.h1098log stats plain blame
-rw-r--r--tree.c4430log stats plain blame
-rw-r--r--tree.h1467log stats plain blame
-rw-r--r--typedef.h1147log stats plain blame
-rw-r--r--url.c11034log stats plain blame
-rw-r--r--url.h1341log stats plain blame
-rw-r--r--userlist.c10330log stats plain blame
-rw-r--r--userlist.h2225log stats plain blame
-rw-r--r--util.c41653log stats plain blame
-rw-r--r--util.h3437log stats plain blame
********* dnl ********************************************************************* if test "x$libnotify" = "xyes" ; then PKG_CHECK_MODULES(LIBNOTIFY, libnotify >= 0.4, [], [ libnotify=no ]) if test "$libnotify" != "no" ; then GUI_LIBS="$GUI_LIBS $LIBNOTIFY_LIBS" GUI_CFLAGS="$GUI_CFLAGS $LIBNOTIFY_CFLAGS" AC_DEFINE(USE_LIBNOTIFY) fi fi dnl ********************************************************************* dnl ** LIBCANBERRA ****************************************************** dnl ********************************************************************* if test "x$libcanberra" = "xyes" ; then PKG_CHECK_MODULES(LIBCANBERRA, libcanberra >= 0.22, [], [ libcanberra=no ]) if test "$libcanberra" != "no" ; then COMMON_LIBS="$COMMON_LIBS $LIBCANBERRA_LIBS" COMMON_CFLAGS="$COMMON_CFLAGS $LIBCANBERRA_CFLAGS" AC_DEFINE(USE_LIBCANBERRA) fi fi dnl ********************************************************************* dnl ** SPELL ************************************************************ dnl ********************************************************************* if test "x$isocodes" = "xyes" ; then PKG_CHECK_MODULES(ISOCODES, "iso-codes", [ iso_codes_prefix=`$PKG_CONFIG --variable=prefix iso-codes 2>/dev/null || echo /usr` AC_MSG_NOTICE([iso-codes prefix: $iso_codes_prefix]) AC_DEFINE_UNQUOTED([ISO_CODES_PREFIX], ["$iso_codes_prefix"], [ISO codes prefix]) AC_DEFINE_UNQUOTED([ISO_CODES_LOCALEDIR], ["$iso_codes_prefix/share/locale"], [ISO codes locale dir]) AC_DEFINE([HAVE_ISO_CODES], [1], [iso-codes available]) ], [ isocodes=no AC_MSG_WARN(iso-codes not found!) ]) fi dnl ********************************************************************* dnl ** Static Analysis ************************************************** dnl ********************************************************************* if test "x$analyze" = "xyes"; then if test "$CC" != "clang"; then AC_MSG_WARN(CC is not clang for static analysis) analyze=no fi fi dnl ********************************************************************* dnl ** CONDITIONALS ***************************************************** dnl ********************************************************************* AM_CONDITIONAL(USE_OPENSSL, test "x$openssl" = "xyes") AM_CONDITIONAL(USE_LIBNOTIFY, test "x$libnotify" = "xyes") AM_CONDITIONAL(USE_LIBCANBERRA, test "x$libcanberra" = "xyes") AM_CONDITIONAL(USE_MSPROXY, test "x$ntlm" = "xyes") AM_CONDITIONAL(DO_TEXT, test "x$textfe" = "xyes") AM_CONDITIONAL(DO_GTK, test "x$gtkfe" = "xyes") AM_CONDITIONAL(DO_PERL, test "x$perl" = "xyes") AM_CONDITIONAL(DO_PYTHON, test "x$python" != "xno") AM_CONDITIONAL(DO_PLUGIN, test "x$plugin" = "xyes") AM_CONDITIONAL(DO_CHECKSUM, test "x$checksum" = "xyes") AM_CONDITIONAL(DO_DOAT, test "x$doat" = "xyes") AM_CONDITIONAL(DO_FISHLIM, test "x$fishlim" = "xyes") AM_CONDITIONAL(DO_SYSINFO, test "x$sysinfo" = "xyes") AM_CONDITIONAL(DO_STATIC_ANALYSIS, test "x$analyze" = "xyes") AM_CONDITIONAL(USE_DBUS, test "x$dbus" = "xyes") AM_CONDITIONAL(HAVE_ISO_CODES, test "x$isocodes" = "xyes") AM_CONDITIONAL(WITH_TM, test "x$theme_manager" != "xno") dnl ********************************************************************* dnl ** SOCKS5 *********************************************************** dnl ********************************************************************* if test "$socks" = yes; then socks=no AC_CHECK_LIB(socks5, SOCKSconnect, have_socks=yes) if test "$have_socks" = yes; then AC_CHECK_HEADERS(socks.h, have_socks_h=yes) if test "$have_socks_h" = yes; then socks=yes AC_DEFINE(SOCKS) LIBS="$LIBS -lsocks5" fi fi fi dnl ********************************************************************* dnl ** MS PROXY ********************************************************* dnl ********************************************************************* have_ntlm="no" if test "x$ntlm" = "xyes" ; then have_ntlm="no" AC_CHECK_LIB(ntlm, ntlm_smb_encrypt, have_ntlm=yes) if test "$have_ntlm" = yes; then LIBS="$LIBS -lntlm" AC_DEFINE(USE_MSPROXY) fi fi dnl ********************************************************************* dnl ** GCC FLAGS ******************************************************** dnl ********************************************************************* dnl Only use -Wall and -pipe if we have gcc if test "x$GCC" = "xyes"; then if test -z "`echo "$CFLAGS" | grep "\-Wall" 2> /dev/null`" ; then CFLAGS="$CFLAGS -Wall" fi dnl these flags might be unwanted if test x$minimalflags != xyes; then if test "$system" = "Linux" -o "$system" = "FreeBSD"; then if test -z "`echo "$CFLAGS" | grep "\-pipe" 2> /dev/null`" ; then CFLAGS="$CFLAGS -pipe" fi fi if test -z "`echo "$CFLAGS" | grep "\-g " 2> /dev/null`" ; then CFLAGS="$CFLAGS -g" fi fi fi dnl does this compiler support -Wno-pointer-sign ? AC_MSG_CHECKING([if $CC accepts -Wno-pointer-sign ]) safe_CFLAGS=$CFLAGS CFLAGS="-Wno-pointer-sign" AC_TRY_COMPILE(, [ return 0; ], [ no_pointer_sign=yes AC_MSG_RESULT([yes]) ], [ no_pointer_sign=no AC_MSG_RESULT([no]) ]) CFLAGS=$safe_CFLAGS if test x$no_pointer_sign = xyes; then CFLAGS="$CFLAGS -Wno-pointer-sign" fi dnl does this compiler support -funsigned-char ? AC_MSG_CHECKING([if $CC accepts -funsigned-char ]) safe_CFLAGS=$CFLAGS CFLAGS="-funsigned-char" AC_TRY_COMPILE(, [ return 0; ], [ unsigned_char=yes AC_MSG_RESULT([yes]) ], [ unsigned_char=no AC_MSG_RESULT([no]) ]) CFLAGS=$safe_CFLAGS if test x$unsigned_char = xyes; then CFLAGS="$CFLAGS -funsigned-char" fi dnl does this compiler support -Wno-unused-result ? AC_MSG_CHECKING([if $CC accepts -Wno-unused-result ]) safe_CFLAGS=$CFLAGS CFLAGS="-Wno-unused-result" AC_TRY_COMPILE(, [ return 0; ], [ no_unused_result=yes AC_MSG_RESULT([yes]) ], [ no_unused_result=no AC_MSG_RESULT([no]) ]) CFLAGS=$safe_CFLAGS if test x$no_unused_result = xyes; then CFLAGS="$CFLAGS -Wno-unused-result" fi dnl ********************************************************************* dnl ** FUNCTIONS/LIBS/CFLAGS ******************************************** dnl ********************************************************************* AC_MSG_CHECKING(for modern sigaction) dnl libc5 on linux and FreeBSD 3.x doesn\'t have siginfo_t dnl and the sa_sigation field. AC_TRY_COMPILE( [#include <signal.h>], [struct sigaction act; siginfo_t *si; act.sa_sigaction = 0;], [ AC_MSG_RESULT(yes) AC_DEFINE(USE_SIGACTION) ], AC_MSG_RESULT(no)) AC_CHECK_FUNCS(memrchr) AC_CHECK_FUNC(gethostbyname, , AC_CHECK_LIB(resolv, gethostbyname, , AC_CHECK_LIB(nsl, gethostbyname))) AC_CHECK_FUNC(gethostname, , AC_CHECK_LIB(nsl, gethostname)) dnl necessary for IRIX AC_CHECK_HEADERS(strings.h) dnl Check for type in sys/socket.h - from Squid source (GPL) AC_CACHE_CHECK(for socklen_t, ac_cv_type_socklen_t, [ AC_EGREP_CPP([socklen_t[^a-zA-Z_0-9]], [#include <sys/types.h> #include <sys/socket.h> #if STDC_HEADERS #include <stdlib.h> #include <stddef.h> #endif], ac_cv_type_socklen_t=yes, ac_cv_type_socklen_t=no) ]) if test $ac_cv_type_socklen_t = no; then AC_DEFINE(socklen_t, int) fi dnl Mac OS X and Darwin use lookupd, which caches DNS queries by default AC_EGREP_CPP(lookupd, dnl [#if (defined(__APPLE__) && defined(__MACH__)) lookupd #endif], AC_DEFINE([LOOKUPD],1,[Define to 1 if the system uses lookupd])) dnl freebsd needs this LIBS="$LIBS $INTLLIBS" CFLAGS="$CFLAGS $CPPFLAGS" GUI_LIBS="$GUI_LIBS $COMMON_LIBS" dnl make these visible to all Makefiles AC_SUBST(GUI_LIBS) AC_SUBST(GUI_CFLAGS) AC_SUBST(COMMON_LIBS) AC_SUBST(COMMON_CFLAGS) AC_SUBST(PERL_CFLAGS) AC_SUBST(PERL_LDFLAGS) AC_SUBST(PY_CFLAGS) AC_SUBST(PY_LIBS) AC_SUBST(DBUS_CFLAGS) AC_SUBST(DBUS_LIBS) AC_SUBST(OPENSSL_LIBS) AC_SUBST(OPENSSL_CFLAGS) AC_SUBST(PLUGIN_LDFLAGS) m4_ifdef([PKG_INSTALLDIR], [PKG_INSTALLDIR], AC_SUBST([pkgconfigdir], ${libdir}/pkgconfig)) dnl for plugin.c and pixmaps.c test "x$prefix" = xNONE && prefix="$ac_default_prefix" test "x$exec_prefix" = xNONE && exec_prefix="$prefix" AC_DEFINE_UNQUOTED(PREFIX, "${prefix}") AS_AC_EXPAND(HEXCHATLIBDIR, "${libdir}/hexchat/plugins") AC_DEFINE_UNQUOTED(HEXCHATLIBDIR, "$HEXCHATLIBDIR") AS_AC_EXPAND(HEXCHATSHAREDIR, "$datadir") AC_DEFINE_UNQUOTED(HEXCHATSHAREDIR, "$HEXCHATSHAREDIR") dnl for plugins/xxx/Makefile.am hexchatlibdir=${libdir}/hexchat/plugins AC_SUBST(hexchatlibdir) AC_CONFIG_FILES([ Makefile data/Makefile data/icons/Makefile data/misc/Makefile data/man/Makefile data/man/hexchat.1 data/pkgconfig/Makefile data/pkgconfig/hexchat-plugin.pc src/Makefile src/common/Makefile src/common/dbus/Makefile src/fe-text/Makefile src/fe-gtk/Makefile src/htm/Makefile src/htm/thememan osx/Info.plist plugins/Makefile plugins/python/Makefile plugins/perl/Makefile plugins/checksum/Makefile plugins/doat/Makefile plugins/fishlim/Makefile plugins/sysinfo/Makefile po/Makefile.in ]) AC_OUTPUT echo echo HexChat $VERSION echo echo GTK+ interface ........ : $gtkfe echo Text interface ........ : $textfe echo Theme manager ......... : $theme_manager echo echo OpenSSL support ....... : $openssl echo D-Bus support ......... : $dbus echo libnotify support ..... : $libnotify echo libcanberra support ... : $libcanberra echo Plugin interface ...... : $plugin echo IPv6 support .......... : $ipv6 echo MS Proxy NTLM \(ISA\) ... : $have_ntlm echo libproxy support ...... : $libproxy echo echo Perl .................. : $perl echo Python ................ : $python echo echo Checksum .............. : $checksum echo Do At ................. : $doat echo FiSHLiM ............... : $fishlim echo SysInfo ............... : $sysinfo echo echo The binary will be installed in $prefix/bin echo if test "$gtkfe" = no; then echo Warning: The GTK \(GUI\) frontend will not be built. echo fi echo configure complete, now type \'make\' and pray. echo