mirror of
https://github.com/MariaDB/server.git
synced 2025-01-17 04:22:27 +01:00
92e31e96a2
and allow override for binary distributions. Extend mysql_config to print compiled-in plugin location for third-party plugins to use. Resolves bug#31736. libmysqld/Makefile.am: Use pkgplugindir. plugin/daemon_example/Makefile.am: Use pkgplugindir. plugin/fulltext/Makefile.am: Use pkgplugindir. scripts/Makefile.am: Add pkgplugindir. scripts/make_binary_distribution.sh: Add pkgplugindir. scripts/mysql_config.sh: Add pkgplugindir. sql/Makefile.am: Use pkgplugindir. sql/mysqld.cc: Use PLUGINDIR, derived from pkgplugindir, instead of LIBDIR for plugins. sql/unireg.h: Use PLUGINDIR instead of LIBDIR, and define to be the default setting of pkgplugindir. storage/innobase/Makefile.am: Use pkgplugindir. storage/archive/Makefile.am: Use pkgplugindir. storage/blackhole/Makefile.am: Use pkgplugindir. storage/example/Makefile.am: Use pkgplugindir. storage/federated/Makefile.am: Use pkgplugindir.
27 lines
1.1 KiB
Makefile
27 lines
1.1 KiB
Makefile
# Copyright (C) 2005-2006 MySQL AB
|
|
#
|
|
# This program is free software; you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation; version 2 of the License.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program; if not, write to the Free Software
|
|
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
#Makefile.am example for a plugin
|
|
|
|
pkgplugindir=$(libdir)/@PACKAGE@/plugin
|
|
INCLUDES= -I$(top_builddir)/include -I$(top_srcdir)/include
|
|
#noinst_LTLIBRARIES= mypluglib.la
|
|
pkgplugin_LTLIBRARIES= mypluglib.la
|
|
mypluglib_la_SOURCES= plugin_example.c
|
|
mypluglib_la_LDFLAGS= -module -rpath $(pkgplugindir)
|
|
mypluglib_la_CFLAGS= -DMYSQL_DYNAMIC_PLUGIN
|
|
|
|
# Don't update the files from bitkeeper
|
|
%::SCCS/s.%
|