util: Build samba-util without unresolved symbols.
[samba.git] / source3 / autogen.sh
index 61316a8f70cd8c22bda7d6a3badf14200ff1bbe3..d9f603090029b6e71cb6d297c428ed7230084112 100755 (executable)
@@ -4,11 +4,11 @@
 
 while true; do
     case $1 in
-       (--version-file)
+       --version-file)
            VERSION_FILE=$2
            shift 2
            ;;
-       (*)
+       *)
            break
            ;;
     esac
@@ -65,7 +65,7 @@ echo "$0: running script/mkversion.sh"
 rm -rf autom4te*.cache
 rm -f configure include/config.h*
 
-IPATHS="-Im4 -I../lib/replace -I../source4"
+IPATHS="-Im4 -I../m4 -I../lib/replace"
 
 echo "$0: running $AUTOHEADER $IPATHS"
 $AUTOHEADER $IPATHS || exit 1
@@ -75,6 +75,17 @@ $AUTOCONF $IPATHS || exit 1
 
 rm -rf autom4te*.cache
 
-echo "Now run ./configure and then make."
+if gcc -E tests/preproc-dummy.c -o /dev/null ;
+then
+    PIDL_OUTPUTDIR="librpc/gen_ndr" CPP="gcc -E" PIDL=../pidl/pidl \
+       srcdir=. ../librpc/build_idl.sh ../librpc/idl/*.idl
+    PIDL_OUTPUTDIR="librpc/gen_ndr" CPP="gcc -E" PIDL=../pidl/pidl \
+       srcdir=. script/build_idl.sh librpc/idl/*.idl
+else
+   echo "Warning: Could not compile idl files in autogen, "
+   echo "some autconf tests might not work properly"
+fi
+
+echo "Now run ./configure (or ./configure.developer) and then make."
 exit 0