Zlib linux
Author: m | 2025-04-25
Usually, zlib comes preinstalled with most of the Amazon Linux images. But in case you get: bash: zlib: command not found then you need to install zlib on Amazon Linux 2. Prerequisites. Amazon Linux 2; sudo privileges; Install Zlib Linux dist: 3.10. .5.2.el7.x86_64 GNU/Linux (Redhat) I installed both zlib and zlib-devel using conda install -c anaconda zlib-devel-amzn2-aarch64 and conda install -c anaconda zlib.
Linux Zlib linux zlib - IDC
Triplet x64-linux...The following packages will be built and installed:azure-core-cpp[core,curl,http]:x64-linux -> 1.7.1curl[core,non-http,openssl,ssl]:x64-linux -> 7.84.0#1* openssl[core]:x64-linux -> 3.0.5#4* vcpkg-cmake[core]:x64-linux -> 2022-07-18* vcpkg-cmake-config[core]:x64-linux -> 2022-02-06#1* zlib[core]:x64-linux -> 1.2.12#1Additional packages (*) will be modified to complete this operation....Building and running main:cmake --build . && ./main[ 50%] Building CXX object CMakeFiles/main.dir/main.cpp.o[100%] Linking CXX executable main[100%] Built target mainlibcurl/7.82.0-DEV OpenSSL/3.0.2 zlib/1.2.122023-11-07T02:58:10.0215004ZWe can use ldd to list the shared libraries:ldd mainlinux-vdso.so.1 (0x00007ffc32bf1000)libstdc++.so.6 => /lib/x86_64-linux-gnu/libstdc++.so.6 (0x00007f816357a000)libm.so.6 => /lib/x86_64-linux-gnu/libm.so.6 (0x00007f8163493000)libgcc_s.so.1 => /lib/x86_64-linux-gnu/libgcc_s.so.1 (0x00007f8163473000)libc.so.6 => /lib/x86_64-linux-gnu/libc.so.6 (0x00007f816324b000)/lib64/ld-linux-x86-64.so.2 (0x00007f8163cf0000)Using curl and OpenSSL from the system package managerYou can use port overlays to configure vcpkg to use the system package manager dependencies. We will build the previous example and use curl and OpenSSL from the system package manager.Install the developer dependencies for curl with an OpenSSL backend and OpenSSL:sudo apt-get install libcurl4-openssl-dev libssl-devCreate the port overlay directory and file structure:mkdir -p /overlays/curl /overlays/openssl///overlays/curl/vcpkg.json{ "name": "curl", "version": "1.0.0", "port-version": 0, "features": { "ssl": { "description": "" } }}# /overlays/curl/portfile.cmakeset(VCPKG_POLICY_EMPTY_PACKAGE enabled)///overlays/openssl/vcpkg.json{ "name": "openssl", "version": "3.0.5"}# /overlays/openssl/portfile.cmakeset(VCPKG_POLICY_EMPTY_PACKAGE enabled)Building with CMake (we’re using the same project in the previous example):cmake -DVCPKG_OVERLAY_PORTS=/overlays -DCMAKE_TOOLCHAIN_FILE=/scripts/buildsystems/vcpkg.cmake-- Running vcpkg installDetecting compiler hash for triplet x64-linux...The following packages will be built and installed:azure-core-cpp[core,curl,http]:x64-linux -> 1.7.1curl[core,non-http,openssl,ssl]:x64-linux -> 7.84.0#1 -- /overlays/curl* openssl[core]:x64-linux -> 3.0.5#4 -- /overlays/openssl* vcpkg-cmake[core]:x64-linux -> 2022-07-18* vcpkg-cmake-config[core]:x64-linux -> 2022-02-06#1Additional packages (*) will be modified to complete this operation....Building and running main:cmake --build ..\mainlibcurl/7.81.0 OpenSSL/3.0.2 zlib/1.2.11 brotli/1.0.9 zstd/1.4.8 libidn2/2.3.2 libpsl/0.21.0 (+libidn2/2.3.2) libssh/0.9.6/openssl/zlib nghttp2/1.43.0 librtmp/2.3 OpenLDAP/2.5.112023-11-07T03:02:26.8637898ZChecking whether we’ve linked the correct shared libraries (libssl and libcurl):ldd mainlibcurl.so.4 => /lib/x86_64-linux-gnu/libcurl.so.4 (0x00007f632c1c0000)libssl.so.3 => /lib/x86_64-linux-gnu/libssl.so.3 (0x00007f632c11c000)libcrypto.so.3 => /lib/x86_64-linux-gnu/libcrypto.so.3 (0x00007f632bcda000)libstdc++.so.6 => /lib/x86_64-linux-gnu/libstdc++.so.6 (0x00007f632baae000)libm.so.6 => /lib/x86_64-linux-gnu/libm.so.6 (0x00007f632b9c7000)... (25+ more dependencies)You will notice curl and openssl from the system package manager have more dependencies than the curl and openssl from the vcpkg catalog. In the above example, we only added port overlays for the dependencies that we use. If
Linux zlib zlib linux - IDC
1. OverviewRPM (Red Hat Package Manager) is the package management system used in several Linux distributions, such as Red Hat, Fedora, and openSUSE.Sometimes, we may need to list the files in an RPM package. We can list the contents of a package by passing the name of the package file as an argument to the rpm command together with the -q and -l options. However, the RPM package file may not always be available.In this tutorial, we’ll discuss how to list the contents of an RPM package when we don’t have the package file.2. Sample PackagesWe’ll inspect two packages in the package repository. They’re zlib-devel.x86_64 and iperf3.x86_64 packages. Let’s verify their existence in the repository:$ dnf list installed | grep zlib-devel.x86_64zlib-devel.x86_64 1.2.11-31.el9 @appstream$ dnf list available | grep iperf3.x86_64iperf3.x86_64 3.9-9.el9 @appstreamThe dnf list installed command lists the installed packages. On the other hand, the dnf list available command lists the available packages, i.e., non-installed ones.We used the grep command to filter the output of dnf list. We see that zlib-devel.x86_64 is an already installed package, but the other one, iperf3.x86_64, isn’t installed.We can check an already installed package’s content using rpm even if we don’t have the RPM package file. The name of the package instead of the RPM package file must be passed to the rpm command:$ rpm -ql zlib-devel.x86_64/usr/include/zconf.h/usr/include/zlib.h/usr/lib64/libz.so/usr/lib64/pkgconfig/zlib.pc/usr/share/doc/zlib-devel/usr/share/doc/zlib-devel/algorithm.txt/usr/share/doc/zlib-devel/example.c/usr/share/man/man3/zlib.3.gzWe listed the contents of zlib-devel.x86_64 successfully. The -q option of rpm is for querying a package. The -l option is for listing the contents of a package.Let’s try to list the contents of the non-installed package, iperf3.x86_64, using rpm:$ rpm -ql iperf3.x86_64Package iperf3.x86_64 is not installedTherefore, we can’t list the contents of a non-installed package using rpm.4. Using yum repoqueryYUM (Yellowdog Updater, Modified) is a package management utility based on the RPM Package Manager. The yum command is the primary tool for the management of the packages.The yum repoquery command searches for packages matching a keyword:$ yum repoquery zlib-devel.x86_64zlib-devel-0:1.2.11-33.el9.x86_64zlib-devel-0:1.2.11-34.el9.x86_64zlib-devel-0:1.2.11-35.el9.x86_64zlib-devel-0:1.2.11-36.el9.x86_64zlib-devel-0:1.2.11-39.el9.x86_64There are five different versions of the zlib-devel.x86_64 library in our system according to the output of yum repoquery zlib-devel.x86_64.We can get the contents of a package by using the -lLinux zlib (linux install zlib) - IDC
Linux Computers In Linux, the Parallels Transporter package is installed together with Parallels Workstation or using the installation file that is available from Parallels Download Center . If you install the application together with Parallels Workstation, your host computer should comply with the system requirements of Parallels Workstation. You can find the Parallels Workstation system requirements in Parallels Workstation User's Guide . If you install the standalone Parallels Transporter package downloaded from the Parallels website, this computer must comply with the following requirements. Hardware Requirements 700+ MHz x86 (32-bit) or x64 (64-bit) processor (Intel or AMD). 768 MB RAM minimum. 1 GB RAM is recommended. 25 MB of hard disk space is required for the installation of Parallels Transporter package. 15 GB of hard disk space is recommended for each of the resulting virtual machines or virtual hard disks. CD-ROM or DVD-ROM drive (optional). Ethernet or WiFi network adapter. Software Requirements Red Hat® Enterprise Linux 5, 4 Debian® Linux 4.0 Fedora™ Core Linux 6, 5, 4; Fedora™ 8, 7 SUSE® Linux 10.3, 10.2, 10.1, 10.0, 9.3 Mandriva Linux 2008, 2007 Ubuntu® Linux 7.10, 7.04, 6.10, 6.04, 5.04 To successfully install Parallels Transporter and its components, make sure you have the following software on your Linux computer: GNU Compiler 4.0 or higher GNU Make 3.8 or higher kernel 2.6.14 source files or development package glibc 2.3.6 glib2 2.10.3 glib 2.3.6 zlib 1.2.2.2 libstdc++ 4.0.2 libpng 1.2.8 Please send us your feedback on this help page. Usually, zlib comes preinstalled with most of the Amazon Linux images. But in case you get: bash: zlib: command not found then you need to install zlib on Amazon Linux 2. Prerequisites. Amazon Linux 2; sudo privileges; Install ZlibWhat is zlib in Linux? - TipsFolder.com
Option of yum repoquery:$ yum repoquery -l zlib-devel.x86_64/usr/include/zconf.h/usr/include/zlib.h/usr/lib64/libz.so/usr/lib64/pkgconfig/zlib.pc/usr/share/doc/zlib-devel/usr/share/doc/zlib-devel/algorithm.txt/usr/share/doc/zlib-devel/example.c/usr/share/man/man3/zlib.3.gzWe can use the same command for listing the contents of a non-installed package:$ yum repoquery -l iperf3.x86_64/usr/bin/iperf3/usr/lib/.build-id/usr/lib/.build-id/68/usr/lib/.build-id/68/c883ce2871cea4095c3d54b9b15ddc3f396146/usr/lib/.build-id/cd/usr/lib/.build-id/cd/978bb88ed41a61b505a70e4d24e8628f55bf79/usr/lib64/libiperf.so.0/usr/lib64/libiperf.so.0.0.0/usr/share/doc/iperf3/usr/share/doc/iperf3/LICENSE/usr/share/doc/iperf3/README.md/usr/share/doc/iperf3/RELEASE_NOTES/usr/share/man/man1/iperf3.1.gz/usr/share/man/man3/libiperf.3.gzTherefore, the yum repoquery command is an option for listing the contents of an installed or non-installed package in the YUM repository.5. Using repoqueryThe repoquery command is another alternative to get information about packages in YUM repositories. yum-utils package must be installed to use this command.We can use its -l option to list the files in a package. Let’s check the contents of the zlib-devel.x86_64 package:$ repoquery -l zlib-devel.x86_64/usr/include/zconf.h/usr/include/zlib.h/usr/lib64/libz.so/usr/lib64/pkgconfig/zlib.pc/usr/share/doc/zlib-devel/usr/share/doc/zlib-devel/algorithm.txt/usr/share/doc/zlib-devel/example.c/usr/share/man/man3/zlib.3.gzUsing repoquery with the -l option listed the contents of the zlib-devel.x86_64 package, as expected.Let’s check the contents of the other package, iperf3.x86_64, using repoquery:$ repoquery -l iperf3.x86_64/usr/bin/iperf3/usr/lib/.build-id/usr/lib/.build-id/4b/usr/lib/.build-id/4b/c883ce2871cea4095c3d54b9b15ddc3f396146/usr/lib/.build-id/c9/usr/lib/.build-id/c9/978bb88ed41a61b505a70e4d24e8628f55bf79/usr/lib64/libiperf.so.0/usr/lib64/libiperf.so.0.0.0/usr/share/doc/iperf3/usr/share/doc/iperf3/LICENSE/usr/share/doc/iperf3/README.md/usr/share/doc/iperf3/RELEASE_NOTES/usr/share/man/man1/iperf3.1.gz/usr/share/man/man3/libiperf.3.gzrepoquery also listed the contents of the non-installed package successfully. Therefore, the repoquery command is another option for listing the contents of an installed or non-installed package in the YUM repository.6. Using dnf repoqueryDNF (Dandified YUM) is the modern version of YUM with more robust and advanced features. It’s the default package management utility in the new versions of RPM-based Linux distros. The dnf command is the primary tool for the management of the packages. The yum command also exists in these distros for backward compatibility. In fact, yum is a symbolic link to dnf, for example in Red Hat 8.The usage of dnf repoquery command is similar to yum repoquery. It searches for packages matching a keyword:$ dnf repoquery zlib-devel.x86_64zlib-devel-0:1.2.11-33.el9.x86_64zlib-devel-0:1.2.11-34.el9.x86_64zlib-devel-0:1.2.11-35.el9.x86_64zlib-devel-0:1.2.11-36.el9.x86_64zlib-devel-0:1.2.11-39.el9.x86_64We can get the contents of a package by using the -l option of dnf repoquery:$ dnf repoquery -l zlib-devel.x86_64/usr/include/zconf.h/usr/include/zlib.h/usr/lib64/libz.so/usr/lib64/pkgconfig/zlib.pc/usr/share/doc/zlib-devel/usr/share/doc/zlib-devel/algorithm.txt/usr/share/doc/zlib-devel/example.c/usr/share/man/man3/zlib.3.gzWe can use the same command for listing the contents of a non-installed package:$ dnf repoquery -l iperf3.x86_64/usr/bin/iperf3/usr/lib/.build-id/usr/lib/.build-id/68/usr/lib/.build-id/68/c883ce2871cea4095c3d54b9b15ddc3f396146/usr/lib/.build-id/cd/usr/lib/.build-id/cd/978bb88ed41a61b505a70e4d24e8628f55bf79/usr/lib64/libiperf.so.0/usr/lib64/libiperf.so.0.0.0/usr/share/doc/iperf3/usr/share/doc/iperf3/LICENSE/usr/share/doc/iperf3/README.md/usr/share/doc/iperf3/RELEASE_NOTES/usr/share/man/man1/iperf3.1.gz/usr/share/man/man3/libiperf.3.gzTherefore, we can use the dnf repoquery command to list the contents of an installed or non-installed package in the DNF repository.7. ConclusionIn this article, we learned how to list the contents of a package when we don’t have the RPM package file.Firstly, we learned that we can use the rpm command to list the contents of an installed package. Then, we examined the yum repoquery, repoquery and dnf repoquery commands. We saw that wezlib acceleration - Linux and Mainframe
Yeschecking for gettimeofday... yeschecking for if_nametoindex... yeschecking for mach_absolute_time... nochecking deeper for mach_absolute_time... but still nochecking for pipe... yeschecking for sched_yield... yeschecking for sendmsg... yeschecking for setlocale... yeschecking for setmode... nochecking deeper for setmode... but still nochecking for setrlimit... yeschecking for snprintf... yeschecking for utime... yeschecking for utimes... yeschecking for arc4random... nochecking deeper for arc4random... but still nochecking how to set a socket into non-blocking mode... fcntl O_NONBLOCKchecking for perl... /cluster/spack/apps/linux-centos7-x86_64/sfos/bin/perlchecking for gnroff... /bin/gnroffchecking how to use *nroff to get plain text from man pages... -manchecking whether to enable the threaded resolver... yeschecking whether to use POSIX threads for threaded resolver... autochecking for pthread.h... yeschecking for pthread_create... nochecking for pthread_create in -lpthread... yeschecking convert -I options to -isystem... yeschecking whether to enable verbose strings... yeschecking whether to enable SSPI support (Windows native builds only)... nochecking whether to enable cryptographic authentication methods... yeschecking whether to support NTLM... yeschecking whether to enable NTLM delegation to winbind's helper... yeschecking whether to enable TLS-SRP authentication... yeschecking whether to enable Unix domain sockets... autochecking for struct sockaddr_un.sun_path... yeschecking whether to support cookies... yeschecking whether to support socketpair... yeschecking whether to support HTTP authentication... yeschecking whether to support DoH... yeschecking whether to support the MIME API... yeschecking whether to support date parsing... yeschecking whether to support netrc parsing... yeschecking whether to support progress-meter... yeschecking whether to support DNS shuffling... yeschecking whether to support curl_easy_option*... yeschecking whether to support alt-svc... yeschecking whether to support headers-api... yeschecking whether to support HSTS... yeschecking for SSL_set0_wbio... nochecking whether to support WebSockets... nochecking whether hiding of library internal symbols will actually happen... yeschecking that generated files are newer than configure... doneconfigure: creating ./config.statusconfig.status: creating Makefileconfig.status: creating docs/Makefileconfig.status: creating docs/examples/Makefileconfig.status: creating docs/libcurl/Makefileconfig.status: creating docs/libcurl/opts/Makefileconfig.status: creating docs/cmdline-opts/Makefileconfig.status: creating include/Makefileconfig.status: creating include/curl/Makefileconfig.status: creating src/Makefileconfig.status: creating lib/Makefileconfig.status: creating scripts/Makefileconfig.status: creating lib/libcurl.versconfig.status: creating lib/libcurl.plistconfig.status: creating tests/Makefileconfig.status: creating tests/configconfig.status: creating tests/certs/Makefileconfig.status: creating tests/certs/scripts/Makefileconfig.status: creating tests/data/Makefileconfig.status: creating tests/server/Makefileconfig.status: creating tests/libtest/Makefileconfig.status: creating tests/unit/Makefileconfig.status: creating tests/http/config.iniconfig.status: creating tests/http/Makefileconfig.status: creating tests/http/clients/Makefileconfig.status: creating packages/Makefileconfig.status: creating packages/vms/Makefileconfig.status: creating curl-configconfig.status: creating libcurl.pcconfig.status: creating lib/curl_config.hconfig.status: executing depfiles commandsconfig.status: executing libtool commandsconfigure: Configured to build curl/libcurl: Host setup: x86_64-pc-linux-gnu Install prefix: /cluster/spack/apps/linux-centos7-x86_64/intel-2022.1.2/curl-8.1.2-bxyrvwdahcrw26qpwcr7m7wjp47kqfq7 Compiler: /cluster/apps/spack/lib/spack/env/intel/icc -std=gnu11 CFLAGS: -we147 -Werror-implicit-function-declaration -O2 -Wno-system-headers -pthread CPPFLAGS: -isystem /cluster/spack/apps/linux-centos7-x86_64/intel-2022.1.2/zlib-1.3-pg4ety5pr7rblsspzcc4eeruf2jsnncc/include -isystem /cluster/spack/apps/linux-centos7-x86_64/intel-2022.1.2/libidn2-2.3.4-i67qz2zbmwg5thnfl2esdgnchro5awmq/include LDFLAGS: -L/cluster/spack/apps/linux-centos7-x86_64/intel-2022.1.2/zlib-1.3-pg4ety5pr7rblsspzcc4eeruf2jsnncc/lib -L/usr/lib64 -L/cluster/spack/apps/linux-centos7-x86_64/intel-2022.1.2/libidn2-2.3.4-i67qz2zbmwg5thnfl2esdgnchro5awmq/lib LIBS: -lidn2 -lssl -lcrypto -lssl -lcrypto -lz curl version: 8.1.2 SSL: enabled (OpenSSL) SSH: no (--with-{libssh,libssh2}) zlib: enabled brotli: no (--with-brotli) zstd: no (--with-zstd) GSS-API: no (--with-gssapi) GSASL: no (--with-gsasl) TLS-SRP: no (--enable-tls-srp) resolver: POSIX threaded IPv6: enabled Unix sockets: enabled IDN: enabled (libidn2) Build libcurl: Shared=yes, Static=yes Built-in manual: enabled --libcurl option: enabled (--disable-libcurl-option) Verbose errors: enabled (--disable-verbose) Code coverage: disabled SSPI: no (--enable-sspi) ca cert bundle: no ca cert path: no ca fallback: yes LDAP: no (--enable-ldap / --with-ldap-lib / --with-lber-lib) LDAPS: no (--enable-ldaps)6.11. Zlib- - Linux From Scratch
Firebird 5.0.2 ImprovementsAdd AUTO RELEASE TEMP BLOBID transaction option (#8323)Make trace use HEX representation for parameter values of types [VAR]CHAR CHARACTER SET OCTETS and [VAR]BINARY(#8356)Report unique usernames for isc_info_user_names (#8353)Collect network statistics and make it available for the user applications (#8310)Wire protocol improvement: prefetch blob info and some data when open blob (#8307)NULLs should be skipped during index navigation when there's no lower bound and matched conditions are known to ignore NULLs (#8291)Reorganize public headers (#8273)Win_SSPI plug-in uses NTLM (#8256)Add generated files for OO API for C language to distribution (#8197)Cardinality estimation should use primary record versions only (#8161)Database restore must make every effort on activating deferred indexes (#7269)More details can be found in the CHANGELOG.Release Notes | Language Reference | Binary Packages Firebird 4.0.5 ImprovementsEnsure the standalone CS listener on Linux uses the SO_REUSEADDR socket option (#8181)Added shutdown handler for Classic Server (#8165)More efficient evaluation of expressions like RDB$DB_KEY after mass delete (#8104)Make protocol schemes case-insensitive (#8066)Improve conflict resolution on replica when table have both primary and unique keys (#8042)Better cardinality estimation when empty data pages exist (#8030)Remove gfix -cache option (#8010)Update Windows distributions with zlib version 1.3.1 (#7978)Make TempCacheLimit setting to be per-database (not per-attachment) for SuperClassic (#7928)Improve performance with time zones (#7854)More details can be found in the CHANGELOG.Release Notes | Language Reference | Binary Packages Firebird 3.0.12 Firebird 5.0.1 ImprovementsEnsure the standalone CS listener on Linux uses the SO_REUSEADDR socket option (#8181)Added shutdown handler for Classic Server (#8165)More efficient evaluation of expressions like RDB$DB_KEY after mass delete (#8104)Make protocol schemes case-insensitive (#8066)Unnest IN/ANY/EXISTS subqueries and optimize them using semi-join algorithm (#8061)Improve conflict resolution on replica when table have both primary and unique keys (#8042)Better cardinality estimation when empty data pages exist (#8030)Remove gfix -cache option (#8010)Update Windows distributions with zlib version 1.3.1 (#7978)Make TempCacheLimit setting to8.6. Zlib- - Linux From Scratch
Skip to contentWhy GitLabPricingContact SalesExploreWhy GitLabPricingContact SalesExploreSign inGet free trialGitLab may not work properly, because you are using an outdated web browser.Please install a supported web browser for a better experience.GerbView XOR differential comparisonDescriptionThe attached patch gerbview-xor5.1.10.patch implements XOR differential comparison, a useful feature found in Gerbv from gEDA:Load a set of Gerber files into GerbViewSelect "View | Show in Differential Mode"The layer colors are blended using XORThis is especially valuable when comparing two revisions of a board. If two layers are set to the same color, only the differences are visible.Steps to reproduceNone. We are sharing a patch that when applied will be especially valuable when comparing two revisions of a board.KiCad VersionApplication: KiCadVersion: 5.1.10-88a1d61d58~88~ubuntu20.04.1, release buildLibraries: wxWidgets 3.0.4 libcurl/7.68.0 OpenSSL/1.1.1f zlib/1.2.11 brotli/1.0.7 libidn2/2.2.0 libpsl/0.21.0 (+libidn2/2.2.0) libssh/0.9.3/openssl/zlib nghttp2/1.40.0 librtmp/2.3Platform: Linux 5.11.15-051115-lowlatency x86_64, 64 bit, Little endian, wxGTKBuild Info: wxWidgets: 3.0.4 (wchar_t,wx containers,compatible with 2.8) GTK+ 3.24 Boost: 1.71.0 OpenCASCADE Community Edition: 6.9.1 Curl: 7.68.0 Compiler: GCC 9.3.0 with C++ ABI 1013Build settings: USE_WX_GRAPHICS_CONTEXT=OFF USE_WX_OVERLAY=ON KICAD_SCRIPTING=ON KICAD_SCRIPTING_MODULES=ON KICAD_SCRIPTING_PYTHON3=ON KICAD_SCRIPTING_WXPYTHON=ON KICAD_SCRIPTING_WXPYTHON_PHOENIX=ON KICAD_SCRIPTING_ACTION_MENU=ON BUILD_GITHUB_PLUGIN=ON KICAD_USE_OCE=ON KICAD_USE_OCC=OFF KICAD_SPICE=ONEdited May 14, 2021 by Tarun Johar. Usually, zlib comes preinstalled with most of the Amazon Linux images. But in case you get: bash: zlib: command not found then you need to install zlib on Amazon Linux 2. Prerequisites. Amazon Linux 2; sudo privileges; Install Zlib Linux dist: 3.10. .5.2.el7.x86_64 GNU/Linux (Redhat) I installed both zlib and zlib-devel using conda install -c anaconda zlib-devel-amzn2-aarch64 and conda install -c anaconda zlib.
zlib - Kali Linux Package Tracker
Hardinfo (Kurz gesagt “Hardwareinformationen„) Ist ein grafisches Systemprofiler- und Benchmark -Tool für Linux -Systeme, mit dem Informationen sowohl von Hardware als auch etwas Software sammeln und in einem einfach zu bedienenden GUI -Tool organisiert werden können. Hardinfo Kann Informationen zu diesen Komponenten anzeigen: CPU, GPU, Motherboard, RAM, Speicher, Festplatten, Drucker, Benchmarks, Sound, Netzwerk und USB sowie einige Systeminformationen wie den Verteilungsnamen, die Version und die Linux -Kernelinformationen. Außerdem können Sie Hardwareinformationen drucken, Hardinfo kann auch einen erweiterten Bericht über die Befehlszeile erstellen oder durch Klicken auf die “Bericht generierenSchaltfläche in der GUI und in HTML- oder Klartextformaten gespeichert. Der Unterschied zwischen Hardinfo Die anderen Linux -Hardware -Informationstools sind, dass die Informationen gut angeordnet und einfacher zu verstehen sind als andere solche Tools. Installieren von Hardinfo - Systeminformationstool unter Linux Hardinfo ist eine beliebteste grafische Anwendung und wird auf getestet Ubuntu/Mint, Debian, OpenSuse, Fedora/Centos/Rhel, Arch Linux, Und Manjaro Linux. Hardinfo kann in allen wichtigen Linux -Verteilungen über das Standard -Repository installiert werden. Installieren Sie Hardinfo bei Debian, Ubuntu und Mint $ sudo apt installieren Sie Hardinfo Installieren Sie Hardinfo unter Fedora/Centos Linux Aus irgendeinem Grund hat das Fedora -Team beschlossen, Hardinfo in den Repositories zu verbringen, sodass Sie es aus Quellen erstellen müssen, wie gezeigt… # DNF Installieren Sie Glib-Devel GTK+-Devel Zlib-Devel libsoup-Devel $ CD Downloads $ Git Clone https: // github.com/lpereira/hardinfo.git $ cd hardinfo $ mkdir bauen $ cd Build $ cmake… $ make # mach installieren Installieren Sie Hardinfo unter Arch und Manjaro Linux $ sudo pacman -s Hardinfopip install zlib linux - YouTube
Docs/libcurl/Makefileconfig.status: creating docs/libcurl/opts/Makefileconfig.status: creating docs/cmdline-opts/Makefileconfig.status: creating include/Makefileconfig.status: creating include/curl/Makefileconfig.status: creating src/Makefileconfig.status: creating lib/Makefileconfig.status: creating scripts/Makefileconfig.status: creating lib/libcurl.versconfig.status: creating lib/libcurl.plistconfig.status: creating tests/Makefileconfig.status: creating tests/configconfig.status: creating tests/certs/Makefileconfig.status: creating tests/certs/scripts/Makefileconfig.status: creating tests/data/Makefileconfig.status: creating tests/server/Makefileconfig.status: creating tests/libtest/Makefileconfig.status: creating tests/unit/Makefileconfig.status: creating tests/http/config.iniconfig.status: creating tests/http/Makefileconfig.status: creating tests/http/clients/Makefileconfig.status: creating packages/Makefileconfig.status: creating packages/vms/Makefileconfig.status: creating curl-configconfig.status: creating libcurl.pcconfig.status: creating lib/curl_config.hconfig.status: executing depfiles commandsconfig.status: executing libtool commandsconfigure: Configured to build curl/libcurl: Host setup: x86_64-pc-linux-gnu Install prefix: /cluster/spack/apps/linux-centos7-x86_64/intel-2022.1.2/curl-8.1.2-bxyrvwdahcrw26qpwcr7m7wjp47kqfq7 Compiler: /cluster/apps/spack/lib/spack/env/intel/icc -std=gnu11 CFLAGS: -we147 -Werror-implicit-function-declaration -O2 -Wno-system-headers -pthread CPPFLAGS: -isystem /cluster/spack/apps/linux-centos7-x86_64/intel-2022.1.2/zlib-1.3-pg4ety5pr7rblsspzcc4eeruf2jsnncc/include -isystem /cluster/spack/apps/linux-centos7-x86_64/intel-2022.1.2/libidn2-2.3.4-i67qz2zbmwg5thnfl2esdgnchro5awmq/include LDFLAGS: -L/cluster/spack/apps/linux-centos7-x86_64/intel-2022.1.2/zlib-1.3-pg4ety5pr7rblsspzcc4eeruf2jsnncc/lib -L/usr/lib64 -L/cluster/spack/apps/linux-centos7-x86_64/intel-2022.1.2/libidn2-2.3.4-i67qz2zbmwg5thnfl2esdgnchro5awmq/lib LIBS: -lidn2 -lssl -lcrypto -lssl -lcrypto -lz curl version: 8.1.2 SSL: enabled (OpenSSL) SSH: no (--with-{libssh,libssh2}) zlib: enabled brotli: no (--with-brotli) zstd: no (--with-zstd) GSS-API: no (--with-gssapi) GSASL: no (--with-gsasl) TLS-SRP: no (--enable-tls-srp) resolver: POSIX threaded IPv6: enabled Unix sockets: enabled IDN: enabled (libidn2) Build libcurl: Shared=yes, Static=yes Built-in manual: enabled --libcurl option: enabled (--disable-libcurl-option) Verbose errors: enabled (--disable-verbose) Code coverage: disabled SSPI: no (--enable-sspi) ca cert bundle: no ca cert path: no ca fallback: yes LDAP: no (--enable-ldap / --with-ldap-lib / --with-lber-lib) LDAPS: no (--enable-ldaps) RTSP: enabled RTMP: no (--with-librtmp) PSL: no (--with-libpsl) Alt-svc: enabled (--disable-alt-svc) Headers API: enabled (--disable-headers-api) HSTS: enabled (--disable-hsts) HTTP1: enabled (internal) HTTP2: no (--with-nghttp2, --with-hyper) HTTP3: no (--with-ngtcp2 --with-nghttp3, --with-quiche, --with-msh3) ECH: no (--enable-ech) WebSockets: no (--enable-websockets) Protocols: DICT FILE FTP FTPS GOPHER GOPHERS HTTP HTTPS IMAP IMAPS MQTT POP3 POP3S RTSP SMB SMBS SMTP SMTPS TELNET TFTP Features: AsynchDNS HSTS HTTPS-proxy IDN IPv6 Largefile NTLM NTLM_WB SSL UnixSockets alt-svc libz threadsafe==> Executing phase: 'build'==> 'make' '-j8'Making all in libmake[1]: Entering directory '/dev/shm/spackapps/spack-stage/spack-stage-DnWvE2/curl-8.1.2/lib'make all-ammake[2]: Entering directory '/dev/shm/spackapps/spack-stage/spack-stage-DnWvE2/curl-8.1.2/lib' CC libcurl_la-altsvc.lo CC libcurl_la-amigaos.lo CC libcurl_la-asyn-ares.lo CC libcurl_la-asyn-thread.lo CC libcurl_la-base64.lo CC libcurl_la-bufq.lo CC libcurl_la-bufref.lo CC libcurl_la-c-hyper.loicc: command line warning #10121: overriding '-march=core-avx2' with '-march=core-avx2'icc: command line warning #10121: overriding '-march=core-avx2' with '-march=core-avx2'icc: command line warning #10121: overriding '-march=core-avx2' with '-march=core-avx2'icc: command line warning #10121: overriding '-march=core-avx2' with '-march=core-avx2'icc: command line warning #10121: overriding '-march=core-avx2' with '-march=core-avx2'icc: command line warning #10121: overriding '-march=core-avx2' with '-march=core-avx2'icc: command line warning #10121: overriding '-march=core-avx2' with '-march=core-avx2'icc: command line warning #10121: overriding '-march=core-avx2' with '-march=core-avx2' CC libcurl_la-cf-h1-proxy.lo CC libcurl_la-cf-h2-proxy.lo CC libcurl_la-cf-haproxy.lo CC libcurl_la-cf-https-connect.loicc: command line warning #10121: overriding '-march=core-avx2' with '-march=core-avx2'icc: command line warning #10121: overriding '-march=core-avx2' with '-march=core-avx2'icc: command line warning #10121: overriding '-march=core-avx2' with '-march=core-avx2'icc: command line warning #10121: overriding '-march=core-avx2' with '-march=core-avx2' CC libcurl_la-cf-socket.lo CC libcurl_la-cfilters.lo CC libcurl_la-conncache.lo CC libcurl_la-connect.loicc: command line warning #10121: overriding '-march=core-avx2' with '-march=core-avx2'icc: command line warning #10121: overriding '-march=core-avx2' with '-march=core-avx2' CC libcurl_la-content_encoding.loicc: command line warning #10121: overriding '-march=core-avx2' with '-march=core-avx2' CC libcurl_la-cookie.loicc: command line warning #10121: overriding '-march=core-avx2' with '-march=core-avx2' CC libcurl_la-curl_addrinfo.loicc: command line warning #10121: overriding '-march=core-avx2' with '-march=core-avx2'icc: command line warning #10121: overriding '-march=core-avx2' with '-march=core-avx2' CC libcurl_la-curl_des.loicc: command line warning #10121: overriding '-march=core-avx2' with '-march=core-avx2'icc:. Usually, zlib comes preinstalled with most of the Amazon Linux images. But in case you get: bash: zlib: command not found then you need to install zlib on Amazon Linux 2. Prerequisites. Amazon Linux 2; sudo privileges; Install Zlibzlib - Fedora Packages - Fedora Linux
This is a fork of ningfei/u3d which is a fork of the v1.4.5 U3D library. It has been updated to support x86 and x64 Windows (VS2008, VS2010, VS2015), Linux and OS X.See here for an conda package: scriptsBelow are the build scripts used to compile and install the U3D library.Set U3D_SHARED=OFF to use the packaged libpng, jpeg and zlib libraries, or on to use system installed.WindowsConfirmed to work for x86 and x64; VS2008, VS2010 and VS2015. Set %LIBRARY_PREFIX% to the target installation directory.set BUILD_CONFIG=Releasemkdir buildcd buildcmake .. -G "NMake Makefiles" ^ -Wno-dev ^ -DCMAKE_BUILD_TYPE=%BUILD_CONFIG% ^ -DCMAKE_INSTALL_PREFIX="%LIBRARY_PREFIX%" ^ -DU3D_SHARED:BOOL=ONif errorlevel 1 exit 1nmake installif errorlevel 1 exit 1UnixConfirmed to work for x86 and x64 Linux and x64 OS X. Set $PREFIX to the target installation directory.#!/usr/bin/env bashBUILD_CONFIG=Releasemkdir buildcd buildcmake .. -G "Unix Makefiles" \ -DCMAKE_BUILD_TYPE=$BUILD_CONFIG \ -DCMAKE_INSTALL_PREFIX=$PREFIX \ -DU3D_SHARED:BOOL=ONmake installOriginal ReadmeU3D is a format for 3D models that can be embedded into PDF and viewed in Adobe Acrobat/Reader(but not other PDF viewers).There is a C++ library to produce U3D files and a converter from IDTF, a verbose text format.You need libpng ( jpeg library ( and zlib ( to compile U3D lib using autotools.The cmake build uses bundled versions of the above tools.This is just a port of Intel U3D library to the GNU Build System and cmake,with rendering part thrown out.There is not much to read in this readme since I guess there is not too many potential readers.You may contact me, Michail Vidiassov, by Internet e-mail [email protected] will make me describe my changes in more detail or apply some minor fixes you desire.But the proper place to discuss things is the U3D software forum at sourceforge.You can also find the Intel source there, only the main part is preserved in this distribution.I have made the following changes - all quality factors are set to maximum quality by default,thus supressing compression.To IDTF I have added one more parameter - TEXTURE_LAYER_REPEAT: "UV", "U", "V" or "NONE",with "UV" being default. The name says what it does.I have also dissected IDTFConverter and made a library from the converter part(discarding IDTF file parser), itComments
Triplet x64-linux...The following packages will be built and installed:azure-core-cpp[core,curl,http]:x64-linux -> 1.7.1curl[core,non-http,openssl,ssl]:x64-linux -> 7.84.0#1* openssl[core]:x64-linux -> 3.0.5#4* vcpkg-cmake[core]:x64-linux -> 2022-07-18* vcpkg-cmake-config[core]:x64-linux -> 2022-02-06#1* zlib[core]:x64-linux -> 1.2.12#1Additional packages (*) will be modified to complete this operation....Building and running main:cmake --build . && ./main[ 50%] Building CXX object CMakeFiles/main.dir/main.cpp.o[100%] Linking CXX executable main[100%] Built target mainlibcurl/7.82.0-DEV OpenSSL/3.0.2 zlib/1.2.122023-11-07T02:58:10.0215004ZWe can use ldd to list the shared libraries:ldd mainlinux-vdso.so.1 (0x00007ffc32bf1000)libstdc++.so.6 => /lib/x86_64-linux-gnu/libstdc++.so.6 (0x00007f816357a000)libm.so.6 => /lib/x86_64-linux-gnu/libm.so.6 (0x00007f8163493000)libgcc_s.so.1 => /lib/x86_64-linux-gnu/libgcc_s.so.1 (0x00007f8163473000)libc.so.6 => /lib/x86_64-linux-gnu/libc.so.6 (0x00007f816324b000)/lib64/ld-linux-x86-64.so.2 (0x00007f8163cf0000)Using curl and OpenSSL from the system package managerYou can use port overlays to configure vcpkg to use the system package manager dependencies. We will build the previous example and use curl and OpenSSL from the system package manager.Install the developer dependencies for curl with an OpenSSL backend and OpenSSL:sudo apt-get install libcurl4-openssl-dev libssl-devCreate the port overlay directory and file structure:mkdir -p /overlays/curl /overlays/openssl///overlays/curl/vcpkg.json{ "name": "curl", "version": "1.0.0", "port-version": 0, "features": { "ssl": { "description": "" } }}# /overlays/curl/portfile.cmakeset(VCPKG_POLICY_EMPTY_PACKAGE enabled)///overlays/openssl/vcpkg.json{ "name": "openssl", "version": "3.0.5"}# /overlays/openssl/portfile.cmakeset(VCPKG_POLICY_EMPTY_PACKAGE enabled)Building with CMake (we’re using the same project in the previous example):cmake -DVCPKG_OVERLAY_PORTS=/overlays -DCMAKE_TOOLCHAIN_FILE=/scripts/buildsystems/vcpkg.cmake-- Running vcpkg installDetecting compiler hash for triplet x64-linux...The following packages will be built and installed:azure-core-cpp[core,curl,http]:x64-linux -> 1.7.1curl[core,non-http,openssl,ssl]:x64-linux -> 7.84.0#1 -- /overlays/curl* openssl[core]:x64-linux -> 3.0.5#4 -- /overlays/openssl* vcpkg-cmake[core]:x64-linux -> 2022-07-18* vcpkg-cmake-config[core]:x64-linux -> 2022-02-06#1Additional packages (*) will be modified to complete this operation....Building and running main:cmake --build ..\mainlibcurl/7.81.0 OpenSSL/3.0.2 zlib/1.2.11 brotli/1.0.9 zstd/1.4.8 libidn2/2.3.2 libpsl/0.21.0 (+libidn2/2.3.2) libssh/0.9.6/openssl/zlib nghttp2/1.43.0 librtmp/2.3 OpenLDAP/2.5.112023-11-07T03:02:26.8637898ZChecking whether we’ve linked the correct shared libraries (libssl and libcurl):ldd mainlibcurl.so.4 => /lib/x86_64-linux-gnu/libcurl.so.4 (0x00007f632c1c0000)libssl.so.3 => /lib/x86_64-linux-gnu/libssl.so.3 (0x00007f632c11c000)libcrypto.so.3 => /lib/x86_64-linux-gnu/libcrypto.so.3 (0x00007f632bcda000)libstdc++.so.6 => /lib/x86_64-linux-gnu/libstdc++.so.6 (0x00007f632baae000)libm.so.6 => /lib/x86_64-linux-gnu/libm.so.6 (0x00007f632b9c7000)... (25+ more dependencies)You will notice curl and openssl from the system package manager have more dependencies than the curl and openssl from the vcpkg catalog. In the above example, we only added port overlays for the dependencies that we use. If
2025-04-241. OverviewRPM (Red Hat Package Manager) is the package management system used in several Linux distributions, such as Red Hat, Fedora, and openSUSE.Sometimes, we may need to list the files in an RPM package. We can list the contents of a package by passing the name of the package file as an argument to the rpm command together with the -q and -l options. However, the RPM package file may not always be available.In this tutorial, we’ll discuss how to list the contents of an RPM package when we don’t have the package file.2. Sample PackagesWe’ll inspect two packages in the package repository. They’re zlib-devel.x86_64 and iperf3.x86_64 packages. Let’s verify their existence in the repository:$ dnf list installed | grep zlib-devel.x86_64zlib-devel.x86_64 1.2.11-31.el9 @appstream$ dnf list available | grep iperf3.x86_64iperf3.x86_64 3.9-9.el9 @appstreamThe dnf list installed command lists the installed packages. On the other hand, the dnf list available command lists the available packages, i.e., non-installed ones.We used the grep command to filter the output of dnf list. We see that zlib-devel.x86_64 is an already installed package, but the other one, iperf3.x86_64, isn’t installed.We can check an already installed package’s content using rpm even if we don’t have the RPM package file. The name of the package instead of the RPM package file must be passed to the rpm command:$ rpm -ql zlib-devel.x86_64/usr/include/zconf.h/usr/include/zlib.h/usr/lib64/libz.so/usr/lib64/pkgconfig/zlib.pc/usr/share/doc/zlib-devel/usr/share/doc/zlib-devel/algorithm.txt/usr/share/doc/zlib-devel/example.c/usr/share/man/man3/zlib.3.gzWe listed the contents of zlib-devel.x86_64 successfully. The -q option of rpm is for querying a package. The -l option is for listing the contents of a package.Let’s try to list the contents of the non-installed package, iperf3.x86_64, using rpm:$ rpm -ql iperf3.x86_64Package iperf3.x86_64 is not installedTherefore, we can’t list the contents of a non-installed package using rpm.4. Using yum repoqueryYUM (Yellowdog Updater, Modified) is a package management utility based on the RPM Package Manager. The yum command is the primary tool for the management of the packages.The yum repoquery command searches for packages matching a keyword:$ yum repoquery zlib-devel.x86_64zlib-devel-0:1.2.11-33.el9.x86_64zlib-devel-0:1.2.11-34.el9.x86_64zlib-devel-0:1.2.11-35.el9.x86_64zlib-devel-0:1.2.11-36.el9.x86_64zlib-devel-0:1.2.11-39.el9.x86_64There are five different versions of the zlib-devel.x86_64 library in our system according to the output of yum repoquery zlib-devel.x86_64.We can get the contents of a package by using the -l
2025-04-01Option of yum repoquery:$ yum repoquery -l zlib-devel.x86_64/usr/include/zconf.h/usr/include/zlib.h/usr/lib64/libz.so/usr/lib64/pkgconfig/zlib.pc/usr/share/doc/zlib-devel/usr/share/doc/zlib-devel/algorithm.txt/usr/share/doc/zlib-devel/example.c/usr/share/man/man3/zlib.3.gzWe can use the same command for listing the contents of a non-installed package:$ yum repoquery -l iperf3.x86_64/usr/bin/iperf3/usr/lib/.build-id/usr/lib/.build-id/68/usr/lib/.build-id/68/c883ce2871cea4095c3d54b9b15ddc3f396146/usr/lib/.build-id/cd/usr/lib/.build-id/cd/978bb88ed41a61b505a70e4d24e8628f55bf79/usr/lib64/libiperf.so.0/usr/lib64/libiperf.so.0.0.0/usr/share/doc/iperf3/usr/share/doc/iperf3/LICENSE/usr/share/doc/iperf3/README.md/usr/share/doc/iperf3/RELEASE_NOTES/usr/share/man/man1/iperf3.1.gz/usr/share/man/man3/libiperf.3.gzTherefore, the yum repoquery command is an option for listing the contents of an installed or non-installed package in the YUM repository.5. Using repoqueryThe repoquery command is another alternative to get information about packages in YUM repositories. yum-utils package must be installed to use this command.We can use its -l option to list the files in a package. Let’s check the contents of the zlib-devel.x86_64 package:$ repoquery -l zlib-devel.x86_64/usr/include/zconf.h/usr/include/zlib.h/usr/lib64/libz.so/usr/lib64/pkgconfig/zlib.pc/usr/share/doc/zlib-devel/usr/share/doc/zlib-devel/algorithm.txt/usr/share/doc/zlib-devel/example.c/usr/share/man/man3/zlib.3.gzUsing repoquery with the -l option listed the contents of the zlib-devel.x86_64 package, as expected.Let’s check the contents of the other package, iperf3.x86_64, using repoquery:$ repoquery -l iperf3.x86_64/usr/bin/iperf3/usr/lib/.build-id/usr/lib/.build-id/4b/usr/lib/.build-id/4b/c883ce2871cea4095c3d54b9b15ddc3f396146/usr/lib/.build-id/c9/usr/lib/.build-id/c9/978bb88ed41a61b505a70e4d24e8628f55bf79/usr/lib64/libiperf.so.0/usr/lib64/libiperf.so.0.0.0/usr/share/doc/iperf3/usr/share/doc/iperf3/LICENSE/usr/share/doc/iperf3/README.md/usr/share/doc/iperf3/RELEASE_NOTES/usr/share/man/man1/iperf3.1.gz/usr/share/man/man3/libiperf.3.gzrepoquery also listed the contents of the non-installed package successfully. Therefore, the repoquery command is another option for listing the contents of an installed or non-installed package in the YUM repository.6. Using dnf repoqueryDNF (Dandified YUM) is the modern version of YUM with more robust and advanced features. It’s the default package management utility in the new versions of RPM-based Linux distros. The dnf command is the primary tool for the management of the packages. The yum command also exists in these distros for backward compatibility. In fact, yum is a symbolic link to dnf, for example in Red Hat 8.The usage of dnf repoquery command is similar to yum repoquery. It searches for packages matching a keyword:$ dnf repoquery zlib-devel.x86_64zlib-devel-0:1.2.11-33.el9.x86_64zlib-devel-0:1.2.11-34.el9.x86_64zlib-devel-0:1.2.11-35.el9.x86_64zlib-devel-0:1.2.11-36.el9.x86_64zlib-devel-0:1.2.11-39.el9.x86_64We can get the contents of a package by using the -l option of dnf repoquery:$ dnf repoquery -l zlib-devel.x86_64/usr/include/zconf.h/usr/include/zlib.h/usr/lib64/libz.so/usr/lib64/pkgconfig/zlib.pc/usr/share/doc/zlib-devel/usr/share/doc/zlib-devel/algorithm.txt/usr/share/doc/zlib-devel/example.c/usr/share/man/man3/zlib.3.gzWe can use the same command for listing the contents of a non-installed package:$ dnf repoquery -l iperf3.x86_64/usr/bin/iperf3/usr/lib/.build-id/usr/lib/.build-id/68/usr/lib/.build-id/68/c883ce2871cea4095c3d54b9b15ddc3f396146/usr/lib/.build-id/cd/usr/lib/.build-id/cd/978bb88ed41a61b505a70e4d24e8628f55bf79/usr/lib64/libiperf.so.0/usr/lib64/libiperf.so.0.0.0/usr/share/doc/iperf3/usr/share/doc/iperf3/LICENSE/usr/share/doc/iperf3/README.md/usr/share/doc/iperf3/RELEASE_NOTES/usr/share/man/man1/iperf3.1.gz/usr/share/man/man3/libiperf.3.gzTherefore, we can use the dnf repoquery command to list the contents of an installed or non-installed package in the DNF repository.7. ConclusionIn this article, we learned how to list the contents of a package when we don’t have the RPM package file.Firstly, we learned that we can use the rpm command to list the contents of an installed package. Then, we examined the yum repoquery, repoquery and dnf repoquery commands. We saw that we
2025-04-15Yeschecking for gettimeofday... yeschecking for if_nametoindex... yeschecking for mach_absolute_time... nochecking deeper for mach_absolute_time... but still nochecking for pipe... yeschecking for sched_yield... yeschecking for sendmsg... yeschecking for setlocale... yeschecking for setmode... nochecking deeper for setmode... but still nochecking for setrlimit... yeschecking for snprintf... yeschecking for utime... yeschecking for utimes... yeschecking for arc4random... nochecking deeper for arc4random... but still nochecking how to set a socket into non-blocking mode... fcntl O_NONBLOCKchecking for perl... /cluster/spack/apps/linux-centos7-x86_64/sfos/bin/perlchecking for gnroff... /bin/gnroffchecking how to use *nroff to get plain text from man pages... -manchecking whether to enable the threaded resolver... yeschecking whether to use POSIX threads for threaded resolver... autochecking for pthread.h... yeschecking for pthread_create... nochecking for pthread_create in -lpthread... yeschecking convert -I options to -isystem... yeschecking whether to enable verbose strings... yeschecking whether to enable SSPI support (Windows native builds only)... nochecking whether to enable cryptographic authentication methods... yeschecking whether to support NTLM... yeschecking whether to enable NTLM delegation to winbind's helper... yeschecking whether to enable TLS-SRP authentication... yeschecking whether to enable Unix domain sockets... autochecking for struct sockaddr_un.sun_path... yeschecking whether to support cookies... yeschecking whether to support socketpair... yeschecking whether to support HTTP authentication... yeschecking whether to support DoH... yeschecking whether to support the MIME API... yeschecking whether to support date parsing... yeschecking whether to support netrc parsing... yeschecking whether to support progress-meter... yeschecking whether to support DNS shuffling... yeschecking whether to support curl_easy_option*... yeschecking whether to support alt-svc... yeschecking whether to support headers-api... yeschecking whether to support HSTS... yeschecking for SSL_set0_wbio... nochecking whether to support WebSockets... nochecking whether hiding of library internal symbols will actually happen... yeschecking that generated files are newer than configure... doneconfigure: creating ./config.statusconfig.status: creating Makefileconfig.status: creating docs/Makefileconfig.status: creating docs/examples/Makefileconfig.status: creating docs/libcurl/Makefileconfig.status: creating docs/libcurl/opts/Makefileconfig.status: creating docs/cmdline-opts/Makefileconfig.status: creating include/Makefileconfig.status: creating include/curl/Makefileconfig.status: creating src/Makefileconfig.status: creating lib/Makefileconfig.status: creating scripts/Makefileconfig.status: creating lib/libcurl.versconfig.status: creating lib/libcurl.plistconfig.status: creating tests/Makefileconfig.status: creating tests/configconfig.status: creating tests/certs/Makefileconfig.status: creating tests/certs/scripts/Makefileconfig.status: creating tests/data/Makefileconfig.status: creating tests/server/Makefileconfig.status: creating tests/libtest/Makefileconfig.status: creating tests/unit/Makefileconfig.status: creating tests/http/config.iniconfig.status: creating tests/http/Makefileconfig.status: creating tests/http/clients/Makefileconfig.status: creating packages/Makefileconfig.status: creating packages/vms/Makefileconfig.status: creating curl-configconfig.status: creating libcurl.pcconfig.status: creating lib/curl_config.hconfig.status: executing depfiles commandsconfig.status: executing libtool commandsconfigure: Configured to build curl/libcurl: Host setup: x86_64-pc-linux-gnu Install prefix: /cluster/spack/apps/linux-centos7-x86_64/intel-2022.1.2/curl-8.1.2-bxyrvwdahcrw26qpwcr7m7wjp47kqfq7 Compiler: /cluster/apps/spack/lib/spack/env/intel/icc -std=gnu11 CFLAGS: -we147 -Werror-implicit-function-declaration -O2 -Wno-system-headers -pthread CPPFLAGS: -isystem /cluster/spack/apps/linux-centos7-x86_64/intel-2022.1.2/zlib-1.3-pg4ety5pr7rblsspzcc4eeruf2jsnncc/include -isystem /cluster/spack/apps/linux-centos7-x86_64/intel-2022.1.2/libidn2-2.3.4-i67qz2zbmwg5thnfl2esdgnchro5awmq/include LDFLAGS: -L/cluster/spack/apps/linux-centos7-x86_64/intel-2022.1.2/zlib-1.3-pg4ety5pr7rblsspzcc4eeruf2jsnncc/lib -L/usr/lib64 -L/cluster/spack/apps/linux-centos7-x86_64/intel-2022.1.2/libidn2-2.3.4-i67qz2zbmwg5thnfl2esdgnchro5awmq/lib LIBS: -lidn2 -lssl -lcrypto -lssl -lcrypto -lz curl version: 8.1.2 SSL: enabled (OpenSSL) SSH: no (--with-{libssh,libssh2}) zlib: enabled brotli: no (--with-brotli) zstd: no (--with-zstd) GSS-API: no (--with-gssapi) GSASL: no (--with-gsasl) TLS-SRP: no (--enable-tls-srp) resolver: POSIX threaded IPv6: enabled Unix sockets: enabled IDN: enabled (libidn2) Build libcurl: Shared=yes, Static=yes Built-in manual: enabled --libcurl option: enabled (--disable-libcurl-option) Verbose errors: enabled (--disable-verbose) Code coverage: disabled SSPI: no (--enable-sspi) ca cert bundle: no ca cert path: no ca fallback: yes LDAP: no (--enable-ldap / --with-ldap-lib / --with-lber-lib) LDAPS: no (--enable-ldaps)
2025-04-15