r21565: Import ndrdump (doesn't compile yet, needs table support functions).
[kai/samba.git] / source3 / script / build_idl.sh
index 62941f4bc535de5597988c2943f15d7f2c76c646..77f37d8e75eb1aa6637e3bb263fe447537844874 100644 (file)
@@ -1,6 +1,6 @@
 #!/bin/sh
 
-PIDL_ARGS="--outputdir ${srcdir}/librpc/gen_ndr --header --ndr-parser --"
+PIDL_ARGS="--outputdir librpc/gen_ndr --header --ndr-parser --samba3-ndr-server --samba3-ndr-client --"
 PIDL_EXTRA_ARGS="$*"
 
 oldpwd=`pwd`
@@ -8,14 +8,22 @@ cd ${srcdir}
 
 [ -d librpc/gen_ndr ] || mkdir -p librpc/gen_ndr || exit 1
 
-PIDL="$PERL pidl/pidl ${PIDL_ARGS} ${PIDL_EXTRA_ARGS}"
+if [ -z "$PIDL" ] ; then
+    PIDL=pidl
+fi
+
+PIDL="$PIDL ${PIDL_ARGS} ${PIDL_EXTRA_ARGS}"
+
+##
+## Find newer files rather than rebuild all of them
+##
 
 list=""
 for f in ${IDL_FILES}; do
        basename=`basename $f .idl`
        ndr="librpc/gen_ndr/ndr_$basename.c"
 
-       if [ -f $ndr ]; then
+       if [ -f $ndr ] && false; then
                if [ "x`find librpc/idl/$f -newer $ndr -print`" = "xlibrpc/idl/$f" ]; then
                        list="$list librpc/idl/$f"
                fi
@@ -24,17 +32,30 @@ for f in ${IDL_FILES}; do
        fi
 done
 
+##
+## generate the ndr stubs
+##
+
 if [ "x$list" != x ]; then
+       # echo "${PIDL} ${list}"
        $PIDL $list || exit 1
 fi
 
+##
+## Do miscellaneous cleanup
+##
+
 for f in librpc/gen_ndr/ndr_*.c; do
-       cat $f | sed 's/^static //g' | sed 's/^_PUBLIC_ //g' > $f.new
+       cat $f | sed -e 's/^static //g' > $f.new
        /bin/mv -f $f.new $f
 done
 
 touch librpc/gen_ndr/ndr_dcerpc.h
 
+echo Generating librpc/gen_ndr/tables.c
+./librpc/tables.pl --output=librpc/gen_ndr/tables.c librpc/gen_ndr/*.h > librpc/gen_ndr/tables.c
+
 cd ${oldpwd}
 
 exit 0
+