search for: cdeb2ea3

Displaying 1 result from an estimated 1 matches for "cdeb2ea3".

2019 Oct 31
5
[PATCH] Replace mkproto.pl with mkproto.awk
...uot;;" + next +} + +/\(/ { + inheader = 1 + protos = protos "\n" $0 +} + +END { + if (old_protos != protos) print protos > "proto.h" + print "" > "proto.h-tstamp" +} diff --git a/mkproto.pl b/mkproto.pl deleted file mode 100644 index cdeb2ea3..00000000 --- a/mkproto.pl +++ /dev/null @@ -1,48 +0,0 @@ -# generate prototypes for rsync - -$old_protos = ''; -if (open(IN, 'proto.h')) { - $old_protos = join('', <IN>); - close IN; -} - -%FN_MAP = ( - BOOL => 'BOOL ', - CHAR => 'char ...