mirror of
https://github.com/libssh2/libssh2.git
synced 2025-07-29 13:01:14 +03:00
- Build scripts must be executed by the os/400 shell (sh), not bash which
is a PASE program: The `-ot` non-POSIX test extension works in os/400 as
well. Ref: https://github.com/libssh2/libssh2/pull/1364#issue-2241646754
- Drop/fixup mods trying to make some syntax highlighters happier.
Follow-up to c6625707b9
#1358
Assisted-by: Patrick Monnerat
Closes #1364
Closes #1366
29 lines
1.4 KiB
Bash
29 lines
1.4 KiB
Bash
#!/bin/sh
|
|
# Copyright (C) The libssh2 project and its contributors.
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
################################################################################
|
|
|
|
# Tunable configuration parameters.
|
|
|
|
setenv TARGETLIB 'LIBSSH2' # Target OS/400 program library.
|
|
setenv STATBNDDIR 'LIBSSH2_A' # Static binding directory.
|
|
setenv DYNBNDDIR 'LIBSSH2' # Dynamic binding directory.
|
|
setenv SRVPGM "LIBSSH2.${SONAME}" # Service program.
|
|
setenv TGTCCSID '500' # Target CCSID of objects.
|
|
setenv DEBUG '*ALL' # Debug level.
|
|
setenv OPTIMIZE '10' # Optimisation level
|
|
setenv OUTPUT '*NONE' # Compilation output option.
|
|
setenv TGTRLS '*CURRENT' # Target OS release.
|
|
setenv IFSDIR '/libssh2' # Installation IFS directory.
|
|
setenv QADRTDIR '/QIBM/ProdData/qadrt' # QADRT IFS directory.
|
|
|
|
setenv WITH_MD5 'yes' # enable MD5 support.
|
|
|
|
# Define ZLIB availability and locations.
|
|
|
|
setenv WITH_ZLIB 0 # Define to 1 to enable.
|
|
setenv ZLIB_INCLUDE '/zlib/include' # ZLIB include IFS directory.
|
|
setenv ZLIB_LIB 'ZLIB' # ZLIB library.
|
|
setenv ZLIB_BNDDIR 'ZLIB_A' # ZLIB binding directory.
|