Ignore:
Timestamp:
Nov 27, 2012, 4:43:17 PM (13 years ago)
Author:
Silvan Scherrer
Message:

Samba Server: updated trunk to 3.6.0

Location:
trunk/server
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/server

  • trunk/server/lib/talloc/script/mksigs.pl

    r414 r745  
    2828
    2929my $in_comment = 0;
     30my $in_doxygen = 0;
    3031my $extern_C_block = 0;
    3132
     
    4041                        next;
    4142                }
     43        }
     44
     45        # find end of DOXYGEN section
     46        if ($in_doxygen) {
     47                if ($LINE =~ /^#\s*else(?:\s+.*)?$/) {
     48                        $in_doxygen = 0;
     49                }
     50                next;
    4251        }
    4352
     
    6978                $LINE .= " " . $LINE2;
    7079        }
     80
     81        # remove DOXYGEN sections
     82        if ($LINE =~ /^#\s*ifdef\s+DOXYGEN(?:\s+.*)?$/) {
     83                $in_doxygen = 1;
     84                next;
     85        }
     86
    7187
    7288        # remove all preprocessor directives
Note: See TracChangeset for help on using the changeset viewer.