summaryrefslogtreecommitdiff
path: root/source3/script/mkproto.awk
diff options
context:
space:
mode:
Diffstat (limited to 'source3/script/mkproto.awk')
-rw-r--r--source3/script/mkproto.awk20
1 files changed, 10 insertions, 10 deletions
diff --git a/source3/script/mkproto.awk b/source3/script/mkproto.awk
index b1c7f79c18..e5f0c11477 100644
--- a/source3/script/mkproto.awk
+++ b/source3/script/mkproto.awk
@@ -1,6 +1,6 @@
BEGIN {
inheader=0;
- use_ldap_define = 0;
+# use_ldap_define = 0;
current_file="";
print "/* This file is automatically generated with \"make proto\". DO NOT EDIT */"
print ""
@@ -8,19 +8,19 @@ BEGIN {
{
if (FILENAME!=current_file) {
- if (use_ldap_define)
- {
- print "#endif /* USE_LDAP */"
- use_ldap_define = 0;
- }
+# if (use_ldap_define)
+# {
+# print "#endif /* USE_LDAP */"
+# use_ldap_define = 0;
+# }
print ""
print "/*The following definitions come from ",FILENAME," */"
print ""
current_file=FILENAME
- if (current_file=="ldap.c") {
- print "#ifdef USE_LDAP"
- use_ldap_define = 1;
- }
+# if (current_file=="ldap.c") {
+# print "#ifdef USE_LDAP"
+# use_ldap_define = 1;
+# }
}
if (inheader) {
if (match($0,"[)][ \t]*$")) {