summaryrefslogtreecommitdiff
path: root/gio/gzlibdecompressor.c
Commit message (Collapse)AuthorAgeFilesLines
* Add functionality to preserve nanosecond timestampsnitinosiris2022-05-271-0/+3
| | | | | | file copy doesn't preserve nanosecond timestamps Closes #369
* gio: Add SPDX license headers automaticallyPhilip Withnall2022-05-181-0/+2
| | | | | | | | | | | | | | Add SPDX license (but not copyright) headers to all files which follow a certain pattern in their existing non-machine-readable header comment. This commit was entirely generated using the command: ``` git ls-files gio/*.[ch] | xargs perl -0777 -pi -e 's/\n \*\n \* This library is free software; you can redistribute it and\/or\n \* modify it under the terms of the GNU Lesser General Public/\n \*\n \* SPDX-License-Identifier: LGPL-2.1-or-later\n \*\n \* This library is free software; you can redistribute it and\/or\n \* modify it under the terms of the GNU Lesser General Public/igs' ``` Signed-off-by: Philip Withnall <pwithnall@endlessos.org> Helps: #1415
* docs: Match GZlib(De)Compressor section with the type nameEmmanuele Bassi2021-08-021-1/+1
| | | | | Otherwise the introspection scanner won't be able to match the documentation stanza to the corresponding type.
* gio: Add missing nullable annotationsSebastian Dröge2020-11-111-1/+1
|
* all: Remove trailing newlines from g_message()/g_warning()/g_error()sPhilip Withnall2018-04-271-3/+3
| | | | | | | | | All those logging functions already add a newline to any message they print, so there’s no need to add a trailing newline in the message passed to them. Signed-off-by: Philip Withnall <withnall@endlessm.com> Reviewed-by: nobody
* gio/: LGPLv2+ -> LGPLv2.1+Sébastien Wilmet2017-05-291-1/+1
| | | | | | | | | | | | | | | | | Sub-directories inside gio/ already processed in a previous commit: - fam/ - gdbus-2.0/ (which contains only codegen/) - gvdb/ - inotify/ - tests/ - win32/ - xdgmime/ Other sub-directories inside gio/: - completion/: no license headers - kqueue/: not LGPL, BSD-style license https://bugzilla.gnome.org/show_bug.cgi?id=776504
* Updated FSF's addressDaniel Mustieles2014-01-311-3/+1
|
* gzlibdecompressor.c: fix a commentDan Winship2011-11-291-1/+1
|
* Fix building with zlib < 1.2.4 on win32Christian Persch2010-09-011-0/+5
| | | | | | | The gzip header processing functions were only exported since 1.2.4 on win32, so #ifdef this code accordingly. Bug #628505.
* Add GZIP header processing to GZlibCompressor/GZlibDecompressorChristian Persch2010-08-171-8/+126
| | | | | | | | | | | | | | Add GZlibCompressor:file-info property. If it contains a non-NULL GFileInfo, and the compressor is in GZIP mode, the filename and modification time from the file info are written to the GZIP header in the output data. Add GZlibDeompressor:file-info property. If the decompressor is in GZIP mode, and the GZIP data contains a GZIP header, the filename and modification time are read from it, stored in a GFileInfo, and the file-info property is notified. Bug #617691.
* gio/: fully remove gioalias hacksRyan Lortie2010-07-071-4/+0
|
* Do not include "glib.h" in gio filesJavier Jardón2010-05-061-3/+3
|
* Fix API docs for GZlibCompressor and GZlibDecompressorFelix Riemann2010-03-031-1/+1
| | | | | Corrects the general descriptions and makes the signals and implemented interfaces appear.
* Remove unused variableAlexander Larsson2009-11-261-1/+0
|
* Fix GZlibCompressorFormat namesAlexander Larsson2009-11-241-2/+7
| | | | | What used to be called RAW is really the zlib header format. There is a real "raw" format, so rename the default and add a RAW type.
* Add GZlibDecompressor for zlib decompressionAlexander Larsson2009-11-231-0/+292