blob: 3bcef1aa8874cee17da2f2fa943bad3b26e2f928 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
AM_CPPFLAGS = \
-I$(top_srcdir)/src/libstrongswan
AM_CFLAGS = \
-rdynamic
if MONOLITHIC
noinst_LTLIBRARIES = libstrongswan-ldap.la
else
plugin_LTLIBRARIES = libstrongswan-ldap.la
endif
libstrongswan_ldap_la_SOURCES = \
ldap_plugin.h ldap_plugin.c ldap_fetcher.h ldap_fetcher.c
libstrongswan_ldap_la_LDFLAGS = -module -avoid-version
libstrongswan_ldap_la_LIBADD = -lldap -llber
|