113498266Sopenharmony_ci#!/bin/sh 213498266Sopenharmony_ci#*************************************************************************** 313498266Sopenharmony_ci# _ _ ____ _ 413498266Sopenharmony_ci# Project ___| | | | _ \| | 513498266Sopenharmony_ci# / __| | | | |_) | | 613498266Sopenharmony_ci# | (__| |_| | _ <| |___ 713498266Sopenharmony_ci# \___|\___/|_| \_\_____| 813498266Sopenharmony_ci# 913498266Sopenharmony_ci# Copyright (C) Daniel Stenberg, <daniel@haxx.se>, et al. 1013498266Sopenharmony_ci# 1113498266Sopenharmony_ci# This software is licensed as described in the file COPYING, which 1213498266Sopenharmony_ci# you should have received as part of this distribution. The terms 1313498266Sopenharmony_ci# are also available at https://curl.se/docs/copyright.html. 1413498266Sopenharmony_ci# 1513498266Sopenharmony_ci# You may opt to use, copy, modify, merge, publish, distribute and/or sell 1613498266Sopenharmony_ci# copies of the Software, and permit persons to whom the Software is 1713498266Sopenharmony_ci# furnished to do so, under the terms of the COPYING file. 1813498266Sopenharmony_ci# 1913498266Sopenharmony_ci# This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY 2013498266Sopenharmony_ci# KIND, either express or implied. 2113498266Sopenharmony_ci# 2213498266Sopenharmony_ci# SPDX-License-Identifier: curl 2313498266Sopenharmony_ci# 2413498266Sopenharmony_ci########################################################################### 2513498266Sopenharmony_ci 2613498266Sopenharmony_ci# Tunable configuration parameters. 2713498266Sopenharmony_ci 2813498266Sopenharmony_cisetenv TARGETLIB 'CURL' # Target OS/400 program library. 2913498266Sopenharmony_cisetenv STATBNDDIR 'CURL_A' # Static binding directory. 3013498266Sopenharmony_cisetenv DYNBNDDIR 'CURL' # Dynamic binding directory. 3113498266Sopenharmony_cisetenv SRVPGM "CURL.${SONAME}" # Service program. 3213498266Sopenharmony_cisetenv CURLPGM 'CURL' # CLI tool bound program. 3313498266Sopenharmony_cisetenv CURLCMD 'CURL' # CL command name. 3413498266Sopenharmony_cisetenv CURLCLI 'CURLCL' # CL interface program. 3513498266Sopenharmony_cisetenv TGTCCSID '500' # Target CCSID of objects. 3613498266Sopenharmony_cisetenv DEBUG '*ALL' # Debug level. 3713498266Sopenharmony_cisetenv OPTIMIZE '10' # Optimization level 3813498266Sopenharmony_cisetenv OUTPUT '*NONE' # Compilation output option. 3913498266Sopenharmony_cisetenv TGTRLS '*CURRENT' # Target OS release. 4013498266Sopenharmony_cisetenv IFSDIR '/curl' # Installation IFS directory. 4113498266Sopenharmony_cisetenv QADRTDIR '/QIBM/ProdData/qadrt' # QADRT IFS directory. 4213498266Sopenharmony_ci 4313498266Sopenharmony_ci# Define ZLIB availability and locations. 4413498266Sopenharmony_ci 4513498266Sopenharmony_cisetenv WITH_ZLIB 0 # Define to 1 to enable. 4613498266Sopenharmony_cisetenv ZLIB_INCLUDE '/zlib/include' # ZLIB include IFS directory. 4713498266Sopenharmony_cisetenv ZLIB_LIB 'ZLIB' # ZLIB library. 4813498266Sopenharmony_cisetenv ZLIB_BNDDIR 'ZLIB_A' # ZLIB binding directory. 4913498266Sopenharmony_ci 5013498266Sopenharmony_ci# Define LIBSSH2 availability and locations. 5113498266Sopenharmony_ci 5213498266Sopenharmony_cisetenv WITH_LIBSSH2 0 # Define to 1 to enable. 5313498266Sopenharmony_cisetenv LIBSSH2_INCLUDE '/libssh2/include' # LIBSSH2 include IFS directory. 5413498266Sopenharmony_cisetenv LIBSSH2_LIB 'LIBSSH2' # LIBSSH2 library. 5513498266Sopenharmony_cisetenv LIBSSH2_BNDDIR 'LIBSSH2_A' # LIBSSH2 binding directory. 56