Path: blob/main/external/curl/packages/vms/gnv_curl_configure.sh
2066 views
# File: gnv_curl_configure.sh1#2# Set up and run the configure script for Curl so that it can find the3# proper options for VMS.4#5# Copyright (C) John Malmberg6#7# Permission to use, copy, modify, and/or distribute this software for any8# purpose with or without fee is hereby granted, provided that the above9# copyright notice and this permission notice appear in all copies.10#11# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES12# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF13# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR14# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES15# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN16# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT17# OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.18#19# SPDX-License-Identifier: ISC20#21#==========================================================================22#23# POSIX exit mode is needed for Unix shells.24export GNV_CC_MAIN_POSIX_EXIT=125#26# Where to look for the helper files.27export GNV_OPT_DIR=.28#29# How to find the SSL library files.30export LIB_OPENSSL=/SSL_LIB31#32# Override configure adding -std1 which is too strict for what curl33# actually wants.34export GNV_CC_QUALIFIERS=/STANDARD=RELAXED35#36# Set the directory to where the Configure script actually is.37cd ../..38#39#40./configure --prefix=/usr --exec-prefix=/usr --disable-dependency-tracking \41--disable-libtool-lock --with-gssapi --disable-ntlm-wb \42--with-ca-path=gnv\$curl_ca_path43#444546