Commit 003aba65 authored by unknown's avatar unknown
Browse files

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
parent abc24043
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
AUTHORS file example for a plugin
+1 −0
Original line number Diff line number Diff line
ChangeLog file example for a plugin
+5 −0
Original line number Diff line number Diff line
#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)

plugin/fulltext/NEWS

0 → 100644
+1 −0
Original line number Diff line number Diff line
NEWS file example for a plugin

plugin/fulltext/README

0 → 100644
+1 −0
Original line number Diff line number Diff line
README file example for a plugin
Loading