Ignore:
Timestamp:
Nov 24, 2016, 1:14:11 PM (9 years ago)
Author:
Silvan Scherrer
Message:

Samba Server: update vendor to version 4.4.3

File:
1 edited

Legend:

Unmodified
Added
Removed
  • vendor/current/pidl/README

    r414 r988  
    11Introduction:
    22=============
    3 This directory contains the source code of the pidl (Perl IDL) 
    4 compiler for Samba 4. 
     3This directory contains the source code of the pidl (Perl IDL)
     4compiler for Samba 4.
    55
    66The main sources for pidl are available using Git as part of
    7 the combined Samba 3 / Samba 4 tree. Use:
     7the Samba source tree. Use:
    88git clone git://git.samba.org/samba.git
    99
    10 Pidl works by building a parse tree from a .pidl file (a simple 
    11 dump of it's internal parse tree) or a .idl file 
    12 (a file format mostly like the IDL file format midl uses). 
    13 The IDL file parser is in idl.yp (a yacc file converted to 
     10Pidl works by building a parse tree from a .pidl file (a simple
     11dump of it's internal parse tree) or a .idl file
     12(a file format mostly like the IDL file format midl uses).
     13The IDL file parser is in idl.yp (a yacc file converted to
    1414perl code by yapp)
    15 
    16 After a parse tree is present, pidl will call one of it's backends
    17 (which one depends on the options given on the command-line). Here is
    18 a list of current backends:
    1915
    2016Standalone installation:
    2117========================
    22 Run Makefile.PL to generate the Makefile. 
     18Run Makefile.PL to generate the Makefile.
    2319
    2420Then run "make install" (as root) to install.
     
    2622Internals overview:
    2723===================
     24
     25After a parse tree is present, pidl will call one of it's backends
     26(which one depends on the options given on the command-line). Here is
     27a list of current backends:
    2828
    2929-- Generic --
     
    5656
    5757Tips for hacking on pidl:
    58  - Look at the pidl's parse tree by using the --keep option and looking
    59    at the generated .pidl file.
    60  - The various backends have a lot in common, if you don't understand how one 
    61    implements something, look at the others
     58 - Inspect pidl's parse tree by using the --keep option and looking at the
     59   generated .pidl file.
     60 - The various backends have a lot in common, if you don't understand how one
     61   implements something, look at the others.
    6262 - See pidl(1) and the documentation on midl
    63  - See 'info bison' and yapp(1) for information on the file format of idl.yp
     63 - See 'info bison' and yapp(1) for information on the file format of idl.yp
     64 - Run the tests (all in tests/)
Note: See TracChangeset for help on using the changeset viewer.