diff options
author | Martin Willi <martin@revosec.ch> | 2014-10-06 18:31:14 +0200 |
---|---|---|
committer | Martin Willi <martin@revosec.ch> | 2014-10-06 18:31:14 +0200 |
commit | 7d3c58a511ae6825353020571b8cdaa45238fa6c (patch) | |
tree | 1657a6d3b8290c8e058f142655a395ae40ad5beb /src/libcharon/plugins/ext_auth/Makefile.am | |
parent | 100c1a4bf1f59414af8a1bfb6acb14b1a98e3349 (diff) | |
parent | 9180c921e85a4a55e0ba487d6a0751b127de3471 (diff) | |
download | strongswan-5.2.1dr1.tar.bz2 strongswan-5.2.1dr1.tar.xz |
Merge branch 'ext-auth'5.2.1dr1
Integrates the ext-auth plugin by Vyronas Tsingaras. The new child process
abstraction simplifies implementation in both the new ext-auth and the existing
updown plugin, and makes them available on the Windows platform.
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 |