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/mksyms.awk

    r414 r745  
    99BEGIN {
    1010        inheader=0;
     11        indoxygen=0;
    1112}
    1213
     
    2122                next;
    2223        }
     24        if (indoxygen) {
     25                if (match($0,"^#[ \t]*else[ \t]*.*$")) {
     26                        indoxygen = 0;
     27                }
     28                next;
     29        }
    2330}
    2431
    25 /^static/ || /^[ \t]*typedef/ || !/^[a-zA-Z\_]/ {
     32/^static/ || /^[ \t]*typedef/ || !/^[a-zA-Z\_\#]/ {
    2633        next;
    2734}
     
    3441}
    3542
     43/^#[ \t]*ifdef[ \t]*DOXYGEN[ \t]*.*$/ {
     44        indoxygen=1;
     45        next;
     46}
     47
    3648# look for function headers:
    3749{
    3850        gotstart = 0;
    3951        if ($0 ~ /^[A-Za-z_][A-Za-z0-9_]+/) {
    40         gotstart = 1;
     52                gotstart = 1;
    4153        }
    4254        if(!gotstart) {
Note: See TracChangeset for help on using the changeset viewer.