Kuba Podgórski

Results 102 comments of Kuba Podgórski

> This won't solve the problem since the maximum path length is 260 symbols. MAX_PATH restrictions apply until Windows 10 version 1607 > > as a solution I can suggest...

...Moreover lets take a look step by step: we need a minimum of `filename_size` (which by default is `MZ_ZIP_MAX_ARCHIVE_FILENAME_SIZE` (512)) and `MAX_PATH - dirlen`. ``` if (filename_size > MAX_PATH -...

> > `MAX_PATH` is defined in `zip.h` as follows: > > ``` > > #ifndef MAX_PATH > > #define MAX_PATH 1024 /* # chars in a path name including NULL...

@Limaaron - PTAL if the fix https://github.com/kuba--/zip/pull/273 works for you

We can add some `if-s` for cmake to avoid building with `-Werror` flag. WDYT?

Frankly speaking, _just renaming the library/project_ - I don't think it's a good idea. But maybe we can solve your problem in a different way (with some `ifdefs` etc.) Do...

Maybe you can check if setting `CONFIG_INSTALL_DIR` `INCLUDE_INSTALL_DIR` (from cmake) will work for you. Otherwise maybe you can those 3 files into your project

We've already discussed utf-8 topic in many threads. Please take a look: https://github.com/kuba--/zip/search?q=utf-8&type=issues

This library is based on https://github.com/richgel999/miniz and we want to keep it compatible is much as possible. UTF-8 for entry names (and comments) is supported by ZIP spec. if `11...