There's a new bug in rc1, in configure.in and consequently configure too, test with == rather than = Fix: --- ./source3/configure.in.orig 2011-05-17 03:04:37.000000000 -0500 +++ ./source3/configure.in 2011-05-18 06:56:53.000000000 -0500 @@ -2101,7 +2109,7 @@ if test "x$enable_external_libtalloc" = xno then m4_include(../lib/talloc/libtalloc.m4) - if test x"$USESHARED" == x"no" ; then + if test x"$USESHARED" = x"no" ; then LINK_LIBTALLOC=STATIC fi LIBTALLOCVERSION=`grep ^VERSION ${tallocdir}/wscript | sed -e "s/'//g" -e 's/.* //'` @@ -2142,7 +2150,7 @@ if test "x$enable_external_libtdb" = xno then m4_include(../lib/tdb/libtdb.m4) - if test x"$USESHARED" == x"no" ; then + if test x"$USESHARED" = x"no" ; then LINK_LIBTDB=STATIC fi LIBTDBVERSION=`grep ^VERSION ${tdbdir}/wscript | sed -e "s/'//g" -e 's/.* //'` diff -u ./source3/configure.orig ./source3/configure --- ./source3/configure.orig 2011-05-17 03:23:57.000000000 -0500 +++ ./source3/configure 2011-05-18 06:57:02.000000000 -0500 @@ -20139,7 +20165,7 @@ fi - if test x"$USESHARED" == x"no" ; then + if test x"$USESHARED" = x"no" ; then LINK_LIBTALLOC=STATIC fi LIBTALLOCVERSION=`grep ^VERSION ${tallocdir}/wscript | sed -e "s/'//g" -e 's/.* //'` @@ -20476,7 +20502,7 @@ fi - if test x"$USESHARED" == x"no" ; then + if test x"$USESHARED" = x"no" ; then LINK_LIBTDB=STATIC fi LIBTDBVERSION=`grep ^VERSION ${tdbdir}/wscript | sed -e "s/'//g" -e 's/.* //'`
The line numbers mentioned above are incorrect, as I had other modifications to configre.in and configure...
Created attachment 7896 [details] same patch in git format this is obviously correct. Karo, we should pick that to 3.6.
Pushed to v3-6-test. Closing out bug report. Thanks!