mirror of
https://github.com/MariaDB/server.git
synced 2025-01-18 21:12:26 +01:00
291fd96983
Makefile.am: add new API files to the check_abi rule, remove duplicates client/CMakeLists.txt: now a client can use dlopen too client/Makefile.am: be csh-friendly include/my_global.h: add dummy plugs for dlopen and co. for the code that needs them to work in static builds mysys/Makefile.am: be csh-friendly plugin/auth/dialog.c: typo fixed
15 lines
321 B
Makefile
15 lines
321 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
|
|
|
|
if HAVE_PEERCRED
|
|
pkgplugin_LTLIBRARIES+= auth_socket.la
|
|
auth_socket_la_SOURCES= auth_socket.c
|
|
endif
|
|
|
|
EXTRA_DIST= plug.in
|
|
|