-í
ìĥ<c       sE   d  Z  d Z d k Z d k Z d k Td f  d     YZ 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      s5   t  Z d  Z 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    sĥ   | |  _  | |  _ | p g  |  _ | p g  |  _ | p g  |  _ | p g  |  _ | p g  |  _ | p g  |  _ |	 p g  |  _	 |
 p g  |  _
 | p g  |  _ | p g  |  _ d  S(   N(   s   names   selfs   sourcess   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      		(   s   __name__s
   __module__s   __doc__s   Nones   __init__(    (    (    s)   /usr/lib/python2.2/distutils/extension.pys	   Extension s   4 c    sĵ  d k  l } l } l } d k l }
 d k l } | |   } |
 |  d d d d d d d d d	 d } g  } xBd o:| i   }	 |	 t j o Pn | i |	  o qr n |	 d
 |	 d j o
 d j n o | i d |	  qr n | |	 |  }	 | |	  } | d
 } t | g   } t } xy| d D]m} | t j	 o | i |  t } q1n t i i |  d } | d
 d !} | d } | d d d d d d d f j o | i i |  nŜ| d j o | i i |  n½| d j ob t  i! | d  } | d j o | i# i | t f  n& | i# i | d
 | !| | d f  nN| 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( i |  nİ | d j o | i( } n | d j o | i) } nu | d  j o) | i) i |  | o | i) } n n? | d! d" d# d$ f j o | i* i |  n | i d% |  q1W| i |  qr 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