#!/bin/sh #*************************************************************************** # _ _ ____ _ # Project ___| | | | _ \| | # / __| | | | |_) | | # | (__| |_| | _ <| |___ # \___|\___/|_| \_\_____| # # Copyright (C) Daniel Stenberg, , et al. # # This software is licensed as described in the file COPYING, which # you should have received as part of this distribution. The terms # are also available at https://curl.se/docs/copyright.html. # # You may opt to use, copy, modify, merge, publish, distribute and/or sell # copies of the Software, and permit persons to whom the Software is # furnished to do so, under the terms of the COPYING file. # # This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY # KIND, either express or implied. # # SPDX-License-Identifier: curl # ########################################################################### prefix="/usr" # Used in /usr/lib64 # shellcheck disable=SC2034 exec_prefix=${prefix} # shellcheck disable=SC2034 includedir=${prefix}/include cppflag_curl_staticlib= usage() { cat <&2 exit 1 fi ;; --configure) echo " '--prefix=/usr' '--build=x86_64-pc-linux-gnu' '--host=x86_64-pc-linux-gnu' '--mandir=/usr/share/man' '--infodir=/usr/share/info' '--datadir=/usr/share' '--sysconfdir=/etc' '--localstatedir=/var/lib' '--datarootdir=/usr/share' '--disable-dependency-tracking' '--disable-silent-rules' '--docdir=/usr/share/doc/curl-8.8.0-r1' '--htmldir=/usr/share/doc/curl-8.8.0-r1/html' '--with-sysroot=/' '--libdir=/usr/lib64' '--without-ca-fallback' '--with-ca-bundle=/etc/ssl/certs/ca-certificates.crt' '--without-gnutls' '--without-mbedtls' '--without-rustls' '--with-ssl' '--with-ca-path=/etc/ssl/certs' '--with-default-ssl-backend=openssl' '--enable-alt-svc' '--enable-basic-auth' '--enable-bearer-auth' '--enable-digest-auth' '--enable-kerberos-auth' '--enable-negotiate-auth' '--enable-aws' '--enable-dict' '--disable-ech' '--enable-file' '--enable-ftp' '--disable-gopher' '--enable-hsts' '--enable-http' '--enable-imap' '--disable-ldap' '--disable-ldaps' '--enable-ntlm' '--enable-pop3' '--enable-rt' '--enable-rtsp' '--enable-smb' '--with-libssh2' '--enable-smtp' '--enable-telnet' '--enable-tftp' '--enable-tls-srp' '--enable-ares' '--enable-cookies' '--enable-dateparse' '--enable-dnsshuffle' '--enable-doh' '--enable-symbol-hiding' '--enable-http-auth' '--enable-ipv6' '--enable-largefile' '--enable-manual' '--enable-mime' '--enable-netrc' '--enable-progress-meter' '--enable-proxy' '--enable-socketpair' '--disable-sspi' '--disable-static' '--enable-pthreads' '--enable-threaded-resolver' '--disable-versioned-symbols' '--without-amissl' '--without-bearssl' '--without-brotli' '--with-fish-functions-dir=/usr/share/fish/vendor_completions.d' '--with-nghttp2' '--without-hyper' '--without-libidn2' '--without-gssapi' '--without-libgsasl' '--with-libpsl' '--without-msh3' '--without-nghttp3' '--without-ngtcp2' '--without-quiche' '--without-librtmp' '--without-schannel' '--without-secure-transport' '--without-test-caddy' '--without-test-httpd' '--without-test-nghttpx' '--disable-websockets' '--without-winidn' '--without-wolfssl' '--with-zlib' '--without-zstd' '--with-zsh-functions-dir=/usr/share/zsh/site-functions' 'build_alias=x86_64-pc-linux-gnu' 'host_alias=x86_64-pc-linux-gnu' 'CFLAGS=-O2 -march=core2 -pipe' 'LDFLAGS=-Wl,-O1 -Wl,--as-needed -Wl,-z,pack-relative-relocs'" ;; *) echo "unknown option: $1" usage 1 ;; esac shift done exit 0