1*6236dae4SAndroid Build Coastguard Worker#!/bin/sh 2*6236dae4SAndroid Build Coastguard Worker#*************************************************************************** 3*6236dae4SAndroid Build Coastguard Worker# _ _ ____ _ 4*6236dae4SAndroid Build Coastguard Worker# Project ___| | | | _ \| | 5*6236dae4SAndroid Build Coastguard Worker# / __| | | | |_) | | 6*6236dae4SAndroid Build Coastguard Worker# | (__| |_| | _ <| |___ 7*6236dae4SAndroid Build Coastguard Worker# \___|\___/|_| \_\_____| 8*6236dae4SAndroid Build Coastguard Worker# 9*6236dae4SAndroid Build Coastguard Worker# Copyright (C) Daniel Stenberg, <[email protected]>, et al. 10*6236dae4SAndroid Build Coastguard Worker# 11*6236dae4SAndroid Build Coastguard Worker# This software is licensed as described in the file COPYING, which 12*6236dae4SAndroid Build Coastguard Worker# you should have received as part of this distribution. The terms 13*6236dae4SAndroid Build Coastguard Worker# are also available at https://curl.se/docs/copyright.html. 14*6236dae4SAndroid Build Coastguard Worker# 15*6236dae4SAndroid Build Coastguard Worker# You may opt to use, copy, modify, merge, publish, distribute and/or sell 16*6236dae4SAndroid Build Coastguard Worker# copies of the Software, and permit persons to whom the Software is 17*6236dae4SAndroid Build Coastguard Worker# furnished to do so, under the terms of the COPYING file. 18*6236dae4SAndroid Build Coastguard Worker# 19*6236dae4SAndroid Build Coastguard Worker# This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY 20*6236dae4SAndroid Build Coastguard Worker# KIND, either express or implied. 21*6236dae4SAndroid Build Coastguard Worker# 22*6236dae4SAndroid Build Coastguard Worker# SPDX-License-Identifier: curl 23*6236dae4SAndroid Build Coastguard Worker# 24*6236dae4SAndroid Build Coastguard Worker########################################################################### 25*6236dae4SAndroid Build Coastguard Worker 26*6236dae4SAndroid Build Coastguard Worker# Tunable configuration parameters. 27*6236dae4SAndroid Build Coastguard Worker 28*6236dae4SAndroid Build Coastguard Workersetenv TARGETLIB 'CURL' # Target OS/400 program library. 29*6236dae4SAndroid Build Coastguard Workersetenv STATBNDDIR 'CURL_A' # Static binding directory. 30*6236dae4SAndroid Build Coastguard Workersetenv DYNBNDDIR 'CURL' # Dynamic binding directory. 31*6236dae4SAndroid Build Coastguard Workersetenv SRVPGM "CURL.${SONAME}" # Service program. 32*6236dae4SAndroid Build Coastguard Workersetenv CURLPGM 'CURL' # CLI tool bound program. 33*6236dae4SAndroid Build Coastguard Workersetenv CURLCMD 'CURL' # CL command name. 34*6236dae4SAndroid Build Coastguard Workersetenv CURLCLI 'CURLCL' # CL interface program. 35*6236dae4SAndroid Build Coastguard Workersetenv TGTCCSID '500' # Target CCSID of objects. 36*6236dae4SAndroid Build Coastguard Workersetenv DEBUG '*ALL' # Debug level. 37*6236dae4SAndroid Build Coastguard Workersetenv OPTIMIZE '10' # Optimization level 38*6236dae4SAndroid Build Coastguard Workersetenv OUTPUT '*NONE' # Compilation output option. 39*6236dae4SAndroid Build Coastguard Workersetenv TGTRLS '*CURRENT' # Target OS release. 40*6236dae4SAndroid Build Coastguard Workersetenv IFSDIR '/curl' # Installation IFS directory. 41*6236dae4SAndroid Build Coastguard Workersetenv QADRTDIR '/QIBM/ProdData/qadrt' # QADRT IFS directory. 42*6236dae4SAndroid Build Coastguard Workersetenv PASEPERL '/QOpenSys/pkgs/bin/perl' # PASE Perl interpreter. 43*6236dae4SAndroid Build Coastguard Worker 44*6236dae4SAndroid Build Coastguard Worker# Define ZLIB availability and locations. 45*6236dae4SAndroid Build Coastguard Worker 46*6236dae4SAndroid Build Coastguard Workersetenv WITH_ZLIB 0 # Define to 1 to enable. 47*6236dae4SAndroid Build Coastguard Workersetenv ZLIB_INCLUDE '/zlib/include' # ZLIB include IFS directory. 48*6236dae4SAndroid Build Coastguard Workersetenv ZLIB_LIB 'ZLIB' # ZLIB library. 49*6236dae4SAndroid Build Coastguard Workersetenv ZLIB_BNDDIR 'ZLIB_A' # ZLIB binding directory. 50*6236dae4SAndroid Build Coastguard Worker 51*6236dae4SAndroid Build Coastguard Worker# Define LIBSSH2 availability and locations. 52*6236dae4SAndroid Build Coastguard Worker 53*6236dae4SAndroid Build Coastguard Workersetenv WITH_LIBSSH2 0 # Define to 1 to enable. 54*6236dae4SAndroid Build Coastguard Workersetenv LIBSSH2_INCLUDE '/libssh2/include' # LIBSSH2 include IFS directory. 55*6236dae4SAndroid Build Coastguard Workersetenv LIBSSH2_LIB 'LIBSSH2' # LIBSSH2 library. 56*6236dae4SAndroid Build Coastguard Workersetenv LIBSSH2_BNDDIR 'LIBSSH2_A' # LIBSSH2 binding directory. 57