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