mirror of
https://github.com/MariaDB/server.git
synced 2026-05-15 11:27:39 +02:00
2. dialog plugin now always returns mysql->password if non-empty and the first question is of password type 3. split get_tty_password into get_tty_password_buff and strdup. 4. dialog plugin now uses get_tty_password by default 5. dialog.test 6. moved small tests of individual plugins into a dedicated suite
15 lines
359 B
Makefile
15 lines
359 B
Makefile
pkgplugindir=$(pkglibdir)/plugin
|
|
|
|
AM_LDFLAGS=-module -rpath $(pkgplugindir)
|
|
AM_CPPFLAGS=-DMYSQL_DYNAMIC_PLUGIN -I$(top_srcdir)/include
|
|
|
|
pkgplugin_LTLIBRARIES= dialog.la
|
|
dialog_la_SOURCES= dialog.c $(top_srcdir)/libmysql/get_password.c
|
|
|
|
if HAVE_PEERCRED
|
|
pkgplugin_LTLIBRARIES+= auth_socket.la
|
|
auth_socket_la_SOURCES= auth_socket.c
|
|
endif
|
|
|
|
EXTRA_DIST= plug.in
|
|
|