mirror of
https://github.com/MariaDB/server.git
synced 2025-08-31 22:22:30 +03:00
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.
10 lines
156 B
Plaintext
10 lines
156 B
Plaintext
# 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
|
|
|