420 Commits

Author SHA1 Message Date
Leander Schulten
7cb316f28b Fix pkgconfig file for private dependencies 2023-09-12 12:05:12 -07:00
Nathan Moinvaziri
680d6f1dcf Version 4.0.1. 2023-08-04 11:23:54 -07:00
pmq
23945b8f43 Add sanitizers from zlib-ng
Co-authored-by: Nathan Moinvaziri <nathan@nathanm.com>
2023-07-31 10:02:18 -07:00
Nathan Moinvaziri
706737f980 Change CMake to use CheckCSourceCompiles for compatibility. #720 2023-07-31 10:01:03 -07:00
Sam James
d14fb2f294 CMake: fix SONAME for MZ_COMPAT
zlib's minizip has SONAME 1. MZ_COMPAT intends to provide ABI and API compatibility,
so its SONAME should match.

The layout with this is:
```
libminizip.so -> libminizip.so.1
libminizip.so.1 -> libminizip.so.4.0.0
libminizip.so.4.0.0
```

Signed-off-by: Sam James <sam@gentoo.org>
2023-06-27 14:19:03 -07:00
Brad Smith
57be074f6f CMake: Fix build with OpenBSD #711
Setting _POSIX_C_SOURCE on OpenBSD breaks the build. _BSD_SOURCE needs
to be set at the same time to enable some functions.

In file included from /home/brad/tmp/ffmpeg-ports/ports/pobj/minizip-4.0.0/minizip-ng-4.0.0/test/test_main.cc:5:
In file included from /usr/local/include/gtest/gtest.h:55:
In file included from /usr/include/c++/v1/ostream:140:
In file included from /usr/include/c++/v1/locale:218:
/usr/include/c++/v1/__bsd_locale_fallbacks.h:122:17: error: use of undeclared identifier 'vasprintf'; did you mean 'vsprintf'?
    int __res = vasprintf(__s, __format, __va);
                ^
/usr/include/c++/v1/cstdio:124:9: note: 'vsprintf' declared here
using ::vsprintf _LIBCPP_USING_IF_EXISTS;
        ^
In file included from /home/brad/tmp/ffmpeg-ports/ports/pobj/minizip-4.0.0/minizip-ng-4.0.0/test/test_main.cc:5:
In file included from /usr/local/include/gtest/gtest.h:55:
In file included from /usr/include/c++/v1/ostream:140:
In file included from /usr/include/c++/v1/locale:218:
/usr/include/c++/v1/__bsd_locale_fallbacks.h:122:27: error: cannot initialize a parameter of type 'char *' with an lvalue of type 'char **'
    int __res = vasprintf(__s, __format, __va);
                          ^~~
/usr/include/stdio.h:269:21: note: passing argument to parameter here
int      vsprintf(char *, const char *, __va_list);
                        ^
2 errors generated.
2023-06-11 09:47:50 -07:00
scribam
3da646bab3 Remove CMake POSITION_INDEPENDENT_CODE properties 2023-06-10 10:38:35 -07:00
Kyle Schwarz
382335a99e Fix cmake install location 2023-06-08 11:25:58 -07:00
Nathan Moinvaziri
a1f568d601 Version 4.0.0. 2023-05-19 10:27:46 -07:00
Nathan Moinvaziri
75508d7f92 Check for existence of BCrypt symbols before using BCrypt API. 2023-04-24 10:33:39 -07:00
Nathan Moinvaziri
a4c6fd3100 Improved check for zlib's example and example64 project. 2023-04-24 10:28:54 -07:00
Nathan Moinvaziri
a0b138e06c Change CMake to do BCrypt detection. 2023-04-19 10:45:38 -07:00
Nathan Moinvaziri
8eed140133 Remove MZ_BCRYPT option from CMake. 2023-04-18 17:32:08 -07:00
Nathan Moinvaziri
be23e857ed Fix ALIAS target name to be consistent with imported target.
Co-authored-by: SpaceIm <SpaceIm@users.noreply.github.com>
2023-04-15 23:12:19 -07:00
Nathan Moinvaziri
e15e1462f2 Proper use of GNUInstallDirs cmake module.
Co-authored-by: Tomasz Kłoczko <kloczek@users.noreply.github.com>
2023-04-15 23:05:15 -07:00
Nathan Moinvaziri
85a4ee2864 Added description and homepage url to CMake. 2023-04-15 23:03:31 -07:00
Nathan Moinvaziri
10d06fa43c Modify CMake to call project() early as possible.
Co-authored-by: SpaceIm <SpaceIm@users.noreply.github.com>
2023-04-15 22:55:07 -07:00
Nathan Moinvaziri
3b0461e229 Added _CRT_NONSTDC_NO_DEPRECATE for MSVC compilation with strdup. 2023-04-12 13:58:39 -07:00
Nathan Moinvaziri
3da04514cd Remove signing feature.
Too much work to maintain and rarely used. Continue to use v3 for that feature.
2023-04-09 11:14:26 -07:00
Nathan Moinvaziri
8d2488c481 Version 3.0.10. 2023-04-09 11:13:13 -07:00
lawadr
b3a7caee9a Fix MZ_FETCH_LIBS option for non-WIN32 systems
Using `cmake_dependent_option` overrides a previously set directory
scope MZ_FETCH_LIBS variable. This means if a project sets MZ_FETCH_LIBS
before adding minizip-ng as a subdirectory in order to force it to fetch
zlib, it will set the variable to OFF, only use `find_library` and never
fetch zlib on non-WIN32 systems. This is a regression from previous
behaviour.

Instead, revert back to using `option` as this obeys a directory scope
MZ_FETCH_LIBS variable set by a parent directory, allowing said parent
directory to control zlib version.
2023-03-29 17:34:35 -07:00
lawadr
944b6aa523 Use POSIX implementation if platform is not Windows
Non-UNIX platforms may support POSIX, partly or fully, through a
compatibility layer of some kind. If a non-Windows platform does not
have the UNIX CMake variable set, take the POSIX path through the CMake
anyway.
2023-03-29 17:34:00 -07:00
Sam James
36f6d729be CMake: set newer POSIX_C_SOURCE
Enable POSIX 2008 as it's needed for strdup(), otherwise we get:
```
/var/tmp/portage/sys-libs/minizip-ng-3.0.9/work/minizip-ng-3.0.9/mz_os.c: In function ‘mz_dir_make’:
/var/tmp/portage/sys-libs/minizip-ng-3.0.9/work/minizip-ng-3.0.9/mz_os.c:286:19: error: implicit declaration of function ‘strdup’ [-Werror=implicit-function-declaration]
  286 |     current_dir = strdup(path);
      |                   ^~~~~~
```

The man page for strdup says:
```
strdup():
	_XOPEN_SOURCE >= 500
	|| /* Since glibc 2.12: */ _POSIX_C_SOURCE >= 200809L
	|| /* glibc <= 2.19: */ _BSD_SOURCE || _SVID_SOURCE
```
2023-03-16 16:40:21 -07:00
Nathan Moinvaziri
db9df99b91 Version 3.0.9. 2023-03-16 09:37:00 -07:00
Nathan Moinvaziri
9829913018 Remove MZ_WINRT_API, use newer API if targeting newer version of Windows 2023-02-17 09:47:02 -08:00
Nathan Moinvaziri
03e4d2213d Remove copyright years. 2023-02-16 13:14:21 -08:00
Nathan Moinvaziri
abc80d1049 Clean up CMake options and add feature_info for MZ_BCRYPT. 2023-02-16 12:49:39 -08:00
Sergey Markelov
d1558fe864 Make cmake option MZ_BCRYPT conditional
Always ON on UWP and depends on a user choice or OFF otherwise.
2023-02-16 11:27:07 -08:00
Sergey Markelov
682dfd23e3 Implemented mz_crypt_sign for UWP 2023-02-16 11:27:07 -08:00
Sergey Markelov
63f927345b Encryption support on UWP 2023-02-16 11:27:07 -08:00
Nathan Moinvaziri
cf04dd5a7e Check for RNG on Ubuntu also when using WinZIP AES encryption only. 2023-02-13 18:34:06 -08:00
Marek Rusinowski
41c93fb2d5 Fix private linking of LibLZMA
The current `liblzma` makes linke look for `libliblzma` as the `lib` prefix is added automatically. This is breaking static linking of library when using pkg-config for resolving dependencies.
2023-01-15 10:48:27 -08:00
Nathan Moinvaziri
029e724e76 Fixed VS_STARTUP_PROJECT cmake setting. 2022-12-31 11:22:22 -08:00
Nathan Moinvaziri
cee6d8cbd4 Version 3.0.8. 2022-12-31 11:09:18 -08:00
Nathan Moinvaziri
bb82bb5b9f Allow CMake to handle optimization flags. 2022-11-29 16:51:25 -08:00
Nathan Moinvaziri
60649ada97 Disable MZ_SIGNING due to extra test requirements.
MZ_SIGNING no longer on by default due to extra test requirements of having
to have a certificate installed as root to validate signing.
2022-11-29 16:51:25 -08:00
SpaceIm
4c44bd1e66 cmake: inject libdir of lzma 2022-11-29 16:02:05 -08:00
Nathan Moinvaziri
2414288862 Version 3.0.7. 2022-10-15 15:55:45 -07:00
Nathan Moinvaziri
ba51421317 Turn off liblzma tests which run even with EXCLUDE_FROM_ALL. 2022-10-15 10:21:45 -07:00
Nathan Moinvaziri
97707624a6 Turn off ZSTD programs to prevent playTest.sh from running. 2022-10-15 10:21:45 -07:00
Nathan Moinvaziri
d03ca72a25 Implement Google test framework. 2022-10-13 09:51:47 -07:00
Rosen Penev
387ade34c6 build with libbsd-overlay
Simplifies the code. Upstream also recommends it.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2022-10-08 14:52:40 -07:00
Nathan Moinvaziri
7b2784110f Fixed GCC build compilation with ctest due to missing zlib.h
When running ctest it also builds and runs example and example64 from zlib.
The GCC CI builds were failing because example and example64 could not find
the header file zlib.h.
2022-08-06 09:12:12 -07:00
Nathan Moinvaziri
0aca9f0011 Set default startup project to minizip_cmd when using MZ_BUILD_TESTS. 2022-06-11 10:54:39 -07:00
Nathan Moinvaziri
6261d6f5ec Generate test files in binary temp directory. 2022-06-11 10:36:42 -07:00
degaart
e2e5775aee Avoid writing minizip-config.cmake.in to source dir 2022-05-07 11:09:51 -07:00
degaart
65df63a152 Fix generation of minizip.pc 2022-05-07 11:09:51 -07:00
Nathan Moinvaziri
47b8449fec Version 3.0.6. 2022-04-27 11:16:33 -07:00
Fabrice Fontaine
a4e6591a18
CMakeLists.txt: fix build without C++ (#621)
Fix the following build failure without a working C++ compiler raised
since version 2.0.0 and
d383a5f2fc:

CMake Error at /nvmedata/autobuild/instance-20/output-1/host/share/cmake-3.18/Modules/CMakeTestCXXCompiler.cmake:59 (message):
  The C++ compiler

    "/usr/bin/c++"

  is not able to compile a simple test program.

Fixes:
 - http://autobuild.buildroot.org/results/4452bc35b41414a5e8a0e9831b0854228df5fba4

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
2022-04-27 11:14:30 -07:00
Nathan Moinvaziri
f9779319a6 Only add OPENSSL_INCLUDE_DIR to include directories if variable is set. 2022-04-26 19:19:45 -07:00