summaryrefslogtreecommitdiffstats
path: root/source/script/mkproto.awk
diff options
context:
space:
mode:
Diffstat (limited to 'source/script/mkproto.awk')
-rw-r--r--source/script/mkproto.awk8
1 files changed, 6 insertions, 2 deletions
diff --git a/source/script/mkproto.awk b/source/script/mkproto.awk
index 7ae89b74675..6e74b0d85fe 100644
--- a/source/script/mkproto.awk
+++ b/source/script/mkproto.awk
@@ -2,8 +2,12 @@ BEGIN {
inheader=0;
# use_ldap_define = 0;
current_file="";
- print "#ifndef _PROTO_H_"
- print "#define _PROTO_H_"
+ if (headername=="") {
+ headername="_PROTO_H_";
+ }
+
+ print "#ifndef",headername
+ print "#define",headername
print "/* This file is automatically generated with \"make proto\". DO NOT EDIT */"
print ""
}