mirror of
https://github.com/MariaDB/server.git
synced 2026-04-20 15:25:33 +02:00
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:
parent
cc3c065aa9
commit
6f492397f8
6 changed files with 17 additions and 0 deletions
1
plugin/fulltext/AUTHORS
Normal file
1
plugin/fulltext/AUTHORS
Normal file
|
|
@ -0,0 +1 @@
|
|||
AUTHORS file example for a plugin
|
||||
1
plugin/fulltext/ChangeLog
Normal file
1
plugin/fulltext/ChangeLog
Normal file
|
|
@ -0,0 +1 @@
|
|||
ChangeLog file example for a plugin
|
||||
|
|
@ -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
1
plugin/fulltext/NEWS
Normal file
|
|
@ -0,0 +1 @@
|
|||
NEWS file example for a plugin
|
||||
1
plugin/fulltext/README
Normal file
1
plugin/fulltext/README
Normal file
|
|
@ -0,0 +1 @@
|
|||
README file example for a plugin
|
||||
8
plugin/fulltext/configure.in
Normal file
8
plugin/fulltext/configure.in
Normal 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
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue