• Show log

    Commit

  • Hash : 6e169c14
    Author : Chun-wei Fan
    Date : 2021-03-30T16:11:13

    python: Port python 3.x module to Windows
    
    On Windows, we don't have fcntl() which helps us to find out how a file was
    opened, so we need to resort to the Windows API NtQueryInformationFile() in
    ntdll.dll to help us, and compare the file access modes as appropriate to
    deduce the modes we want to pass into fdopen().
    
    As all official Python 3.x releases are built against newer Windows CRTs that
    toughen checks on the validity of the file descriptor when we convert the fd to
    a native Windows File Handle using _get_osfhandle(), we need to define an empty
    handler so that the program does not abort if the fd that was passed in was
    invalid; instead, we just return NULL if _get_osfhandle() could not return us a
    valid Windows File Handle.
    

  • README

  •                   XML toolkit from the GNOME project
    
    Full documentation is available on-line at
        http://xmlsoft.org/
    
    This code is released under the MIT Licence see the Copyright file.
    
    To build on an Unixised setup:
       ./configure ; make ; make install
       if the ./configure file does not exist, run ./autogen.sh instead.
    To build on Windows:
       see instructions on win32/Readme.txt
    
    To assert build quality:
       on an Unixised setup:
          run make tests
       otherwise:
           There is 3 standalone tools runtest.c runsuite.c testapi.c, which
           should compile as part of the build or as any application would.
           Launch them from this directory to get results, runtest checks 
           the proper functioning of libxml2 main APIs while testapi does
           a full coverage check. Report failures to the list.
    
    To report bugs, follow the instructions at: 
      http://xmlsoft.org/bugs.html
    
    A mailing-list xml@gnome.org is available, to subscribe:
        http://mail.gnome.org/mailman/listinfo/xml
    
    The list archive is at:
        http://mail.gnome.org/archives/xml/
    
    All technical answers asked privately will be automatically answered on
    the list and archived for public access unless privacy is explicitly
    required and justified.
    
    Daniel Veillard
    
    $Id$