mirror of
https://github.com/MariaDB/server.git
synced 2025-01-17 04:22:27 +01:00
66806e58e8
no sense in building static library version of a plugin plugin/fulltext/plugin_example.c comments clarified. everything local to a plugin was declared static plugin/fulltext/configure.in: no sense in building static library version of a plugin plugin/fulltext/plugin_example.c: comments clarified. everything local to a plugin was declared static.
9 lines
156 B
Text
9 lines
156 B
Text
# configure.in example for a plugin
|
|
|
|
AC_INIT(plugin_example, 0.1)
|
|
AM_INIT_AUTOMAKE
|
|
AC_DISABLE_STATIC
|
|
AC_PROG_LIBTOOL
|
|
AC_CONFIG_FILES([Makefile])
|
|
AC_OUTPUT
|
|
|