summary refs log tree commit diff stats
path: root/src/common/plugin.c
AgeCommit message (Expand)Author
2012-10-24A lot more rebrandingBerke Viktor
2012-10-21Rename WinSys on the code levelBerke Viktor
2012-07-27Fix auto-loading the Perl interface on WindowsBerke Viktor
2012-07-26Auto-load user plugins and scripts from <config>/addonsBerke Viktor
2012-07-26Autoload local plugins from <config>/pluginsBerke Viktor
2012-07-21Supposed fix for g_io_channel_read() deprecationBerke Viktor
2012-07-13Another bunch of rebranding stuffBerke Viktor
2012-07-12Even more rebrandingBerke Viktor
2012-06-16Fix string handling for Turkish localeBerke Viktor
2012-01-15remove unused bufferBerke Viktor
2012-01-15avoid garbage in xchat_pluginpref_listBerke Viktor
2012-01-15implement xchat_pluginpref_listBerke Viktor
2012-01-15refactor plugin config API and add skeleton for xchat_pluginpref_listBerke Viktor
2012-01-14implement xchat_del_pluginprefBerke Viktor
2012-01-14skeleton for xchat_del_pluginprefBerke Viktor
2011-12-11some more multiplatform supportBerke Viktor
2011-12-01return to original code, this is an unnecessary modificatinoBerke Viktor
2011-12-01plugin api conformanceBerke Viktor
2011-11-30refactoringBerke Viktor
2011-11-30make error check possible for xchat_get_plugin_pref_intBerke Viktor
2011-11-30cosmeticsBerke Viktor
2011-11-30plugin config - separate string and int functionsBerke Viktor
2011-11-30cosmeticsBerke Viktor
2011-11-30fix nasty ifdef bugBerke Viktor
2011-11-30plugin config unix compatibility part 1Berke Viktor
2011-11-30fix some memory leaksBerke Viktor
2011-11-30plugin config save is done via raw file access, now works with multiple varsBerke Viktor
2011-11-29initial plugin config framework, can't save multiple entriesBerke Viktor
2011-02-28add wdk changes to named branchberkeviktor@aol.com
2011-02-24add xchat r1489berkeviktor@aol.com
riable */ .highlight .ow { color: #008800 } /* Operator.Word */ .highlight .w { color: #bbbbbb } /* Text.Whitespace */ .highlight .mb { color: #0000DD; font-weight: bold } /* Literal.Number.Bin */ .highlight .mf { color: #0000DD; font-weight: bold } /* Literal.Number.Float */ .highlight .mh { color: #0000DD; font-weight: bold } /* Literal.Number.Hex */ .highlight .mi { color: #0000DD; font-weight: bold } /* Literal.Number.Integer */ .highlight .mo { color: #0000DD; font-weight: bold } /* Literal.Number.Oct */ .highlight .sa { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Affix */ .highlight .sb { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Backtick */ .highlight .sc { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Char */ .highlight .dl { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Delimiter */ .highlight .sd { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Doc */ .highlight .s2 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Double */ .highlight .se { color: #0044dd; background-color: #fff0f0 } /* Literal.String.Escape */ .highlight .sh { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Heredoc */ .highlight .si { color: #3333bb; background-color: #fff0f0 } /* Literal.String.Interpol */ .highlight .sx { color: #22bb22; background-color: #f0fff0 } /* Literal.String.Other */ .highlight .sr { color: #008800; background-color: #fff0ff } /* Literal.String.Regex */ .highlight .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */ .highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
AC_INIT(@PLUGIN@-config.h.in)
AM_CONFIG_HEADER(@PLUGIN@-config.h)
AM_INIT_AUTOMAKE(hexchat-@PLUGIN@, @PLUGIN_VERSION@)
AM_MAINTAINER_MODE
AM_DISABLE_STATIC
AM_PROG_LIBTOOL

AC_ARG_WITH(plugin-includes,
[  --with-plugin-includes  directory containing hexchat-plugin.h],
	PLUGIN_INCLUDES=$enableval)

AC_SUBST(PLUGIN_INCLUDES)

hexchatlibdir=${libdir}/hexchat
AC_SUBST(hexchatlibdir)

AC_OUTPUT(
Makefile
)