summary refs log tree commit diff stats
path: root/plugins/plugin-conf.in
blob: 1e2c338e971f2f1668ebd318e4508843bac381bf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
AC_INIT(@PLUGIN@-config.h.in)
AM_CONFIG_HEADER(@PLUGIN@-config.h)
AM_INIT_AUTOMAKE(xchat-@PLUGIN@, @PLUGIN_VERSION@)
AM_MAINTAINER_MODE
AM_DISABLE_STATIC
AM_PROG_LIBTOOL

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

AC_SUBST(PLUGIN_INCLUDES)

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

AC_OUTPUT(
Makefile
)
are; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA * * Claessens Xavier * xclaesse@gmail.com */ #ifndef __DBUS_PLUGIN_H__ #define __DBUS_PLUGIN_H__ void hexchat_remote (void); #endif /* __DBUS_PLUGIN_H__ */