libcaes-python 20240413__tar.gz → 20251121__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {libcaes-20240413 → libcaes-20251121}/AUTHORS +1 -1
- libcaes-20251121/INSTALL +380 -0
- {libcaes-20240413 → libcaes-20251121}/Makefile.in +37 -18
- {libcaes-20240413 → libcaes-20251121}/PKG-INFO +6 -3
- {libcaes-20240413 → libcaes-20251121}/acinclude.m4 +1 -1
- {libcaes-20240413 → libcaes-20251121}/aclocal.m4 +312 -136
- {libcaes-20240413 → libcaes-20251121}/common/Makefile.in +22 -10
- {libcaes-20240413 → libcaes-20251121}/common/byte_stream.h +1 -1
- {libcaes-20240413 → libcaes-20251121}/common/common.h +1 -1
- {libcaes-20240413 → libcaes-20251121}/common/config.h +79 -73
- {libcaes-20240413 → libcaes-20251121}/common/config.h.in +76 -70
- {libcaes-20240413 → libcaes-20251121}/common/config_borlandc.h +1 -1
- {libcaes-20240413 → libcaes-20251121}/common/config_msc.h +1 -1
- {libcaes-20240413 → libcaes-20251121}/common/config_winapi.h +1 -1
- {libcaes-20240413 → libcaes-20251121}/common/file_stream.h +1 -1
- {libcaes-20240413 → libcaes-20251121}/common/memory.h +1 -1
- {libcaes-20240413 → libcaes-20251121}/common/narrow_string.h +1 -1
- {libcaes-20240413 → libcaes-20251121}/common/system_string.h +1 -1
- {libcaes-20240413 → libcaes-20251121}/common/types.h +1 -1
- {libcaes-20240413 → libcaes-20251121}/common/types.h.in +1 -1
- {libcaes-20240413 → libcaes-20251121}/common/wide_string.h +1 -1
- {libcaes-20240413 → libcaes-20251121}/compile +29 -13
- {libcaes-20240413 → libcaes-20251121}/config.guess +49 -8
- {libcaes-20240413 → libcaes-20251121}/config.sub +682 -235
- {libcaes-20240413 → libcaes-20251121}/configure +5298 -2907
- {libcaes-20240413 → libcaes-20251121}/configure.ac +13 -13
- {libcaes-20240413 → libcaes-20251121}/depcomp +10 -9
- libcaes-20251121/dpkg/changelog +5 -0
- {libcaes-20240413 → libcaes-20251121}/dpkg/copyright +1 -1
- {libcaes-20240413 → libcaes-20251121}/include/Makefile.in +20 -9
- {libcaes-20240413 → libcaes-20251121}/include/libcaes/definitions.h +3 -3
- {libcaes-20240413 → libcaes-20251121}/include/libcaes/definitions.h.in +1 -1
- {libcaes-20240413 → libcaes-20251121}/include/libcaes/error.h +1 -1
- {libcaes-20240413 → libcaes-20251121}/include/libcaes/extern.h +1 -1
- {libcaes-20240413 → libcaes-20251121}/include/libcaes/features.h +1 -1
- {libcaes-20240413 → libcaes-20251121}/include/libcaes/features.h.in +1 -1
- {libcaes-20240413 → libcaes-20251121}/include/libcaes/types.h +1 -1
- {libcaes-20240413 → libcaes-20251121}/include/libcaes/types.h.in +1 -1
- {libcaes-20240413 → libcaes-20251121}/include/libcaes.h +1 -1
- {libcaes-20240413 → libcaes-20251121}/include/libcaes.h.in +1 -1
- {libcaes-20240413 → libcaes-20251121}/install-sh +9 -9
- {libcaes-20240413 → libcaes-20251121}/libcaes/Makefile.in +26 -17
- {libcaes-20240413 → libcaes-20251121}/libcaes/libcaes.c +1 -1
- {libcaes-20240413 → libcaes-20251121}/libcaes/libcaes.rc +3 -3
- {libcaes-20240413 → libcaes-20251121}/libcaes/libcaes.rc.in +1 -1
- {libcaes-20240413 → libcaes-20251121}/libcaes/libcaes_context.c +1 -1
- {libcaes-20240413 → libcaes-20251121}/libcaes/libcaes_context.h +1 -1
- {libcaes-20240413 → libcaes-20251121}/libcaes/libcaes_definitions.h +5 -5
- {libcaes-20240413 → libcaes-20251121}/libcaes/libcaes_definitions.h.in +3 -3
- {libcaes-20240413 → libcaes-20251121}/libcaes/libcaes_error.c +1 -1
- {libcaes-20240413 → libcaes-20251121}/libcaes/libcaes_error.h +1 -1
- {libcaes-20240413 → libcaes-20251121}/libcaes/libcaes_extern.h +1 -1
- {libcaes-20240413 → libcaes-20251121}/libcaes/libcaes_libcerror.h +1 -1
- {libcaes-20240413 → libcaes-20251121}/libcaes/libcaes_support.c +1 -1
- {libcaes-20240413 → libcaes-20251121}/libcaes/libcaes_support.h +1 -1
- {libcaes-20240413 → libcaes-20251121}/libcaes/libcaes_tweaked_context.c +1 -1
- {libcaes-20240413 → libcaes-20251121}/libcaes/libcaes_tweaked_context.h +1 -1
- {libcaes-20240413 → libcaes-20251121}/libcaes/libcaes_types.h +1 -1
- {libcaes-20240413 → libcaes-20251121}/libcaes/libcaes_unused.h +1 -1
- {libcaes-20240413 → libcaes-20251121}/libcaes.spec +2 -2
- {libcaes-20240413 → libcaes-20251121}/libcerror/Makefile.am +0 -1
- {libcaes-20240413 → libcaes-20251121}/libcerror/Makefile.in +23 -14
- {libcaes-20240413 → libcaes-20251121}/ltmain.sh +410 -322
- {libcaes-20240413 → libcaes-20251121}/m4/common.m4 +135 -79
- {libcaes-20240413 → libcaes-20251121}/m4/libcerror.m4 +17 -68
- {libcaes-20240413 → libcaes-20251121}/m4/libtool.m4 +275 -187
- {libcaes-20240413 → libcaes-20251121}/m4/ltoptions.m4 +68 -38
- {libcaes-20240413 → libcaes-20251121}/m4/ltsugar.m4 +1 -1
- {libcaes-20240413 → libcaes-20251121}/m4/ltversion.m4 +6 -6
- {libcaes-20240413 → libcaes-20251121}/m4/lt~obsolete.m4 +1 -1
- {libcaes-20240413 → libcaes-20251121}/m4/python.m4 +6 -4
- {libcaes-20240413 → libcaes-20251121}/manuals/Makefile.in +20 -9
- {libcaes-20240413 → libcaes-20251121}/manuals/libcaes.3 +1 -1
- {libcaes-20240413 → libcaes-20251121}/missing +50 -29
- {libcaes-20240413 → libcaes-20251121}/msvscpp/Makefile.in +17 -5
- {libcaes-20240413 → libcaes-20251121}/ossfuzz/Makefile.in +23 -16
- {libcaes-20240413 → libcaes-20251121}/ossfuzz/crypt_cbc_fuzzer.cc +1 -1
- {libcaes-20240413 → libcaes-20251121}/ossfuzz/crypt_ccm_fuzzer.cc +1 -1
- {libcaes-20240413 → libcaes-20251121}/ossfuzz/crypt_ecb_fuzzer.cc +1 -1
- {libcaes-20240413 → libcaes-20251121}/ossfuzz/crypt_xts_fuzzer.cc +1 -1
- {libcaes-20240413 → libcaes-20251121}/ossfuzz/ossfuzz_libcaes.h +1 -1
- {libcaes-20240413 → libcaes-20251121}/pycaes/Makefile.in +26 -17
- {libcaes-20240413 → libcaes-20251121}/pycaes/pycaes.c +1 -1
- {libcaes-20240413 → libcaes-20251121}/pycaes/pycaes.h +1 -1
- {libcaes-20240413 → libcaes-20251121}/pycaes/pycaes_context.c +1 -1
- {libcaes-20240413 → libcaes-20251121}/pycaes/pycaes_context.h +1 -1
- {libcaes-20240413 → libcaes-20251121}/pycaes/pycaes_crypt.c +1 -1
- {libcaes-20240413 → libcaes-20251121}/pycaes/pycaes_crypt.h +1 -1
- {libcaes-20240413 → libcaes-20251121}/pycaes/pycaes_crypt_modes.c +1 -1
- {libcaes-20240413 → libcaes-20251121}/pycaes/pycaes_crypt_modes.h +1 -1
- {libcaes-20240413 → libcaes-20251121}/pycaes/pycaes_error.c +1 -1
- {libcaes-20240413 → libcaes-20251121}/pycaes/pycaes_error.h +1 -1
- {libcaes-20240413 → libcaes-20251121}/pycaes/pycaes_libcaes.h +1 -1
- {libcaes-20240413 → libcaes-20251121}/pycaes/pycaes_libcerror.h +1 -1
- {libcaes-20240413 → libcaes-20251121}/pycaes/pycaes_python.h +1 -1
- {libcaes-20240413 → libcaes-20251121}/pycaes/pycaes_tweaked_context.c +1 -1
- {libcaes-20240413 → libcaes-20251121}/pycaes/pycaes_tweaked_context.h +1 -1
- {libcaes-20240413 → libcaes-20251121}/pycaes/pycaes_unused.h +1 -1
- {libcaes-20240413 → libcaes-20251121}/setup.cfg +3 -3
- {libcaes-20240413 → libcaes-20251121}/setup.cfg.in +2 -2
- {libcaes-20240413 → libcaes-20251121}/setup.py +2 -2
- {libcaes-20240413 → libcaes-20251121}/test-driver +13 -6
- {libcaes-20240413 → libcaes-20251121}/tests/Makefile.in +69 -32
- {libcaes-20240413 → libcaes-20251121}/tests/caes_test_context.c +1 -1
- {libcaes-20240413 → libcaes-20251121}/tests/caes_test_crypt_cbc.c +1 -1
- {libcaes-20240413 → libcaes-20251121}/tests/caes_test_crypt_ccm.c +1 -1
- {libcaes-20240413 → libcaes-20251121}/tests/caes_test_crypt_xts.c +1 -1
- {libcaes-20240413 → libcaes-20251121}/tests/caes_test_error.c +1 -1
- {libcaes-20240413 → libcaes-20251121}/tests/caes_test_libcaes.h +1 -1
- {libcaes-20240413 → libcaes-20251121}/tests/caes_test_libcerror.h +1 -1
- {libcaes-20240413 → libcaes-20251121}/tests/caes_test_macros.h +1 -1
- {libcaes-20240413 → libcaes-20251121}/tests/caes_test_memory.c +1 -1
- {libcaes-20240413 → libcaes-20251121}/tests/caes_test_memory.h +1 -1
- {libcaes-20240413 → libcaes-20251121}/tests/caes_test_support.c +1 -1
- {libcaes-20240413 → libcaes-20251121}/tests/caes_test_tweaked_context.c +1 -1
- {libcaes-20240413 → libcaes-20251121}/tests/caes_test_unused.h +1 -1
- {libcaes-20240413 → libcaes-20251121}/tests/pycaes_test_crypt_cbc.py +1 -1
- {libcaes-20240413 → libcaes-20251121}/tests/pycaes_test_crypt_ccm.py +1 -1
- {libcaes-20240413 → libcaes-20251121}/tests/pycaes_test_crypt_ecb.py +1 -1
- {libcaes-20240413 → libcaes-20251121}/tests/pycaes_test_crypt_xts.py +1 -1
- {libcaes-20240413 → libcaes-20251121}/tests/pycaes_test_support.py +1 -1
- {libcaes-20240413 → libcaes-20251121}/tests/test_python_module.sh +26 -7
- libcaes-20240413/INSTALL +0 -368
- libcaes-20240413/dpkg/changelog +0 -5
- {libcaes-20240413 → libcaes-20251121}/ABOUT-NLS +0 -0
- {libcaes-20240413 → libcaes-20251121}/COPYING +0 -0
- {libcaes-20240413 → libcaes-20251121}/COPYING.LESSER +0 -0
- {libcaes-20240413 → libcaes-20251121}/ChangeLog +0 -0
- {libcaes-20240413 → libcaes-20251121}/Makefile.am +0 -0
- {libcaes-20240413 → libcaes-20251121}/NEWS +0 -0
- {libcaes-20240413 → libcaes-20251121}/README +0 -0
- {libcaes-20240413 → libcaes-20251121}/common/Makefile.am +0 -0
- {libcaes-20240413 → libcaes-20251121}/config.rpath +0 -0
- {libcaes-20240413 → libcaes-20251121}/dpkg/changelog.in +0 -0
- {libcaes-20240413 → libcaes-20251121}/dpkg/compat +0 -0
- {libcaes-20240413 → libcaes-20251121}/dpkg/control +0 -0
- {libcaes-20240413 → libcaes-20251121}/dpkg/libcaes-dev.install +0 -0
- {libcaes-20240413 → libcaes-20251121}/dpkg/libcaes-python3.install +0 -0
- {libcaes-20240413 → libcaes-20251121}/dpkg/libcaes.install +0 -0
- {libcaes-20240413 → libcaes-20251121}/dpkg/rules +0 -0
- {libcaes-20240413 → libcaes-20251121}/dpkg/source/format +0 -0
- {libcaes-20240413 → libcaes-20251121}/include/Makefile.am +0 -0
- {libcaes-20240413 → libcaes-20251121}/libcaes/Makefile.am +0 -0
- {libcaes-20240413 → libcaes-20251121}/libcaes.pc.in +0 -0
- {libcaes-20240413 → libcaes-20251121}/libcaes.spec.in +0 -0
- {libcaes-20240413 → libcaes-20251121}/libcerror/libcerror_definitions.h +0 -0
- {libcaes-20240413 → libcaes-20251121}/libcerror/libcerror_error.c +0 -0
- {libcaes-20240413 → libcaes-20251121}/libcerror/libcerror_error.h +0 -0
- {libcaes-20240413 → libcaes-20251121}/libcerror/libcerror_extern.h +0 -0
- {libcaes-20240413 → libcaes-20251121}/libcerror/libcerror_support.c +0 -0
- {libcaes-20240413 → libcaes-20251121}/libcerror/libcerror_support.h +0 -0
- {libcaes-20240413 → libcaes-20251121}/libcerror/libcerror_system.c +0 -0
- {libcaes-20240413 → libcaes-20251121}/libcerror/libcerror_system.h +0 -0
- {libcaes-20240413 → libcaes-20251121}/libcerror/libcerror_types.h +0 -0
- {libcaes-20240413 → libcaes-20251121}/libcerror/libcerror_unused.h +0 -0
- {libcaes-20240413 → libcaes-20251121}/m4/gettext.m4 +0 -0
- {libcaes-20240413 → libcaes-20251121}/m4/host-cpu-c-abi.m4 +0 -0
- {libcaes-20240413 → libcaes-20251121}/m4/iconv.m4 +0 -0
- {libcaes-20240413 → libcaes-20251121}/m4/intlmacosx.m4 +0 -0
- {libcaes-20240413 → libcaes-20251121}/m4/lib-ld.m4 +0 -0
- {libcaes-20240413 → libcaes-20251121}/m4/lib-link.m4 +0 -0
- {libcaes-20240413 → libcaes-20251121}/m4/lib-prefix.m4 +0 -0
- {libcaes-20240413 → libcaes-20251121}/m4/libcrypto.m4 +0 -0
- {libcaes-20240413 → libcaes-20251121}/m4/nls.m4 +0 -0
- {libcaes-20240413 → libcaes-20251121}/m4/po.m4 +0 -0
- {libcaes-20240413 → libcaes-20251121}/m4/progtest.m4 +0 -0
- {libcaes-20240413 → libcaes-20251121}/m4/tests.m4 +0 -0
- {libcaes-20240413 → libcaes-20251121}/m4/types.m4 +0 -0
- {libcaes-20240413 → libcaes-20251121}/manuals/Makefile.am +0 -0
- {libcaes-20240413 → libcaes-20251121}/msvscpp/Makefile.am +0 -0
- {libcaes-20240413 → libcaes-20251121}/msvscpp/caes_test_context/caes_test_context.vcproj +0 -0
- {libcaes-20240413 → libcaes-20251121}/msvscpp/caes_test_crypt_cbc/caes_test_crypt_cbc.vcproj +0 -0
- {libcaes-20240413 → libcaes-20251121}/msvscpp/caes_test_crypt_ccm/caes_test_crypt_ccm.vcproj +0 -0
- {libcaes-20240413 → libcaes-20251121}/msvscpp/caes_test_crypt_xts/caes_test_crypt_xts.vcproj +0 -0
- {libcaes-20240413 → libcaes-20251121}/msvscpp/caes_test_error/caes_test_error.vcproj +0 -0
- {libcaes-20240413 → libcaes-20251121}/msvscpp/caes_test_support/caes_test_support.vcproj +0 -0
- {libcaes-20240413 → libcaes-20251121}/msvscpp/caes_test_tweaked_context/caes_test_tweaked_context.vcproj +0 -0
- {libcaes-20240413 → libcaes-20251121}/msvscpp/libcaes/libcaes.vcproj +0 -0
- {libcaes-20240413 → libcaes-20251121}/msvscpp/libcaes.sln +0 -0
- {libcaes-20240413 → libcaes-20251121}/msvscpp/libcerror/libcerror.vcproj +0 -0
- {libcaes-20240413 → libcaes-20251121}/msvscpp/pycaes/pycaes.vcproj +0 -0
- {libcaes-20240413 → libcaes-20251121}/ossfuzz/Makefile.am +0 -0
- {libcaes-20240413 → libcaes-20251121}/po/ChangeLog +0 -0
- {libcaes-20240413 → libcaes-20251121}/po/Makefile.in.in +0 -0
- {libcaes-20240413 → libcaes-20251121}/po/Makevars +0 -0
- {libcaes-20240413 → libcaes-20251121}/po/Makevars.in +0 -0
- {libcaes-20240413 → libcaes-20251121}/po/POTFILES.in +0 -0
- {libcaes-20240413 → libcaes-20251121}/po/Rules-quot +0 -0
- {libcaes-20240413 → libcaes-20251121}/po/boldquot.sed +0 -0
- {libcaes-20240413 → libcaes-20251121}/po/en@boldquot.header +0 -0
- {libcaes-20240413 → libcaes-20251121}/po/en@quot.header +0 -0
- {libcaes-20240413 → libcaes-20251121}/po/insert-header.sin +0 -0
- {libcaes-20240413 → libcaes-20251121}/po/quot.sed +0 -0
- {libcaes-20240413 → libcaes-20251121}/po/remove-potcdate.sin +0 -0
- {libcaes-20240413 → libcaes-20251121}/pycaes/Makefile.am +0 -0
- {libcaes-20240413 → libcaes-20251121}/pyproject.toml +0 -0
- {libcaes-20240413 → libcaes-20251121}/tests/Makefile.am +0 -0
- {libcaes-20240413 → libcaes-20251121}/tests/test_library.sh +0 -0
- {libcaes-20240413 → libcaes-20251121}/tests/test_manpage.sh +0 -0
- {libcaes-20240413 → libcaes-20251121}/tests/test_runner.sh +0 -0
libcaes-20251121/INSTALL
ADDED
|
@@ -0,0 +1,380 @@
|
|
|
1
|
+
Installation Instructions
|
|
2
|
+
*************************
|
|
3
|
+
|
|
4
|
+
Basic Installation
|
|
5
|
+
==================
|
|
6
|
+
|
|
7
|
+
The following shell commands:
|
|
8
|
+
|
|
9
|
+
test -f configure || ./bootstrap
|
|
10
|
+
./configure
|
|
11
|
+
make
|
|
12
|
+
make install
|
|
13
|
+
|
|
14
|
+
should configure, build, and install this package. The first line,
|
|
15
|
+
which bootstraps, is intended for developers; when building from
|
|
16
|
+
distribution tarballs it does nothing and can be skipped. A package
|
|
17
|
+
might name the bootstrapping script differently; if the name is
|
|
18
|
+
‘autogen.sh’, for example, the first line should say ‘./autogen.sh’
|
|
19
|
+
instead of ‘./bootstrap’.
|
|
20
|
+
|
|
21
|
+
The following more-detailed instructions are generic; see the
|
|
22
|
+
‘README’ file for instructions specific to this package. Some packages
|
|
23
|
+
provide this ‘INSTALL’ file but do not implement all of the features
|
|
24
|
+
documented below. The lack of an optional feature in a given package is
|
|
25
|
+
not necessarily a bug. More recommendations for GNU packages can be
|
|
26
|
+
found in the GNU Coding Standards.
|
|
27
|
+
|
|
28
|
+
Many packages have scripts meant for developers instead of ordinary
|
|
29
|
+
builders, as they may use developer tools that are less commonly
|
|
30
|
+
installed, or they may access the network, which has privacy
|
|
31
|
+
implications. These scripts attempt to bootstrap by building the
|
|
32
|
+
‘configure’ script and related files, possibly using developer tools or
|
|
33
|
+
the network. Because the output of bootstrapping is system-independent,
|
|
34
|
+
it is normally run by a package developer so that its output can be put
|
|
35
|
+
into the distribution tarball and ordinary builders and users need not
|
|
36
|
+
bootstrap. Some packages have commands like ‘./autopull.sh’ and
|
|
37
|
+
‘./autogen.sh’ that you can run instead of ‘./bootstrap’, for more
|
|
38
|
+
fine-grained control over bootstrapping.
|
|
39
|
+
|
|
40
|
+
The ‘configure’ script attempts to guess correct values for various
|
|
41
|
+
system-dependent variables used during compilation. It uses those
|
|
42
|
+
values to create a ‘Makefile’ in each directory of the package. It may
|
|
43
|
+
also create one or more ‘.h’ files containing system-dependent
|
|
44
|
+
definitions. Finally, it creates a script ‘config.status’ that you can
|
|
45
|
+
run in the future to recreate the current configuration, and a file
|
|
46
|
+
‘config.log’ containing output useful for debugging ‘configure’.
|
|
47
|
+
|
|
48
|
+
It can also use an optional file (typically called ‘config.cache’ and
|
|
49
|
+
enabled with ‘--cache-file=config.cache’ or simply ‘-C’) that saves the
|
|
50
|
+
results of its tests to speed up reconfiguring. Caching is disabled by
|
|
51
|
+
default to prevent problems with accidental use of stale cache files.
|
|
52
|
+
|
|
53
|
+
If you need to do unusual things to compile the package, please try
|
|
54
|
+
to figure out how ‘configure’ could check whether to do them, and mail
|
|
55
|
+
diffs or instructions to the address given in the ‘README’ so they can
|
|
56
|
+
be considered for the next release. If you are using the cache, and at
|
|
57
|
+
some point ‘config.cache’ contains results you don’t want to keep, you
|
|
58
|
+
may remove or edit it.
|
|
59
|
+
|
|
60
|
+
The ‘autoconf’ program generates ‘configure’ from the file
|
|
61
|
+
‘configure.ac’. Normally you should edit ‘configure.ac’ instead of
|
|
62
|
+
editing ‘configure’ directly.
|
|
63
|
+
|
|
64
|
+
The simplest way to compile this package is:
|
|
65
|
+
|
|
66
|
+
1. ‘cd’ to the directory containing the package’s source code.
|
|
67
|
+
|
|
68
|
+
2. If this is a developer checkout and file ‘configure’ does not yet
|
|
69
|
+
exist, run the bootstrapping script (typically ‘./bootstrap’ or
|
|
70
|
+
‘./autogen.sh’) to bootstrap and create the file. You may need
|
|
71
|
+
special developer tools and network access to bootstrap, and the
|
|
72
|
+
network access may have privacy implications.
|
|
73
|
+
|
|
74
|
+
3. Type ‘./configure’ to configure the package for your system. This
|
|
75
|
+
might take a while. While running, ‘configure’ prints messages
|
|
76
|
+
telling which features it is checking for.
|
|
77
|
+
|
|
78
|
+
4. Type ‘make’ to compile the package.
|
|
79
|
+
|
|
80
|
+
5. Optionally, type ‘make check’ to run any self-tests that come with
|
|
81
|
+
the package, generally using the just-built uninstalled binaries.
|
|
82
|
+
|
|
83
|
+
6. Type ‘make install’ to install the programs and any data files and
|
|
84
|
+
documentation. When installing into a prefix owned by root, it is
|
|
85
|
+
recommended that the package be configured and built as a regular
|
|
86
|
+
user, and only the ‘make install’ phase executed with root
|
|
87
|
+
privileges.
|
|
88
|
+
|
|
89
|
+
7. Optionally, type ‘make installcheck’ to repeat any self-tests, but
|
|
90
|
+
this time using the binaries in their final installed location.
|
|
91
|
+
This target does not install anything. Running this target as a
|
|
92
|
+
regular user, particularly if the prior ‘make install’ required
|
|
93
|
+
root privileges, verifies that the installation completed
|
|
94
|
+
correctly.
|
|
95
|
+
|
|
96
|
+
8. You can remove the program binaries and object files from the
|
|
97
|
+
source code directory by typing ‘make clean’. To also remove the
|
|
98
|
+
files that ‘configure’ created (so you can compile the package for
|
|
99
|
+
a different kind of computer), type ‘make distclean’. There is
|
|
100
|
+
also a ‘make maintainer-clean’ target, but that is intended mainly
|
|
101
|
+
for the package’s developers. If you use it, you may have to
|
|
102
|
+
bootstrap again.
|
|
103
|
+
|
|
104
|
+
9. If the package follows the GNU Coding Standards, you can type ‘make
|
|
105
|
+
uninstall’ to remove the installed files.
|
|
106
|
+
|
|
107
|
+
Installation Prerequisites
|
|
108
|
+
==========================
|
|
109
|
+
|
|
110
|
+
Installation requires a POSIX-like environment with a shell and at
|
|
111
|
+
least the following standard utilities:
|
|
112
|
+
|
|
113
|
+
awk cat cp diff echo expr false ls mkdir mv printf pwd rm rmdir sed
|
|
114
|
+
sort test tr
|
|
115
|
+
|
|
116
|
+
This package’s installation may need other standard utilities such as
|
|
117
|
+
‘grep’, ‘make’, ‘sleep’ and ‘touch’, along with compilers like ‘gcc’.
|
|
118
|
+
|
|
119
|
+
Compilers and Options
|
|
120
|
+
=====================
|
|
121
|
+
|
|
122
|
+
Some systems require unusual options for compilation or linking that
|
|
123
|
+
the ‘configure’ script does not know about. Run ‘./configure --help’
|
|
124
|
+
for details on some of the pertinent environment variables.
|
|
125
|
+
|
|
126
|
+
You can give ‘configure’ initial values for configuration parameters
|
|
127
|
+
by setting variables in the command line or in the environment. Here is
|
|
128
|
+
an example:
|
|
129
|
+
|
|
130
|
+
./configure CC=gcc CFLAGS=-g LIBS=-lposix
|
|
131
|
+
|
|
132
|
+
See “Defining Variables” for more details.
|
|
133
|
+
|
|
134
|
+
Compiling For Multiple Architectures
|
|
135
|
+
====================================
|
|
136
|
+
|
|
137
|
+
You can compile the package for more than one kind of computer at the
|
|
138
|
+
same time, by placing the object files for each system in their own
|
|
139
|
+
directory. To do this, you can use GNU ‘make’. ‘cd’ to the directory
|
|
140
|
+
where you want the object files and executables to go and run the
|
|
141
|
+
‘configure’ script. ‘configure’ automatically checks for the source
|
|
142
|
+
code in the directory that ‘configure’ is in and in ‘..’. This is known
|
|
143
|
+
as a “VPATH” build.
|
|
144
|
+
|
|
145
|
+
With a non-GNU ‘make’, it is safer to compile the package for one
|
|
146
|
+
system at a time in the source code directory. After you have installed
|
|
147
|
+
the package for one system, use ‘make distclean’ before reconfiguring
|
|
148
|
+
for another system.
|
|
149
|
+
|
|
150
|
+
Some platforms, notably macOS, support “fat” or “universal” binaries,
|
|
151
|
+
where a single binary can execute on different architectures. On these
|
|
152
|
+
platforms you can configure and compile just once, with options specific
|
|
153
|
+
to that platform.
|
|
154
|
+
|
|
155
|
+
Installation Names
|
|
156
|
+
==================
|
|
157
|
+
|
|
158
|
+
By default, ‘make install’ installs the package’s commands under
|
|
159
|
+
‘/usr/local/bin’, include files under ‘/usr/local/include’, etc. You
|
|
160
|
+
can specify an installation prefix other than ‘/usr/local’ by giving
|
|
161
|
+
‘configure’ the option ‘--prefix=PREFIX’, where PREFIX must be an
|
|
162
|
+
absolute file name.
|
|
163
|
+
|
|
164
|
+
You can specify separate installation prefixes for
|
|
165
|
+
architecture-specific files and architecture-independent files. If you
|
|
166
|
+
pass the option ‘--exec-prefix=PREFIX’ to ‘configure’, the package uses
|
|
167
|
+
PREFIX as the prefix for installing programs and libraries.
|
|
168
|
+
Documentation and other data files still use the regular prefix.
|
|
169
|
+
|
|
170
|
+
In addition, if you use an unusual directory layout you can give
|
|
171
|
+
options like ‘--bindir=DIR’ to specify different values for particular
|
|
172
|
+
kinds of files. Run ‘configure --help’ for a list of the directories
|
|
173
|
+
you can set and what kinds of files go in them. In general, the default
|
|
174
|
+
for these options is expressed in terms of ‘${prefix}’, so that
|
|
175
|
+
specifying just ‘--prefix’ will affect all of the other directory
|
|
176
|
+
specifications that were not explicitly provided.
|
|
177
|
+
|
|
178
|
+
The most portable way to affect installation locations is to pass the
|
|
179
|
+
correct locations to ‘configure’; however, many packages provide one or
|
|
180
|
+
both of the following shortcuts of passing variable assignments to the
|
|
181
|
+
‘make install’ command line to change installation locations without
|
|
182
|
+
having to reconfigure or recompile.
|
|
183
|
+
|
|
184
|
+
The first method involves providing an override variable for each
|
|
185
|
+
affected directory. For example, ‘make install
|
|
186
|
+
prefix=/alternate/directory’ will choose an alternate location for all
|
|
187
|
+
directory configuration variables that were expressed in terms of
|
|
188
|
+
‘${prefix}’. Any directories that were specified during ‘configure’,
|
|
189
|
+
but not in terms of ‘${prefix}’, must each be overridden at install time
|
|
190
|
+
for the entire installation to be relocated. The approach of makefile
|
|
191
|
+
variable overrides for each directory variable is required by the GNU
|
|
192
|
+
Coding Standards, and ideally causes no recompilation. However, some
|
|
193
|
+
platforms have known limitations with the semantics of shared libraries
|
|
194
|
+
that end up requiring recompilation when using this method, particularly
|
|
195
|
+
noticeable in packages that use GNU Libtool.
|
|
196
|
+
|
|
197
|
+
The second method involves providing the ‘DESTDIR’ variable. For
|
|
198
|
+
example, ‘make install DESTDIR=/alternate/directory’ will prepend
|
|
199
|
+
‘/alternate/directory’ before all installation names. The approach of
|
|
200
|
+
‘DESTDIR’ overrides is not required by the GNU Coding Standards, and
|
|
201
|
+
does not work on platforms that have drive letters. On the other hand,
|
|
202
|
+
it does better at avoiding recompilation issues, and works well even
|
|
203
|
+
when some directory options were not specified in terms of ‘${prefix}’
|
|
204
|
+
at ‘configure’ time.
|
|
205
|
+
|
|
206
|
+
Optional Features
|
|
207
|
+
=================
|
|
208
|
+
|
|
209
|
+
If the package supports it, you can cause programs to be installed
|
|
210
|
+
with an extra prefix or suffix on their names by giving ‘configure’ the
|
|
211
|
+
option ‘--program-prefix=PREFIX’ or ‘--program-suffix=SUFFIX’.
|
|
212
|
+
|
|
213
|
+
Some packages pay attention to ‘--enable-FEATURE’ and
|
|
214
|
+
‘--disable-FEATURE’ options to ‘configure’, where FEATURE indicates an
|
|
215
|
+
optional part of the package. They may also pay attention to
|
|
216
|
+
‘--with-PACKAGE’ and ‘--without-PACKAGE’ options, where PACKAGE is
|
|
217
|
+
something like ‘gnu-ld’. ‘./configure --help’ should mention the
|
|
218
|
+
‘--enable-...’ and ‘--with-...’ options that the package recognizes.
|
|
219
|
+
|
|
220
|
+
Some packages offer the ability to configure how verbose the
|
|
221
|
+
execution of ‘make’ will be. For these packages, running ‘./configure
|
|
222
|
+
--enable-silent-rules’ sets the default to minimal output, which can be
|
|
223
|
+
overridden with ‘make V=1’; while running ‘./configure
|
|
224
|
+
--disable-silent-rules’ sets the default to verbose, which can be
|
|
225
|
+
overridden with ‘make V=0’.
|
|
226
|
+
|
|
227
|
+
Specifying a System Type
|
|
228
|
+
========================
|
|
229
|
+
|
|
230
|
+
By default ‘configure’ builds for the current system. To create
|
|
231
|
+
binaries that can run on a different system type, specify a
|
|
232
|
+
‘--host=TYPE’ option along with compiler variables that specify how to
|
|
233
|
+
generate object code for TYPE. For example, to create binaries intended
|
|
234
|
+
to run on a 64-bit ARM processor:
|
|
235
|
+
|
|
236
|
+
./configure --host=aarch64-linux-gnu \
|
|
237
|
+
CC=aarch64-linux-gnu-gcc \
|
|
238
|
+
CXX=aarch64-linux-gnu-g++
|
|
239
|
+
|
|
240
|
+
If done on a machine that can execute these binaries (e.g., via
|
|
241
|
+
‘qemu-aarch64’, ‘$QEMU_LD_PREFIX’, and Linux’s ‘binfmt_misc’
|
|
242
|
+
capability), the build behaves like a native build. Otherwise it is a
|
|
243
|
+
cross-build: ‘configure’ will make cross-compilation guesses instead of
|
|
244
|
+
running test programs, and ‘make check’ will not work.
|
|
245
|
+
|
|
246
|
+
A system type can either be a short name like ‘mingw64’, or a
|
|
247
|
+
canonical name like ‘x86_64-pc-linux-gnu’. Canonical names have the
|
|
248
|
+
form CPU-COMPANY-SYSTEM where SYSTEM is either OS or KERNEL-OS. To
|
|
249
|
+
canonicalize and validate a system type, you can run the command
|
|
250
|
+
‘config.sub’, which is often squirreled away in a subdirectory like
|
|
251
|
+
‘build-aux’. For example:
|
|
252
|
+
|
|
253
|
+
$ build-aux/config.sub arm64-linux
|
|
254
|
+
aarch64-unknown-linux-gnu
|
|
255
|
+
$ build-aux/config.sub riscv-lnx
|
|
256
|
+
Invalid configuration 'riscv-lnx': OS 'lnx' not recognized
|
|
257
|
+
|
|
258
|
+
You can look at the ‘config.sub’ file to see which types are recognized.
|
|
259
|
+
If the file is absent, this package does not need the system type.
|
|
260
|
+
|
|
261
|
+
If ‘configure’ fails with the diagnostic “cannot guess build type”.
|
|
262
|
+
‘config.sub’ did not recognize your system’s type. In this case, first
|
|
263
|
+
fetch the newest versions of these files from the GNU config package
|
|
264
|
+
(https://savannah.gnu.org/projects/config). If that fixes things,
|
|
265
|
+
please report it to the maintainers of the package containing
|
|
266
|
+
‘configure’. Otherwise, you can try the configure option ‘--build=TYPE’
|
|
267
|
+
where TYPE comes close to your system type; also, please report the
|
|
268
|
+
problem to <config-patches@gnu.org>.
|
|
269
|
+
|
|
270
|
+
For more details about configuring system types, see the Autoconf
|
|
271
|
+
documentation.
|
|
272
|
+
|
|
273
|
+
Sharing Defaults
|
|
274
|
+
================
|
|
275
|
+
|
|
276
|
+
If you want to set default values for ‘configure’ scripts to share,
|
|
277
|
+
you can create a site shell script called ‘config.site’ that gives
|
|
278
|
+
default values for variables like ‘CC’, ‘cache_file’, and ‘prefix’.
|
|
279
|
+
‘configure’ looks for ‘PREFIX/share/config.site’ if it exists, then
|
|
280
|
+
‘PREFIX/etc/config.site’ if it exists. Or, you can set the
|
|
281
|
+
‘CONFIG_SITE’ environment variable to the location of the site script.
|
|
282
|
+
A warning: not all ‘configure’ scripts look for a site script.
|
|
283
|
+
|
|
284
|
+
Defining Variables
|
|
285
|
+
==================
|
|
286
|
+
|
|
287
|
+
Variables not defined in a site shell script can be set in the
|
|
288
|
+
environment passed to ‘configure’. However, some packages may run
|
|
289
|
+
configure again during the build, and the customized values of these
|
|
290
|
+
variables may be lost. In order to avoid this problem, you should set
|
|
291
|
+
them in the ‘configure’ command line, using ‘VAR=value’. For example:
|
|
292
|
+
|
|
293
|
+
./configure CC=/usr/local2/bin/gcc
|
|
294
|
+
|
|
295
|
+
causes the specified ‘gcc’ to be used as the C compiler (unless it is
|
|
296
|
+
overridden in the site shell script).
|
|
297
|
+
|
|
298
|
+
Unfortunately, this technique does not work for ‘CONFIG_SHELL’ due to an
|
|
299
|
+
Autoconf limitation. Until the limitation is lifted, you can use this
|
|
300
|
+
workaround:
|
|
301
|
+
|
|
302
|
+
CONFIG_SHELL=/bin/bash ./configure CONFIG_SHELL=/bin/bash
|
|
303
|
+
|
|
304
|
+
‘configure’ Invocation
|
|
305
|
+
======================
|
|
306
|
+
|
|
307
|
+
‘configure’ recognizes the following options to control how it
|
|
308
|
+
operates.
|
|
309
|
+
|
|
310
|
+
‘--help’
|
|
311
|
+
‘-h’
|
|
312
|
+
Print a summary of all of the options to ‘configure’, and exit.
|
|
313
|
+
|
|
314
|
+
‘--help=short’
|
|
315
|
+
‘--help=recursive’
|
|
316
|
+
Print a summary of the options unique to this package’s
|
|
317
|
+
‘configure’, and exit. The ‘short’ variant lists options used only
|
|
318
|
+
in the top level, while the ‘recursive’ variant lists options also
|
|
319
|
+
present in any nested packages.
|
|
320
|
+
|
|
321
|
+
‘--version’
|
|
322
|
+
‘-V’
|
|
323
|
+
Print the version of Autoconf used to generate the ‘configure’
|
|
324
|
+
script, and exit.
|
|
325
|
+
|
|
326
|
+
‘--cache-file=FILE’
|
|
327
|
+
Enable the cache: use and save the results of the tests in FILE,
|
|
328
|
+
traditionally ‘config.cache’. FILE defaults to ‘/dev/null’ to
|
|
329
|
+
disable caching.
|
|
330
|
+
|
|
331
|
+
‘--config-cache’
|
|
332
|
+
‘-C’
|
|
333
|
+
Alias for ‘--cache-file=config.cache’.
|
|
334
|
+
|
|
335
|
+
‘--srcdir=DIR’
|
|
336
|
+
Look for the package’s source code in directory DIR. Usually
|
|
337
|
+
‘configure’ can determine that directory automatically.
|
|
338
|
+
|
|
339
|
+
‘--prefix=DIR’
|
|
340
|
+
Use DIR as the installation prefix. See “Installation Names” for
|
|
341
|
+
more details, including other options available for fine-tuning the
|
|
342
|
+
installation locations.
|
|
343
|
+
|
|
344
|
+
‘--host=TYPE’
|
|
345
|
+
Build binaries for system TYPE. See “Specifying a System Type”.
|
|
346
|
+
|
|
347
|
+
‘--enable-FEATURE’
|
|
348
|
+
‘--disable-FEATURE’
|
|
349
|
+
Enable or disable the optional FEATURE. See “Optional Features”.
|
|
350
|
+
|
|
351
|
+
‘--with-PACKAGE’
|
|
352
|
+
‘--without-PACKAGE’
|
|
353
|
+
Use or omit PACKAGE when building. See “Optional Features”.
|
|
354
|
+
|
|
355
|
+
‘--quiet’
|
|
356
|
+
‘--silent’
|
|
357
|
+
‘-q’
|
|
358
|
+
Do not print messages saying which checks are being made. To
|
|
359
|
+
suppress all normal output, redirect it to ‘/dev/null’ (any error
|
|
360
|
+
messages will still be shown).
|
|
361
|
+
|
|
362
|
+
‘--no-create’
|
|
363
|
+
‘-n’
|
|
364
|
+
Run the configure checks, but stop before creating any output
|
|
365
|
+
files.
|
|
366
|
+
|
|
367
|
+
‘configure’ also recognizes several environment variables, and accepts
|
|
368
|
+
some other, less widely useful, options. Run ‘configure --help’ for
|
|
369
|
+
more details.
|
|
370
|
+
|
|
371
|
+
Copyright notice
|
|
372
|
+
================
|
|
373
|
+
|
|
374
|
+
Copyright © 1994–1996, 1999–2002, 2004–2017, 2020–2025 Free Software
|
|
375
|
+
Foundation, Inc.
|
|
376
|
+
|
|
377
|
+
Copying and distribution of this file, with or without modification,
|
|
378
|
+
are permitted in any medium without royalty provided the copyright
|
|
379
|
+
notice and this notice are preserved. This file is offered as-is,
|
|
380
|
+
without warranty of any kind.
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
# Makefile.in generated by automake 1.
|
|
1
|
+
# Makefile.in generated by automake 1.18.1 from Makefile.am.
|
|
2
2
|
# @configure_input@
|
|
3
3
|
|
|
4
|
-
# Copyright (C) 1994-
|
|
4
|
+
# Copyright (C) 1994-2025 Free Software Foundation, Inc.
|
|
5
5
|
|
|
6
6
|
# This Makefile.in is free software; the Free Software Foundation
|
|
7
7
|
# gives unlimited permission to copy and/or distribute it,
|
|
@@ -70,6 +70,8 @@ am__make_running_with_option = \
|
|
|
70
70
|
test $$has_opt = yes
|
|
71
71
|
am__make_dryrun = (target_option=n; $(am__make_running_with_option))
|
|
72
72
|
am__make_keepgoing = (target_option=k; $(am__make_running_with_option))
|
|
73
|
+
am__rm_f = rm -f $(am__rm_f_notfound)
|
|
74
|
+
am__rm_rf = rm -rf $(am__rm_f_notfound)
|
|
73
75
|
pkgdatadir = $(datadir)/@PACKAGE@
|
|
74
76
|
pkgincludedir = $(includedir)/@PACKAGE@
|
|
75
77
|
pkglibdir = $(libdir)/@PACKAGE@
|
|
@@ -163,10 +165,9 @@ am__base_list = \
|
|
|
163
165
|
sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
|
|
164
166
|
sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
|
|
165
167
|
am__uninstall_files_from_dir = { \
|
|
166
|
-
test -
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
$(am__cd) "$$dir" && rm -f $$files; }; \
|
|
168
|
+
{ test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \
|
|
169
|
+
|| { echo " ( cd '$$dir' && rm -f" $$files ")"; \
|
|
170
|
+
$(am__cd) "$$dir" && echo $$files | $(am__xargs_n) 40 $(am__rm_f); }; \
|
|
170
171
|
}
|
|
171
172
|
am__installdirs = "$(DESTDIR)$(pkgconfigdir)"
|
|
172
173
|
DATA = $(pkgconfig_DATA)
|
|
@@ -211,8 +212,8 @@ distdir = $(PACKAGE)-$(VERSION)
|
|
|
211
212
|
top_distdir = $(distdir)
|
|
212
213
|
am__remove_distdir = \
|
|
213
214
|
if test -d "$(distdir)"; then \
|
|
214
|
-
find "$(distdir)" -type d ! -perm -
|
|
215
|
-
|
|
215
|
+
find "$(distdir)" -type d ! -perm -700 -exec chmod u+rwx {} ';' \
|
|
216
|
+
; rm -rf "$(distdir)" \
|
|
216
217
|
|| { sleep 5 && rm -rf "$(distdir)"; }; \
|
|
217
218
|
else :; fi
|
|
218
219
|
am__post_remove_distdir = $(am__remove_distdir)
|
|
@@ -242,14 +243,16 @@ am__relativize = \
|
|
|
242
243
|
done; \
|
|
243
244
|
reldir="$$dir2"
|
|
244
245
|
DIST_ARCHIVES = $(distdir).tar.gz
|
|
245
|
-
GZIP_ENV =
|
|
246
|
+
GZIP_ENV = -9
|
|
246
247
|
DIST_TARGETS = dist-gzip
|
|
247
248
|
# Exists only to be overridden by the user if desired.
|
|
248
249
|
AM_DISTCHECK_DVI_TARGET = dvi
|
|
249
250
|
distuninstallcheck_listfiles = find . -type f -print
|
|
250
251
|
am__distuninstallcheck_listfiles = $(distuninstallcheck_listfiles) \
|
|
251
252
|
| sed 's|^\./|$(prefix)/|' | grep -v '$(infodir)/dir$$'
|
|
252
|
-
distcleancheck_listfiles =
|
|
253
|
+
distcleancheck_listfiles = \
|
|
254
|
+
find . \( -type f -a \! \
|
|
255
|
+
\( -name .nfs* -o -name .smb* -o -name .__afs* \) \) -print
|
|
253
256
|
ACLOCAL = @ACLOCAL@
|
|
254
257
|
AMTAR = @AMTAR@
|
|
255
258
|
AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
|
|
@@ -388,8 +391,10 @@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
|
|
|
388
391
|
am__include = @am__include@
|
|
389
392
|
am__leading_dot = @am__leading_dot@
|
|
390
393
|
am__quote = @am__quote@
|
|
394
|
+
am__rm_f_notfound = @am__rm_f_notfound@
|
|
391
395
|
am__tar = @am__tar@
|
|
392
396
|
am__untar = @am__untar@
|
|
397
|
+
am__xargs_n = @am__xargs_n@
|
|
393
398
|
ax_libcerror_pc_libs_private = @ax_libcerror_pc_libs_private@
|
|
394
399
|
ax_libcerror_spec_build_requires = @ax_libcerror_spec_build_requires@
|
|
395
400
|
ax_libcerror_spec_requires = @ax_libcerror_spec_requires@
|
|
@@ -695,12 +700,13 @@ cscopelist-am: $(am__tagged_files)
|
|
|
695
700
|
distclean-tags:
|
|
696
701
|
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
|
|
697
702
|
-rm -f cscope.out cscope.in.out cscope.po.out cscope.files
|
|
703
|
+
|
|
698
704
|
distdir: $(BUILT_SOURCES)
|
|
699
705
|
$(MAKE) $(AM_MAKEFLAGS) distdir-am
|
|
700
706
|
|
|
701
707
|
distdir-am: $(DISTFILES)
|
|
702
708
|
$(am__remove_distdir)
|
|
703
|
-
|
|
709
|
+
$(AM_V_at)$(MKDIR_P) "$(distdir)"
|
|
704
710
|
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
|
705
711
|
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
|
706
712
|
list='$(DISTFILES)'; \
|
|
@@ -770,6 +776,10 @@ dist-bzip2: distdir
|
|
|
770
776
|
tardir=$(distdir) && $(am__tar) | BZIP2=$${BZIP2--9} bzip2 -c >$(distdir).tar.bz2
|
|
771
777
|
$(am__post_remove_distdir)
|
|
772
778
|
|
|
779
|
+
dist-bzip3: distdir
|
|
780
|
+
tardir=$(distdir) && $(am__tar) | bzip3 -c >$(distdir).tar.bz3
|
|
781
|
+
$(am__post_remove_distdir)
|
|
782
|
+
|
|
773
783
|
dist-lzip: distdir
|
|
774
784
|
tardir=$(distdir) && $(am__tar) | lzip -c $${LZIP_OPT--9} >$(distdir).tar.lz
|
|
775
785
|
$(am__post_remove_distdir)
|
|
@@ -811,9 +821,11 @@ dist dist-all:
|
|
|
811
821
|
distcheck: dist
|
|
812
822
|
case '$(DIST_ARCHIVES)' in \
|
|
813
823
|
*.tar.gz*) \
|
|
814
|
-
eval GZIP= gzip
|
|
824
|
+
eval GZIP= gzip -dc $(distdir).tar.gz | $(am__untar) ;;\
|
|
815
825
|
*.tar.bz2*) \
|
|
816
826
|
bzip2 -dc $(distdir).tar.bz2 | $(am__untar) ;;\
|
|
827
|
+
*.tar.bz3*) \
|
|
828
|
+
bzip3 -dc $(distdir).tar.bz3 | $(am__untar) ;;\
|
|
817
829
|
*.tar.lz*) \
|
|
818
830
|
lzip -dc $(distdir).tar.lz | $(am__untar) ;;\
|
|
819
831
|
*.tar.xz*) \
|
|
@@ -821,7 +833,7 @@ distcheck: dist
|
|
|
821
833
|
*.tar.Z*) \
|
|
822
834
|
uncompress -c $(distdir).tar.Z | $(am__untar) ;;\
|
|
823
835
|
*.shar.gz*) \
|
|
824
|
-
eval GZIP= gzip
|
|
836
|
+
eval GZIP= gzip -dc $(distdir).shar.gz | unshar ;;\
|
|
825
837
|
*.zip*) \
|
|
826
838
|
unzip $(distdir).zip ;;\
|
|
827
839
|
*.tar.zst*) \
|
|
@@ -924,9 +936,9 @@ mostlyclean-generic:
|
|
|
924
936
|
clean-generic:
|
|
925
937
|
|
|
926
938
|
distclean-generic:
|
|
927
|
-
|
|
928
|
-
-test . = "$(srcdir)" ||
|
|
929
|
-
|
|
939
|
+
-$(am__rm_f) $(CONFIG_CLEAN_FILES)
|
|
940
|
+
-test . = "$(srcdir)" || $(am__rm_f) $(CONFIG_CLEAN_VPATH_FILES)
|
|
941
|
+
-$(am__rm_f) $(DISTCLEANFILES)
|
|
930
942
|
|
|
931
943
|
maintainer-clean-generic:
|
|
932
944
|
@echo "This command is intended for maintainers to use"
|
|
@@ -1014,8 +1026,8 @@ uninstall-am: uninstall-pkgconfigDATA
|
|
|
1014
1026
|
.PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am \
|
|
1015
1027
|
am--refresh check check-am clean clean-cscope clean-generic \
|
|
1016
1028
|
clean-libtool cscope cscopelist-am ctags ctags-am dist \
|
|
1017
|
-
dist-all dist-bzip2 dist-gzip dist-lzip dist-shar
|
|
1018
|
-
dist-xz dist-zip dist-zstd distcheck distclean \
|
|
1029
|
+
dist-all dist-bzip2 dist-bzip3 dist-gzip dist-lzip dist-shar \
|
|
1030
|
+
dist-tarZ dist-xz dist-zip dist-zstd distcheck distclean \
|
|
1019
1031
|
distclean-generic distclean-libtool distclean-tags \
|
|
1020
1032
|
distcleancheck distdir distuninstallcheck dvi dvi-am html \
|
|
1021
1033
|
html-am info info-am install install-am install-data \
|
|
@@ -1046,3 +1058,10 @@ library:
|
|
|
1046
1058
|
# Tell versions [3.59,3.63) of GNU make to not export all variables.
|
|
1047
1059
|
# Otherwise a system limit (for SysV at least) may be exceeded.
|
|
1048
1060
|
.NOEXPORT:
|
|
1061
|
+
|
|
1062
|
+
# Tell GNU make to disable its built-in pattern rules.
|
|
1063
|
+
%:: %,v
|
|
1064
|
+
%:: RCS/%,v
|
|
1065
|
+
%:: RCS/%
|
|
1066
|
+
%:: s.%
|
|
1067
|
+
%:: SCCS/s.%
|
|
@@ -1,13 +1,16 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: libcaes-python
|
|
3
|
-
Version:
|
|
3
|
+
Version: 20251121
|
|
4
4
|
Summary: Python bindings module for libcaes
|
|
5
5
|
Author: Joachim Metz
|
|
6
6
|
Author-email: joachim.metz@gmail.com
|
|
7
7
|
License: GNU Lesser General Public License v3 or later (LGPLv3+)
|
|
8
8
|
Classifier: Development Status :: 3 - Alpha
|
|
9
9
|
Classifier: Programming Language :: Python
|
|
10
|
-
Requires-Python: >=3.
|
|
10
|
+
Requires-Python: >=3.10
|
|
11
11
|
Description-Content-Type: text/plain
|
|
12
|
+
License-File: COPYING
|
|
13
|
+
License-File: COPYING.LESSER
|
|
14
|
+
Dynamic: license-file
|
|
12
15
|
|
|
13
16
|
Python bindings module for libcaes
|