mirror of
https://github.com/moparisthebest/curl
synced 2024-10-31 23:55:01 -04:00
3ee32d7920
New declarations in curl.h reported to curl.inc.in. Copyrights extended to 2008. SONAME handling introduced in build scripts.
209 lines
6.4 KiB
Bash
209 lines
6.4 KiB
Bash
#!/bin/sh
|
|
#
|
|
# libcurl compilation script for the OS/400.
|
|
#
|
|
# $Id$
|
|
|
|
SCRIPTDIR=`dirname "${0}"`
|
|
. "${SCRIPTDIR}/initscript.sh"
|
|
cd "${TOPDIR}/lib"
|
|
|
|
|
|
# Create ca-bundle.h file.
|
|
|
|
if action_needed "ca-bundle.h"
|
|
then echo "/* This file is generated automatically */" > ca-bundle.h
|
|
echo "#ifndef CURL_CA_BUNDLE" >> ca-bundle.h
|
|
|
|
if [ "${CABUNDLE}" ]
|
|
then echo '#define CURL_CA_BUNDLE @CURL_CA_BUNDLE@' >> ca-bundle.h
|
|
else echo '#undef CURL_CA_BUNDLE /* unknown */' >> ca-bundle.h
|
|
fi
|
|
|
|
echo "#endif" >> ca-bundle.h
|
|
fi
|
|
|
|
|
|
# Create and compile the identification source file.
|
|
|
|
echo '#pragma comment(user, "libcurl version '"${LIBCURL_VERSION}"'")' > os400.c
|
|
echo '#pragma comment(date)' >> os400.c
|
|
echo '#pragma comment(copyright, "Copyright (C) 1998-2008 Daniel Stenberg et al. OS/400 version by P. Monnerat")' >> os400.c
|
|
make_module OS400 os400.c
|
|
LINK= # No need to rebuild service program yet.
|
|
MODULES=
|
|
|
|
|
|
# Get source list.
|
|
|
|
CSOURCES()
|
|
|
|
{
|
|
shift # Drop the equal sign.
|
|
CSOURCES="$*" # Get the file names.
|
|
}
|
|
|
|
HHEADERS()
|
|
|
|
{
|
|
shift # Drop the equal sign.
|
|
HHEADERS="$*" # Get the file names.
|
|
}
|
|
|
|
. Makefile.inc
|
|
|
|
|
|
# Compile the sources into modules.
|
|
|
|
INCLUDES="'`pwd`'"
|
|
|
|
make_module OS400SYS "${SCRIPTDIR}/os400sys.c"
|
|
make_module CCSIDCURL "${SCRIPTDIR}/ccsidcurl.c"
|
|
|
|
for SRC in ${CSOURCES}
|
|
do MODULE=`basename "${SRC}" .c |
|
|
tr '[a-z]' '[A-Z]' |
|
|
sed -e 's/^\(..........\).*/\1/'`
|
|
make_module "${MODULE}" "${SRC}"
|
|
done
|
|
|
|
|
|
# If needed, (re)create the static binding directory.
|
|
|
|
if action_needed "${LIBIFSNAME}/${STATBNDDIR}.BNDDIR"
|
|
then LINK=YES
|
|
fi
|
|
|
|
if [ "${LINK}" ]
|
|
then rm -rf "${LIBIFSNAME}/${STATBNDDIR}.BNDDIR"
|
|
CMD="CRTBNDDIR BNDDIR(${TARGETLIB}/${STATBNDDIR})"
|
|
CMD="${CMD} TEXT('LibCurl API static binding directory')"
|
|
system "${CMD}"
|
|
|
|
for MODULE in ${MODULES}
|
|
do CMD="ADDBNDDIRE BNDDIR(${TARGETLIB}/${STATBNDDIR})"
|
|
CMD="${CMD} OBJ((${TARGETLIB}/${MODULE} *MODULE))"
|
|
system "${CMD}"
|
|
done
|
|
fi
|
|
|
|
|
|
# The exportation file for service program creation must be in a DB2
|
|
# source file, so make sure it exists.
|
|
|
|
if action_needed "${LIBIFSNAME}/TOOLS.FILE"
|
|
then CMD="CRTSRCPF FILE(${TARGETLIB}/TOOLS) RCDLEN(112)"
|
|
CMD="${CMD} TEXT('curl: build tools')"
|
|
system "${CMD}"
|
|
fi
|
|
|
|
|
|
# Gather the list of symbols to export.
|
|
|
|
EXPORTS=`grep '^CURL_EXTERN[ ]' \
|
|
"${TOPDIR}"/include/curl/*.h \
|
|
"${SCRIPTDIR}/ccsidcurl.h" |
|
|
sed -e 's/^.*CURL_EXTERN[ ]\(.*\)(.*$/\1/' \
|
|
-e 's/[ ]*$//' \
|
|
-e 's/^.*[ ][ ]*//' \
|
|
-e 's/^\*//' \
|
|
-e 's/(\(.*\))/\1/'`
|
|
|
|
# Create the service program exportation file in DB2 member if needed.
|
|
|
|
BSF="${LIBIFSNAME}/TOOLS.FILE/BNDSRC.MBR"
|
|
|
|
if action_needed "${BSF}" Makefile.am
|
|
then LINK=YES
|
|
fi
|
|
|
|
if [ "${LINK}" ]
|
|
then echo " STRPGMEXP PGMLVL(*CURRENT) SIGNATURE('LIBCURL_${SONAME}')" \
|
|
> "${BSF}"
|
|
for EXPORT in ${EXPORTS}
|
|
do echo ' EXPORT SYMBOL("'"${EXPORT}"'")' >> "${BSF}"
|
|
done
|
|
|
|
echo ' ENDPGMEXP' >> "${BSF}"
|
|
fi
|
|
|
|
|
|
# Build the service program if needed.
|
|
|
|
if action_needed "${LIBIFSNAME}/${SRVPGM}.SRVPGM"
|
|
then LINK=YES
|
|
fi
|
|
|
|
if [ "${LINK}" ]
|
|
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 QGLDCLNT QGLDBRDR)"
|
|
CMD="${CMD} TEXT('curl API library')"
|
|
CMD="${CMD} TGTRLS(${TGTRLS})"
|
|
system "${CMD}"
|
|
LINK=YES
|
|
fi
|
|
|
|
|
|
# If needed, (re)create the dynamic binding directory.
|
|
|
|
if action_needed "${LIBIFSNAME}/${DYNBNDDIR}.BNDDIR"
|
|
then LINK=YES
|
|
fi
|
|
|
|
if [ "${LINK}" ]
|
|
then rm -rf "${LIBIFSNAME}/${DYNBNDDIR}.BNDDIR"
|
|
CMD="CRTBNDDIR BNDDIR(${TARGETLIB}/${DYNBNDDIR})"
|
|
CMD="${CMD} TEXT('LibCurl API dynamic binding directory')"
|
|
system "${CMD}"
|
|
CMD="ADDBNDDIRE BNDDIR(${TARGETLIB}/${DYNBNDDIR})"
|
|
CMD="${CMD} OBJ((*LIBL/${SRVPGM} *SRVPGM))"
|
|
system "${CMD}"
|
|
fi
|
|
|
|
|
|
# Rebuild the formdata test if needed.
|
|
|
|
if [ "${TEST_FORMDATA}" ]
|
|
then MODULES=
|
|
make_module TFORMDATA formdata.c "'_FORM_DEBUG' 'CURLDEBUG'"
|
|
make_module TSTREQUAL strequal.c "'_FORM_DEBUG' 'CURLDEBUG'"
|
|
make_module TMEMDEBUG memdebug.c "'_FORM_DEBUG' 'CURLDEBUG'"
|
|
make_module TMPRINTF mprintf.c "'_FORM_DEBUG' 'CURLDEBUG'"
|
|
make_module TSTRERROR strerror.c "'_FORM_DEBUG' 'CURLDEBUG'"
|
|
# The following modules should not be needed (see comment in
|
|
# formdata.c. However, there are some unsatisfied
|
|
# external references leading in the following
|
|
# modules to be (recursively) needed.
|
|
MODULES="${MODULES} EASY STRDUP SSLGEN QSSL HOSTIP HOSTIP4 HOSTIP6"
|
|
MODULES="${MODULES} URL HASH TRANSFER GETINFO COOKIE SENDF SELECT"
|
|
MODULES="${MODULES} INET_NTOP SHARE HOSTTHRE MULTI LLIST FTP HTTP"
|
|
MODULES="${MODULES} HTTP_DIGES HTTP_CHUNK HTTP_NEGOT TIMEVAL HOSTSYN"
|
|
MODULES="${MODULES} CONNECT SOCKS PROGRESS ESCAPE INET_PTON GETENV"
|
|
MODULES="${MODULES} DICT LDAP TELNET FILE TFTP NETRC PARSEDATE"
|
|
MODULES="${MODULES} SPEEDCHECK SPLAY BASE64 SECURITY IF2IP MD5"
|
|
MODULES="${MODULES} KRB5 OS400SYS"
|
|
|
|
PGMIFSNAME="${LIBIFSNAME}/TFORMDATA.PGM"
|
|
|
|
if action_needed "${PGMIFSNAME}"
|
|
then LINK=YES
|
|
fi
|
|
|
|
if [ "${LINK}" ]
|
|
then CMD="CRTPGM PGM(${TARGETLIB}/TFORMDATA)"
|
|
CMD="${CMD} ENTMOD(QADRT/QADRTMAIN2)"
|
|
CMD="${CMD} MODULE("
|
|
|
|
for MODULE in ${MODULES}
|
|
do CMD="${CMD} ${TARGETLIB}/${MODULE}"
|
|
done
|
|
|
|
CMD="${CMD} ) BNDSRVPGM(QADRTTS)"
|
|
CMD="${CMD} TGTRLS(${TGTRLS})"
|
|
system "${CMD}"
|
|
fi
|
|
fi
|