summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRich Megginson <rmeggins@redhat.com>2005-02-15 18:58:34 +0000
committerRich Megginson <rmeggins@redhat.com>2005-02-15 18:58:34 +0000
commit73a1630de33bcaf85f5f314ac24cfb237c91a2e3 (patch)
treeb80973fde943b7cb81fccc07c2c07141bd284143
parent17c28fc2a0e36d75856c7eb5c0bcca19523de167 (diff)
downloadds-73a1630de33bcaf85f5f314ac24cfb237c91a2e3.tar.gz
ds-73a1630de33bcaf85f5f314ac24cfb237c91a2e3.tar.xz
ds-73a1630de33bcaf85f5f314ac24cfb237c91a2e3.zip
Do not build pam auth plugin on Windows
-rw-r--r--ldap/servers/plugins/Makefile9
1 files changed, 9 insertions, 0 deletions
diff --git a/ldap/servers/plugins/Makefile b/ldap/servers/plugins/Makefile
index 2057ad27..638dd87a 100644
--- a/ldap/servers/plugins/Makefile
+++ b/ldap/servers/plugins/Makefile
@@ -19,7 +19,11 @@ NSPR20=true # probably should be defined somewhere else (not sure where)
include $(BUILD_ROOT)/nsconfig.mk
include $(LDAP_SRC)/nsldap.mk
+ifneq ($(ARCH), WINNT)
all: _referint _collation _syntaxes _passthru _utils _uiduniq _roles _acl _replication _cos _pwdstorage _rever _chainingdb _distrib _retrocl _statechange _http _views _pam_passthru
+else
+all: _referint _collation _syntaxes _passthru _utils _uiduniq _roles _acl _replication _cos _pwdstorage _rever _chainingdb _distrib _retrocl _statechange _http _views
+endif
_utils:
cd shared; $(MAKE) $(MFLAGS) all
@@ -41,8 +45,10 @@ _syntaxes:
_passthru:
cd passthru; $(MAKE) $(MFLAGS) all
+ifneq ($(ARCH), WINNT)
_pam_passthru:
cd pam_passthru; $(MAKE) $(MFLAGS) all
+endif
_uiduniq:
cd uiduniq; $(MAKE) $(MFLAGS) all
@@ -87,6 +93,9 @@ clean:
cd collation; $(MAKE) $(MFLAGS) clean
cd syntaxes; $(MAKE) $(MFLAGS) clean
cd passthru; $(MAKE) $(MFLAGS) clean
+ifneq ($(ARCH), WINNT)
+ cd pam_passthru; $(MAKE) $(MFLAGS) clean
+endif
cd shared; $(MAKE) $(MFLAGS) clean
cd uiduniq; $(MAKE) $(MFLAGS) clean
cd replication; $(MAKE) $(MFLAGS) clean