svn commit: lorikeet r526 - in trunk/mod_ntlm_winbind: .

jelmer at samba.org jelmer at samba.org
Sat Apr 8 18:22:40 GMT 2006


Author: jelmer
Date: 2006-04-08 18:22:39 +0000 (Sat, 08 Apr 2006)
New Revision: 526

WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=lorikeet&rev=526

Log:
Change name to mod_auth_ntlm_winbind (as is the convention)
Add info file
Ignore some files

Added:
   trunk/mod_ntlm_winbind/500mod_auth_ntlm_winbind.info
Modified:
   trunk/mod_ntlm_winbind/
   trunk/mod_ntlm_winbind/Makefile.in


Changeset:

Property changes on: trunk/mod_ntlm_winbind
___________________________________________________________________
Name: svn:ignore
   + config.guess
config.sub
build-stamp
config.log
Makefile
.libs
config.cache
config.status
*.slo
configure
*.loT


Added: trunk/mod_ntlm_winbind/500mod_auth_ntlm_winbind.info
===================================================================
--- trunk/mod_ntlm_winbind/500mod_auth_ntlm_winbind.info	2006-04-08 18:21:05 UTC (rev 525)
+++ trunk/mod_ntlm_winbind/500mod_auth_ntlm_winbind.info	2006-04-08 18:22:39 UTC (rev 526)
@@ -0,0 +1,11 @@
+LoadModule: ntlm_winbind_module /usr/lib/apache/1.3/mod_auth_ntlm_winbind.so
+Directives:
+ NTLMAuth
+ NegotiateAuth
+ NTLMBasicAuthoritative
+ NTLMAuthHelper
+ NegotiateAuthHelper
+ PlaintextAuthHelper
+ NTLMBasicAuth
+ NTLMBasicRealm
+Description: Support for NTLM authentication using Winbind

Modified: trunk/mod_ntlm_winbind/Makefile.in
===================================================================
--- trunk/mod_ntlm_winbind/Makefile.in	2006-04-08 18:21:05 UTC (rev 525)
+++ trunk/mod_ntlm_winbind/Makefile.in	2006-04-08 18:22:39 UTC (rev 526)
@@ -5,19 +5,21 @@
 # Programs
 
 APXS = @APXS@
+APXS_FLAGS = @APXS_FLAGS@
+SODIR = @SODIR@
 
 # Build the dso
 MOD_NTLM_WINBIND_SRC = mod_ntlm_winbind.c
 
- at SODIR@mod_ntlm_winbind.so: $(MOD_NTLM_WINBIND_SRC)
-	$(APXS) @APXS_FLAGS@ -Wc,-Wall -c $(MOD_NTLM_WINBIND_SRC)
+$(SODIR)mod_auth_ntlm_winbind.so: $(MOD_NTLM_WINBIND_SRC)
+	$(APXS) $(APXS_FLAGS) -o mod_auth_ntlm_winbind.so -Wc,-Wall -c $(MOD_NTLM_WINBIND_SRC)
 
-install: @SODIR at mod_ntlm_winbind.so
-	$(APXS) @APXS_FLAGS@ -n ntlm_winbind -i @SODIR at mod_ntlm_winbind.so
+install: $(SODIR)mod_auth_ntlm_winbind.so
+	$(APXS) $(APXS_FLAGS) -n auth_ntlm_winbind -i $(SODIR)mod_auth_ntlm_winbind.so DESTDIR=$(DESTDIR)
 
 # Clean targets
 clean:
-	rm -f *~ @SODIR at mod_ntlm_winbind.so $(MOD_NTLM_WINBIND_SRC:.c=.o)
+	rm -f *~ $(SODIR)mod_auth_ntlm_winbind.so $(MOD_NTLM_WINBIND_SRC:.c=.o)
 
 realclean: clean
 	rm -f config.log



More information about the samba-cvs mailing list