mirror of
https://github.com/hexchat/hexchat.git
synced 2024-11-10 05:02:50 +01:00
Compilation fixes and integration with HexChat
This commit is contained in:
parent
bc57507a4c
commit
62c9375bc9
22
configure.ac
22
configure.ac
@ -150,6 +150,10 @@ AC_ARG_ENABLE(sasl,
|
|||||||
[ --disable-sasl disable the SASL plugin],
|
[ --disable-sasl disable the SASL plugin],
|
||||||
sasl=$enableval, sasl=yes)
|
sasl=$enableval, sasl=yes)
|
||||||
|
|
||||||
|
AC_ARG_ENABLE(sysinfo,
|
||||||
|
[ --disable-sysinfo disable the SysInfo plugin],
|
||||||
|
sysinfo=$enableval, sysinfo=yes)
|
||||||
|
|
||||||
AC_ARG_ENABLE(dbus,
|
AC_ARG_ENABLE(dbus,
|
||||||
[ --disable-dbus disable DBUS support],
|
[ --disable-dbus disable DBUS support],
|
||||||
dbus=$enableval, dbus=yes)
|
dbus=$enableval, dbus=yes)
|
||||||
@ -586,6 +590,21 @@ if test "$sasl" != "no"; then
|
|||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
dnl *********************************************************************
|
||||||
|
dnl ** SYSINFO **********************************************************
|
||||||
|
dnl *********************************************************************
|
||||||
|
|
||||||
|
if test "$sysinfo" != "no"; then
|
||||||
|
AC_MSG_CHECKING(for plugin interface used by SysInfo)
|
||||||
|
sysinfo=no
|
||||||
|
if test "$plugin" = yes; then
|
||||||
|
AC_MSG_RESULT([yes])
|
||||||
|
PKG_CHECK_MODULES(LIBPCI, libpci >= 3.0.0, [sysinfo=yes], [])
|
||||||
|
else
|
||||||
|
AC_MSG_RESULT([plugins are disabled, use the --enable-plugin option for SysInfo])
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
dnl #######################################################################
|
dnl #######################################################################
|
||||||
dnl # Check for DBUS libraries
|
dnl # Check for DBUS libraries
|
||||||
dnl #######################################################################
|
dnl #######################################################################
|
||||||
@ -679,6 +698,7 @@ AM_CONDITIONAL(DO_CHECKSUM, test "x$checksum" = "xyes")
|
|||||||
AM_CONDITIONAL(DO_DOAT, test "x$doat" = "xyes")
|
AM_CONDITIONAL(DO_DOAT, test "x$doat" = "xyes")
|
||||||
AM_CONDITIONAL(DO_FISHLIM, test "x$fishlim" = "xyes")
|
AM_CONDITIONAL(DO_FISHLIM, test "x$fishlim" = "xyes")
|
||||||
AM_CONDITIONAL(DO_SASL, test "x$sasl" = "xyes")
|
AM_CONDITIONAL(DO_SASL, test "x$sasl" = "xyes")
|
||||||
|
AM_CONDITIONAL(DO_SYSINFO, test "x$sysinfo" = "xyes")
|
||||||
AM_CONDITIONAL(USE_DBUS, test "x$dbus" = "xyes")
|
AM_CONDITIONAL(USE_DBUS, test "x$dbus" = "xyes")
|
||||||
AM_CONDITIONAL(DO_GCONF, test "x$GCONFTOOL" != "xno")
|
AM_CONDITIONAL(DO_GCONF, test "x$GCONFTOOL" != "xno")
|
||||||
|
|
||||||
@ -944,6 +964,7 @@ plugins/checksum/Makefile
|
|||||||
plugins/doat/Makefile
|
plugins/doat/Makefile
|
||||||
plugins/fishlim/Makefile
|
plugins/fishlim/Makefile
|
||||||
plugins/sasl/Makefile
|
plugins/sasl/Makefile
|
||||||
|
plugins/sysinfo/Makefile
|
||||||
intl/Makefile
|
intl/Makefile
|
||||||
po/Makefile.in
|
po/Makefile.in
|
||||||
])
|
])
|
||||||
@ -979,6 +1000,7 @@ echo Checksum .............. : $checksum
|
|||||||
echo Do At ................. : $doat
|
echo Do At ................. : $doat
|
||||||
echo FiSHLiM ............... : $fishlim
|
echo FiSHLiM ............... : $fishlim
|
||||||
echo SASL .................. : $sasl
|
echo SASL .................. : $sasl
|
||||||
|
echo SysInfo ............... : $sysinfo
|
||||||
echo
|
echo
|
||||||
echo The binary will be installed in $prefix/bin
|
echo The binary will be installed in $prefix/bin
|
||||||
echo
|
echo
|
||||||
|
@ -33,5 +33,9 @@ if DO_CHECKSUM
|
|||||||
checksumdir = checksum
|
checksumdir = checksum
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
if DO_SYSINFO
|
||||||
|
sysinfodir = sysinfo
|
||||||
|
endif
|
||||||
|
|
||||||
#SUBDIRS = . $(pythondir) $(perldir) mailcheck xdcc
|
#SUBDIRS = . $(pythondir) $(perldir) mailcheck xdcc
|
||||||
SUBDIRS = . $(pythondir) $(perldir) $(tcldir) $(sasldir) $(doatdir) $(fishlimdir) $(checksumdir)
|
SUBDIRS = . $(pythondir) $(perldir) $(tcldir) $(sasldir) $(doatdir) $(fishlimdir) $(checksumdir) $(sysinfodir)
|
||||||
|
7
plugins/sysinfo/Makefile.am
Normal file
7
plugins/sysinfo/Makefile.am
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
libdir = $(hexchatlibdir)/plugins
|
||||||
|
|
||||||
|
lib_LTLIBRARIES = sysinfo.la
|
||||||
|
sysinfo_la_SOURCES = hwmon.c match.c parse.c pci.c xsys.c
|
||||||
|
sysinfo_la_LDFLAGS = -avoid-version -module
|
||||||
|
sysinfo_la_LIBADD = -lpci
|
||||||
|
AM_CPPFLAGS = $(COMMON_CFLAGS) -I$(srcdir)/..
|
@ -27,6 +27,8 @@
|
|||||||
#include <pci/pci.h>
|
#include <pci/pci.h>
|
||||||
#include "xsys.h"
|
#include "xsys.h"
|
||||||
|
|
||||||
|
#define PCIIDS "/usr/share/misc/pci.ids"
|
||||||
|
|
||||||
static struct pci_filter filter; /* Device filter */
|
static struct pci_filter filter; /* Device filter */
|
||||||
static struct pci_access *pacc;
|
static struct pci_access *pacc;
|
||||||
int bus, dev, func; /* Location of the card */
|
int bus, dev, func; /* Location of the card */
|
||||||
|
@ -33,6 +33,7 @@ static xchat_plugin *ph;
|
|||||||
|
|
||||||
static char name[] = "SysInfo";
|
static char name[] = "SysInfo";
|
||||||
static char desc[] = "Display info about your hardware and OS";
|
static char desc[] = "Display info about your hardware and OS";
|
||||||
|
static char version[] = "2.2";
|
||||||
static char format[bsize] = "%B%1%B[%2]";
|
static char format[bsize] = "%B%1%B[%2]";
|
||||||
unsigned int percentages = 1;
|
unsigned int percentages = 1;
|
||||||
|
|
||||||
@ -64,7 +65,7 @@ int xchat_plugin_init(xchat_plugin *plugin_handle, char **plugin_name,
|
|||||||
ph = plugin_handle;
|
ph = plugin_handle;
|
||||||
*plugin_name = name;
|
*plugin_name = name;
|
||||||
*plugin_desc = desc;
|
*plugin_desc = desc;
|
||||||
*plugin_version = VER_STRING;
|
*plugin_version = version;
|
||||||
|
|
||||||
xchat_hook_command(ph, "XSYS2FORMAT",XCHAT_PRI_NORM, format_cb, NULL, NULL);
|
xchat_hook_command(ph, "XSYS2FORMAT",XCHAT_PRI_NORM, format_cb, NULL, NULL);
|
||||||
xchat_hook_command(ph, "PERCENTAGES",XCHAT_PRI_NORM, percentages_cb, NULL, NULL);
|
xchat_hook_command(ph, "PERCENTAGES",XCHAT_PRI_NORM, percentages_cb, NULL, NULL);
|
||||||
@ -261,9 +262,9 @@ static int sysinfo_cb(char *word[], char *word_eol[], void *userdata)
|
|||||||
static int xsys_cb(char *word[], char *word_eol[], void *userdata)
|
static int xsys_cb(char *word[], char *word_eol[], void *userdata)
|
||||||
{
|
{
|
||||||
if((long)userdata)
|
if((long)userdata)
|
||||||
xchat_printf(ph, "You are using %s v%s (http://dev.gentoo.org/~chainsaw/xsys)", name, VER_STRING);
|
xchat_printf(ph, "You are using %s v%s (http://dev.gentoo.org/~chainsaw/xsys)", name, version);
|
||||||
else
|
else
|
||||||
xchat_commandf(ph, "me is using %s v%s (http://dev.gentoo.org/~chainsaw/xsys)", name, VER_STRING);
|
xchat_commandf(ph, "me is using %s v%s (http://dev.gentoo.org/~chainsaw/xsys)", name, version);
|
||||||
|
|
||||||
return XCHAT_EAT_ALL;
|
return XCHAT_EAT_ALL;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user