config400.default 2.7 KB

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