changes to make plugin_example useful as a template:

force pkglibdir to be in "mysql" package, template files:
AUTHORS, ChangeLog, NEWS, README, configure.in
This commit is contained in:
serg@serg.mylan 2006-04-06 16:07:53 +02:00
commit 6f492397f8
6 changed files with 17 additions and 0 deletions

1
plugin/fulltext/AUTHORS Normal file
View file

@ -0,0 +1 @@
AUTHORS file example for a plugin

View file

@ -0,0 +1 @@
ChangeLog file example for a plugin

View file

@ -1,4 +1,9 @@
#Makefile.am example for a plugin
pkglibdir=$(libdir)/mysql
INCLUDES= -I$(top_builddir)/include -I$(top_srcdir)/include
noinst_LTLIBRARIES= mypluglib.la
#pkglib_LTLIBRARIES= mypluglib.la
mypluglib_la_SOURCES= plugin_example.c
mypluglib_la_LDFLAGS= -module -rpath $(pkglibdir)

1
plugin/fulltext/NEWS Normal file
View file

@ -0,0 +1 @@
NEWS file example for a plugin

1
plugin/fulltext/README Normal file
View file

@ -0,0 +1 @@
README file example for a plugin

View file

@ -0,0 +1,8 @@
# configure.in example for a plugin
AC_INIT(plugin_example, 0.1)
AM_INIT_AUTOMAKE
AC_PROG_LIBTOOL
AC_CONFIG_FILES([Makefile])
AC_OUTPUT