[PATCH] Tell newbie devs about ./configure.developer

Rusty Russell rusty at rustcorp.com.au
Thu Aug 27 23:29:38 MDT 2009


What I did:
	./autogen.sh
	./configure
	make
	make test
	# Complains about needing --enable-nss-wrapper

OK, well, maybe I was supposed to know that?  Try again:
	./configure --enable-nss-wrapper
	make
	make test
	# Complains about needing --enable-socket-wrapper

Look around and see if there are any samba devs to hit.  Take a deep
breath.  Wonder what else I'm missing?

	./configure --enable-nss-wrapper --enable-socket-wrapper
	make
	make test
	# Success!

Enter IRC to whine, and abartlet tells me I'm still doing it wrong :)

Signed-off-by: Rusty Russell <rusty at rustcorp.com.au>

diff --git a/source3/autogen.sh b/source3/autogen.sh
index 9ade370..e99c90c 100755
--- a/source3/autogen.sh
+++ b/source3/autogen.sh
@@ -75,6 +75,6 @@ $AUTOCONF $IPATHS || exit 1
 
 rm -rf autom4te*.cache
 
-echo "Now run ./configure and then make."
+echo "Now run ./configure (or ./configure.developer) and then make."
 exit 0
 
diff --git a/source4/autogen.sh b/source4/autogen.sh
index 2d995ca..1936af4 100755
--- a/source4/autogen.sh
+++ b/source4/autogen.sh
@@ -80,5 +80,5 @@ $AUTOCONF $IPATHS || exit 1
 
 rm -rf autom4te*.cache
 
-echo "Now run ./configure and then make."
+echo "Now run ./configure (or ./configure.developer) and then make."
 exit 0



More information about the samba-technical mailing list