Define new options in OS400 RPG interface

Port OS400 compilation scripts to >= V5R2M0
This commit is contained in:
Patrick Monnerat 2007-12-10 17:09:09 +00:00
parent bd99a7dc8c
commit a83e72692f
4 changed files with 9 additions and 5 deletions

View File

@ -181,8 +181,8 @@ objects:
_ Library CURL. All other objects will be stored in this library.
_ Modules for all libcurl units.
_ Binding directory CURL_A, to be used at calling program link time for
statically binding the modules (specify BNDSRVPGM(QADRTTS) when creating a
program using CURL_A).
statically binding the modules (specify BNDSRVPGM(QADRTTS QGLDCLNT QGLDBRDR)
when creating a program using CURL_A).
_ Service program CURL, to be used at calling program run-time when this program
has dynamically bound curl at link time.
_ Binding directory CURL. To be used to dynamically bind libcurl when linking a

View File

@ -552,7 +552,7 @@
d c 00061
d CURLOPT_INTERFACE...
d c 10062
d CURLOPT_KRB4LEVEL...
d CURLOPT_KRBLEVEL...
d c 10063
d CURLOPT_SSL_VERIFYPEER...
d c 00064
@ -731,6 +731,10 @@
d c 20163
d CURLOPT_OPENSOCKETDATA...
d c 10164
d CURLOPT_COPYPOSTFIELDS...
d c 10165
d CURLOPT_PROXY_TRANSFER_MODE...
d c 00166
*
d CURLFORMcode s 10i 0 based(######ptr######) Enum
d CURL_FORMADD_OK...

View File

@ -35,7 +35,7 @@ TGTCCSID='500' # Target CCSID of objects
DEBUG='*ALL' # Debug level
OPTIMIZE='10' # Optimisation level
OUTPUT='*NONE' # Compilation output option.
TGTRLS='V5R1M0' # Target OS release
TGTRLS='V5R2M0' # Target OS release
export TARGETLIB STATBNDDIR DYNBNDDIR SRVPGM TGTCCSID DEBUG OPTIMIZE OUTPUTC
export TGTRLS

View File

@ -138,7 +138,7 @@ then CMD="CRTSRVPGM SRVPGM(${TARGETLIB}/${SRVPGM})"
CMD="${CMD} SRCFILE(${TARGETLIB}/TOOLS) SRCMBR(BNDSRC)"
CMD="${CMD} MODULE(${TARGETLIB}/OS400)"
CMD="${CMD} BNDDIR(${TARGETLIB}/${STATBNDDIR})"
CMD="${CMD} BNDSRVPGM(QADRTTS)"
CMD="${CMD} BNDSRVPGM(QADRTTS QGLDCLNT QGLDBRDR)"
CMD="${CMD} TEXT('curl API library')"
CMD="${CMD} TGTRLS(${TGTRLS})"
system "${CMD}"