libvips/.gitignore
John Cupitt 2c4c039056 add "unlimited" to jpegload
To disable DoS limits for JPEG loading. Adding API on a stable branch is
bad, but this fixes a regression, so I think it's necessary,
unfortunately.

See https://github.com/libvips/libvips/issues/2973
2022-08-02 13:50:09 +01:00

49 lines
426 B
Plaintext

### C
# Object files
*.o
# Libraries
*.a
*.la
*.lo
# Build directories
build/
debug/
release/
# Executables
*.out
### End of C
### Python
# Byte-compiled / optimized
__pycache__/
*.py[cod]
# Unit test
.pytest_cache/
### End of Python
### VIM
# Temporary files
*~
tmp
tmp-*
# Swap
.*.swp
.*.swo
# Backup
*.bak
# Auto-generated tag files
tags
TAGS
### End of VIM
### Distribution
vips-*.tar.gz
### End of Distribution