File: plugin-conf.in

package info (click to toggle)
xchat 2.8.8-7.3
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 12,476 kB
  • ctags: 9,461
  • sloc: ansic: 68,901; sh: 11,218; perl: 2,751; makefile: 772; asm: 398; yacc: 291; xml: 138; python: 22
file content (20 lines) | stat: -rw-r--r-- 405 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20

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)

xchatlibdir=${libdir}/xchat
AC_SUBST(xchatlibdir)

AC_OUTPUT(
Makefile
)