summaryrefslogtreecommitdiff
path: root/source3/script/mkproto.sh
diff options
context:
space:
mode:
authorGerald Carter <jerry@samba.org>2000-07-03 04:28:29 +0000
committerGerald Carter <jerry@samba.org>2000-07-03 04:28:29 +0000
commit33f6a1d9bb7ffed681085261a78d5ef4297f73de (patch)
tree378dd3cb3e7d5993def55602686ab994f78a2f00 /source3/script/mkproto.sh
parent8d429db41075618372b6a18e7d4eb064f7839467 (diff)
downloadsamba-33f6a1d9bb7ffed681085261a78d5ef4297f73de.tar.gz
samba-33f6a1d9bb7ffed681085261a78d5ef4297f73de.tar.bz2
samba-33f6a1d9bb7ffed681085261a78d5ef4297f73de.zip
first pass at merging rpcclient from TNG to HEAD. You can get a
semi-connection and a rpcclient prompt, but no functionality there yet. Will be a few more days on that. --jerry (This used to be commit 269051aa0c52728278a1d290148564f11cf7f189)
Diffstat (limited to 'source3/script/mkproto.sh')
-rwxr-xr-xsource3/script/mkproto.sh41
1 files changed, 41 insertions, 0 deletions
diff --git a/source3/script/mkproto.sh b/source3/script/mkproto.sh
new file mode 100755
index 0000000000..4dbe4c204e
--- /dev/null
+++ b/source3/script/mkproto.sh
@@ -0,0 +1,41 @@
+#! /bin/sh
+
+LANG=C; export LANG
+LC_ALL=C; export LC_ALL
+LC_COLLATE=C; export LC_COLLATE
+
+if [ $# -lt 3 ]
+then
+ echo "Usage: $0 awk [-h headerdefine] outputheader proto_obj"
+ exit 1
+fi
+
+awk="$1"
+shift
+
+if [ x"$1" = x-h ]
+then
+ headeropt="-v headername=$2"
+ shift; shift;
+else
+ headeropt=""
+fi
+
+header="$1"
+shift
+headertmp="$header.$$.tmp~"
+
+proto_src="`echo $@ | tr ' ' '\n' | sed -e 's/\.o/\.c/g' | sort | uniq | egrep -v 'ubiqx/|wrapped'`"
+
+echo creating $header
+
+${awk} $headeropt \
+ -f script/mkproto.awk $proto_src > $headertmp
+
+if cmp -s $header $headertmp 2>/dev/null
+then
+ echo "$header unchanged"
+ rm $headertmp
+else
+ mv $headertmp $header
+fi