mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2024-12-25 16:31:08 -06:00
b7329e31f5
Add explicit NSPR_CFLAGS and NSS_CFLAGS where NSPR_LIBS and NSS_LIBS is used. Use DIRSRV_CFLAGS rather than hardcode -I/usr/include/dirsrv. Append NSPR_CFLAGS to DIRSRV_CFLAGS in ./configure as slapi-plugin.h includes nspr.h. Reviewed-By: Pavel Vomacka <pvomacka@redhat.com>
41 lines
728 B
Makefile
41 lines
728 B
Makefile
NULL =
|
|
|
|
PLUGIN_COMMON_DIR = $(srcdir)/../common
|
|
|
|
AM_CPPFLAGS = \
|
|
-I$(srcdir) \
|
|
-I$(PLUGIN_COMMON_DIR) \
|
|
-DPREFIX=\""$(prefix)"\" \
|
|
-DBINDIR=\""$(bindir)"\" \
|
|
-DLIBDIR=\""$(libdir)"\" \
|
|
-DLIBEXECDIR=\""$(libexecdir)"\" \
|
|
-DDATADIR=\""$(datadir)"\" \
|
|
$(DIRSRV_CFLAGS) \
|
|
$(LDAP_CFLAGS) \
|
|
$(WARN_CFLAGS) \
|
|
$(NULL)
|
|
|
|
plugindir = $(libdir)/dirsrv/plugins
|
|
plugin_LTLIBRARIES = \
|
|
libipa_modrdn.la \
|
|
$(NULL)
|
|
|
|
libipa_modrdn_la_SOURCES = \
|
|
ipa_modrdn.c \
|
|
$(NULL)
|
|
|
|
libipa_modrdn_la_LDFLAGS = -avoid-version
|
|
|
|
libipa_modrdn_la_LIBADD = \
|
|
$(LDAP_LIBS) \
|
|
$(NULL)
|
|
|
|
appdir = $(IPA_DATA_DIR)
|
|
app_DATA = \
|
|
modrdn-conf.ldif \
|
|
$(NULL)
|
|
|
|
EXTRA_DIST = \
|
|
$(app_DATA) \
|
|
$(NULL)
|