diff options
| author | Martin Willi <martin@revosec.ch> | 2014-10-06 11:52:49 +0200 |
|---|---|---|
| committer | Martin Willi <martin@revosec.ch> | 2014-10-06 18:30:46 +0200 |
| commit | b2c1973ffbfb37b76bf4069779eb6319a40d1ddd (patch) | |
| tree | 25fd77dbcb2a778d5f31364805658e7f9b4686b2 /src/libcharon/plugins/ext_auth/Makefile.am | |
| parent | 6890bdc7a04d7e0f7af8855a129e87ae9f0b43ec (diff) | |
| download | strongswan-b2c1973ffbfb37b76bf4069779eb6319a40d1ddd.tar.bz2 strongswan-b2c1973ffbfb37b76bf4069779eb6319a40d1ddd.tar.xz | |
ext-auth: Add an ext-auth plugin invoking an external authorization script
Original patch courtesy of Vyronas Tsingaras.
Diffstat (limited to 'src/libcharon/plugins/ext_auth/Makefile.am')
| -rw-r--r-- | src/libcharon/plugins/ext_auth/Makefile.am | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/src/libcharon/plugins/ext_auth/Makefile.am b/src/libcharon/plugins/ext_auth/Makefile.am new file mode 100644 index 000000000..d51ea8881 --- /dev/null +++ b/src/libcharon/plugins/ext_auth/Makefile.am @@ -0,0 +1,18 @@ +AM_CPPFLAGS = \ + -I$(top_srcdir)/src/libstrongswan \ + -I$(top_srcdir)/src/libhydra \ + -I$(top_srcdir)/src/libcharon + +AM_CFLAGS = \ + $(PLUGIN_CFLAGS) + +if MONOLITHIC +noinst_LTLIBRARIES = libstrongswan-ext-auth.la +else +plugin_LTLIBRARIES = libstrongswan-ext-auth.la +endif + +libstrongswan_ext_auth_la_SOURCES = ext_auth_plugin.h ext_auth_plugin.c \ + ext_auth_listener.h ext_auth_listener.c + +libstrongswan_ext_auth_la_LDFLAGS = -module -avoid-version |
