diff options
author | unknown <serg@serg.mylan> | 2006-04-06 16:07:53 +0200 |
---|---|---|
committer | unknown <serg@serg.mylan> | 2006-04-06 16:07:53 +0200 |
commit | 567c0cee69c39ad50e0960ccc6deee0f55ca58f8 (patch) | |
tree | 3383171aca9fcba6ca2036fa343a49a3f0455d45 /plugin | |
parent | 80aebe22ab6d22d686d1ec1491accdc381bdfc4f (diff) | |
download | mariadb-git-567c0cee69c39ad50e0960ccc6deee0f55ca58f8.tar.gz |
changes to make plugin_example useful as a template:
force pkglibdir to be in "mysql" package, template files:
AUTHORS, ChangeLog, NEWS, README, configure.in
plugin/fulltext/Makefile.am:
changes to make plugin_example useful as a template:
force pkglibdir to be in "mysql" package
Diffstat (limited to 'plugin')
-rw-r--r-- | plugin/fulltext/AUTHORS | 1 | ||||
-rw-r--r-- | plugin/fulltext/ChangeLog | 1 | ||||
-rw-r--r-- | plugin/fulltext/Makefile.am | 5 | ||||
-rw-r--r-- | plugin/fulltext/NEWS | 1 | ||||
-rw-r--r-- | plugin/fulltext/README | 1 | ||||
-rw-r--r-- | plugin/fulltext/configure.in | 8 |
6 files changed, 17 insertions, 0 deletions
diff --git a/plugin/fulltext/AUTHORS b/plugin/fulltext/AUTHORS new file mode 100644 index 00000000000..9c4567884af --- /dev/null +++ b/plugin/fulltext/AUTHORS @@ -0,0 +1 @@ +AUTHORS file example for a plugin diff --git a/plugin/fulltext/ChangeLog b/plugin/fulltext/ChangeLog new file mode 100644 index 00000000000..1faaaad618a --- /dev/null +++ b/plugin/fulltext/ChangeLog @@ -0,0 +1 @@ +ChangeLog file example for a plugin diff --git a/plugin/fulltext/Makefile.am b/plugin/fulltext/Makefile.am index e5a70a23beb..4df5a1dc78a 100644 --- a/plugin/fulltext/Makefile.am +++ b/plugin/fulltext/Makefile.am @@ -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) + diff --git a/plugin/fulltext/NEWS b/plugin/fulltext/NEWS new file mode 100644 index 00000000000..e5b6cbd50a2 --- /dev/null +++ b/plugin/fulltext/NEWS @@ -0,0 +1 @@ +NEWS file example for a plugin diff --git a/plugin/fulltext/README b/plugin/fulltext/README new file mode 100644 index 00000000000..e4d01f2afb7 --- /dev/null +++ b/plugin/fulltext/README @@ -0,0 +1 @@ +README file example for a plugin diff --git a/plugin/fulltext/configure.in b/plugin/fulltext/configure.in new file mode 100644 index 00000000000..dc0a2f4630d --- /dev/null +++ b/plugin/fulltext/configure.in @@ -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 + |