#!/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 # ########################################################################### # shellcheck disable=SC2006 prefix='/usr' # Used in 'libdir' # shellcheck disable=SC2034 exec_prefix="/usr" # shellcheck disable=SC2034 includedir="/usr/include" usage() { cat <&2 exit 1 fi ;; --configure) echo " '--host=x86_64-eisfair-linux' '--build=x86_64-eisfair-linux' '--program-prefix=' '--disable-dependency-tracking' '--prefix=/usr' '--exec-prefix=/usr' '--bindir=/usr/bin' '--sbindir=/usr/sbin' '--sysconfdir=/etc' '--datadir=/usr/share' '--includedir=/usr/include' '--libdir=/usr/lib64' '--libexecdir=/usr/libexec' '--localstatedir=/var' '--sharedstatedir=/var/lib' '--mandir=/usr/share/man' '--infodir=/usr/share/info' '--enable-hsts' '--enable-ipv6' '--with-openssl' '--with-ca-fallback' '--without-ca-path' '--without-ca-bundle' '--with-libidn2' '--with-nghttp2' '--enable-docs' '--with-gssapi=/usr' '--with-brotli' '--with-libssh' '--enable-symbol-hiding' '--disable-static' '--enable-threaded-resolver' '--with-zsh-functions-dir=/usr/share/zsh/site-functions/' '--with-fish-functions-dir=/usr/share/fish/vendor_completions.d' '--disable-ldap' 'build_alias=x86_64-eisfair-linux' 'host_alias=x86_64-eisfair-linux' 'CFLAGS=-O2 -g -m64 -fmessage-length=0 -fstack-protector -funwind-tables -fasynchronous-unwind-tables -fPIE' 'LDFLAGS= -Wl,-z,defs,-z,now,-z,relro -pie' 'CPPFLAGS=-D_FORTIFY_SOURCE=2'" ;; *) echo "unknown option: $1" usage 1 ;; esac shift done exit 0