-ķ
ģ¶<c       sZ     d  Z    d Z 
 d k Z d k Z  d k T d f  d     YZ p d   Z d S(   sm   distutils.extension

Provides the Extension class, used to describe C/C++ extension
modules in setup scripts.s9   $Id: extension.py,v 1.9.6.1 2001/12/28 10:20:06 mwh Exp $N(   s   *s	   Extensionc      s>    t  Z d  Z L N e e e e e e e e e e d 
 Z RS(   są
  Just a collection of attributes that describes an extension
    module and everything needed to build it (hopefully in a portable
    way, but there are hooks that let you be as unportable as you need).

    Instance attributes:
      name : string
        the full name of the extension, including any packages -- ie.
        *not* a filename or pathname, but Python dotted name
      sources : [string]
        list of source filenames, relative to the distribution root
        (where the setup script lives), in Unix form (slash-separated)
        for portability.  Source files may be C, C++, SWIG (.i),
        platform-specific resource files, or whatever else is recognized
        by the "build_ext" command as source for a Python extension.
      include_dirs : [string]
        list of directories to search for C/C++ header files (in Unix
        form for portability)
      define_macros : [(name : string, value : string|None)]
        list of macros to define; each macro is defined using a 2-tuple,
        where 'value' is either the string to define it to or None to
        define it without a particular value (equivalent of "#define
        FOO" in source or -DFOO on Unix C compiler command line)
      undef_macros : [string]
        list of macros to undefine explicitly
      library_dirs : [string]
        list of directories to search for C/C++ libraries at link time
      libraries : [string]
        list of library names (not filenames or paths) to link against
      runtime_library_dirs : [string]
        list of directories to search for C/C++ libraries at run time
        (for shared extensions, this is when the extension is loaded)
      extra_objects : [string]
        list of extra files to link with (eg. object files not implied
        by 'sources', static library that must be explicitly specified,
        binary resource files, etc.)
      extra_compile_args : [string]
        any extra platform- and compiler-specific information to use
        when compiling the source files in 'sources'.  For platforms and
        compilers where "command line" makes sense, this is typically a
        list of command-line arguments, but for other platforms it could
        be anything.
      extra_link_args : [string]
        any extra platform- and compiler-specific information to use
        when linking object files together to create the extension (or
        to create a new static Python interpreter).  Similar
        interpretation as for 'extra_compile_args'.
      export_symbols : [string]
        list of symbols to be exported from a shared extension.  Not
        used on all platforms, and not generally necessary for Python
        extensions, which typically export exactly one symbol: "init" +
        extension_name.
    c    sN  N [ t  o t |  t j p
 t d  \ t  o@ t |  t j o  t t |  t g t |  j p
 t d  ` | |  _ a | |  _ b | p g  |  _
 c | p g  |  _ d | p g  |  _ e | p g  |  _ f | p g  |  _ g | p g  |  _ h |	 p g  |  _ i |
 p g  |  _ j | p g  |  _ k | p g  |  _ d  S(   Ns   'name' must be a strings#   'sources' must be a list of strings(   s	   __debug__s   types   names
   StringTypes   AssertionErrors   sourcess   ListTypes   maps   lens   selfs   include_dirss   define_macross   undef_macross   library_dirss	   librariess   runtime_library_dirss   extra_objectss   extra_compile_argss   extra_link_argss   export_symbols(   s   selfs   names   sourcess   include_dirss   define_macross   undef_macross   library_dirss	   librariess   runtime_library_dirss   extra_objectss   extra_compile_argss   extra_link_argss   export_symbols(    (    s)   /usr/lib/python2.2/distutils/extension.pys   __init__N s   'J(   s   __name__s
   __module__s   __doc__s   Nones   __init__(    (    (    s)   /usr/lib/python2.2/distutils/extension.pys	   Extension s   4c    s|  p q d k  l } l } l } s d k l }
 t d k l } w | |   } { |
 |  | d d d d d d } d d d	 d } ~ g  }  xį d oÖ | i   }	  |	 t j o  Pn  | i |	  o
  q n  |	 d
 |	 d j o
 d j n o  | i d |	   q n  | |	 |  }	  | |	  }  | d
 }  t | g   }  t }  xč| d D ]Ł}  | t j	 o#  | i |   t }  q|n   t i i |  d } ” | d
 d !} | d } £ | d d d d d d d f j o § | i i |  n2Ø | d j o © | i i |  nŖ | d j on « t  i! | d  } ¬ | d j o ­ | i# i | t f  n) Æ | i# i | d
 | !| | d f  n± | d j o ² | i$ i |  nf³ | d j o “ | i% i |  n?µ | d j o ¶ | i& i |  n· | d j o ø | i' i |  nń ¹ | d j o ŗ | i( i |  nŹ » | d j o ¼ | i( } nŖ ½ | d j o ¾ | i) } n æ | d  j o2 Ą | i) i |  Į | o Ā | i) } n nH Ć | d! d" d# d$ f j o Č | i* i |  n Ź | i d% |  q|WĢ | i |  q W× | Sd  S(&   N(   s   parse_makefiles   expand_makefile_varss   _variable_rx(   s   TextFile(   s   split_quoteds   strip_commentsi   s   skip_blankss
   join_liness	   lstrip_wss	   rstrip_wsi    i’’’’s   *s   '%s' lines not handled yeti   s   .cs   .ccs   .cpps   .cxxs   .c++s   .ms   .mms   -Is   -Ds   =s   -Us   -Cs   -ls   -Ls   -Rs   -rpaths   -Xlinkers   -us   .as   .sos   .sls   .os   unrecognized argument '%s'(+   s   distutils.sysconfigs   parse_makefiles   expand_makefile_varss   _variable_rxs   distutils.text_files   TextFiles   distutils.utils   split_quoteds   filenames   varss   files
   extensionss   readlines   lines   Nones   matchs   warns   wordss   modules	   Extensions   exts   append_next_words   words   appends   oss   paths   splitexts   suffixs   switchs   values   sourcess   include_dirss   strings   finds   equalss   define_macross   undef_macross   extra_compile_argss	   librariess   library_dirss   runtime_library_dirss   extra_link_argss   extra_objects(   s   filenames   files   varss   parse_makefiles   equalss   modules   append_next_words   wordss   split_quoteds   lines   TextFiles   suffixs   words   exts   values   expand_makefile_varss   switchs
   extensionss   _variable_rx(    (    s)   /usr/lib/python2.2/distutils/extension.pys   read_setup_filep s~   		 

)
		 		
%,(   s   __doc__s   __revision__s   oss   strings   typess	   Extensions   read_setup_file(   s   read_setup_files   __revision__s   oss   strings	   Extension(    (    s)   /usr/lib/python2.2/distutils/extension.pys   ? s
   	
X