quickjs-tart

quickjs-based runtime for wallet-core logic
Log | Files | Refs | README | LICENSE

config400.default (2878B)


      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 
     28 setenv TARGETLIB        'CURL'                  # Target OS/400 program library.
     29 setenv STATBNDDIR       'CURL_A'                # Static binding directory.
     30 setenv DYNBNDDIR        'CURL'                  # Dynamic binding directory.
     31 setenv SRVPGM           "CURL.${SONAME}"        # Service program.
     32 setenv CURLPGM          'CURL'                  # CLI tool bound program.
     33 setenv CURLCMD          'CURL'                  # CL command name.
     34 setenv CURLCLI          'CURLCL'                # CL interface program.
     35 setenv TGTCCSID         '500'                   # Target CCSID of objects.
     36 setenv DEBUG            '*ALL'                  # Debug level.
     37 setenv OPTIMIZE         '10'                    # Optimization level
     38 setenv OUTPUT           '*NONE'                 # Compilation output option.
     39 setenv TGTRLS           '*CURRENT'              # Target OS release.
     40 setenv IFSDIR           '/curl'                 # Installation IFS directory.
     41 setenv QADRTDIR         '/QIBM/ProdData/qadrt'  # QADRT IFS directory.
     42 setenv PASEPERL         '/QOpenSys/pkgs/bin/perl'       # PASE Perl interpreter.
     43 
     44 #       Define ZLIB availability and locations.
     45 
     46 setenv WITH_ZLIB        0                       # Define to 1 to enable.
     47 setenv ZLIB_INCLUDE     '/zlib/include'         # ZLIB include IFS directory.
     48 setenv ZLIB_LIB         'ZLIB'                  # ZLIB library.
     49 setenv ZLIB_BNDDIR      'ZLIB_A'                # ZLIB binding directory.
     50 
     51 #       Define LIBSSH2 availability and locations.
     52 
     53 setenv WITH_LIBSSH2     0                       # Define to 1 to enable.
     54 setenv LIBSSH2_INCLUDE  '/libssh2/include'      # LIBSSH2 include IFS directory.
     55 setenv LIBSSH2_LIB      'LIBSSH2'               # LIBSSH2 library.
     56 setenv LIBSSH2_BNDDIR   'LIBSSH2_A'             # LIBSSH2 binding directory.