Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix Python binding compilation under Windows #31

Closed
wants to merge 15 commits into from

Commits on Mar 16, 2015

  1. Add command-line tool and tests.

    szabadka authored and Cosimo Lupo committed Mar 16, 2015
    Configuration menu
    Copy the full SHA
    fec561a View commit details
    Browse the repository at this point in the history
  2. Improvements to the command-line tool.

    - Don't read the whole input to memory.
    - Support reading from stdin and writing to stdout.
    szabadka authored and Cosimo Lupo committed Mar 16, 2015
    Configuration menu
    Copy the full SHA
    9af2e7f View commit details
    Browse the repository at this point in the history
  3. Add .gitignore file

    khaledhosny authored and Cosimo Lupo committed Mar 16, 2015
    Configuration menu
    Copy the full SHA
    a60406e View commit details
    Browse the repository at this point in the history
  4. Remove unneeded malloc.h header.

    szabadka authored and Cosimo Lupo committed Mar 16, 2015
    Configuration menu
    Copy the full SHA
    1cfc9d0 View commit details
    Browse the repository at this point in the history
  5. Fix undefined behavior in decoder.

    Use memmove() for copying overlapping buffers.
    szabadka authored and Cosimo Lupo committed Mar 16, 2015
    Configuration menu
    Copy the full SHA
    f5addf3 View commit details
    Browse the repository at this point in the history
  6. Add more test cases.

    szabadka authored and Cosimo Lupo committed Mar 16, 2015
    Configuration menu
    Copy the full SHA
    03300b3 View commit details
    Browse the repository at this point in the history
  7. Add Python bindings

    khaledhosny authored and Cosimo Lupo committed Mar 16, 2015
    Configuration menu
    Copy the full SHA
    14d90b6 View commit details
    Browse the repository at this point in the history
  8. Compile decoder with -Wall flag

    This also fixes two "comparison between signed and unsigned" warnings.
    irori authored and Cosimo Lupo committed Mar 16, 2015
    Configuration menu
    Copy the full SHA
    60dd20f View commit details
    Browse the repository at this point in the history
  9. add python's build and dist directories to .gitignore

    Cosimo Lupo committed Mar 16, 2015
    Configuration menu
    Copy the full SHA
    819f151 View commit details
    Browse the repository at this point in the history
  10. [python/setup.py] use relative paths instead of symlinks (unsupported…

    … on Win)
    Cosimo Lupo committed Mar 16, 2015
    Configuration menu
    Copy the full SHA
    a2b67d4 View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    fda3bac View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    4dcbe1c View commit details
    Browse the repository at this point in the history
  13. [setup.py] enable C++ exception handling on MSVC compiler to fix warn…

    …ing C4530
    Cosimo Lupo committed Mar 16, 2015
    Configuration menu
    Copy the full SHA
    f9dcf46 View commit details
    Browse the repository at this point in the history
  14. [python] Use BrotliDecompress()

    So that we can use a callback to dynamically allocate the decompression
    buffer, getting rid of the optional bufsize argument to
    decompress.decompress().
    khaledhosny authored and Cosimo Lupo committed Mar 16, 2015
    Configuration menu
    Copy the full SHA
    ddba612 View commit details
    Browse the repository at this point in the history
  15. Configuration menu
    Copy the full SHA
    8e4da4c View commit details
    Browse the repository at this point in the history