summaryrefslogtreecommitdiffstats
path: root/Utilities/cmcurl-7.19.0/packages/OS400/make-include.sh
diff options
context:
space:
mode:
Diffstat (limited to 'Utilities/cmcurl-7.19.0/packages/OS400/make-include.sh')
-rwxr-xr-xUtilities/cmcurl-7.19.0/packages/OS400/make-include.sh55
1 files changed, 55 insertions, 0 deletions
diff --git a/Utilities/cmcurl-7.19.0/packages/OS400/make-include.sh b/Utilities/cmcurl-7.19.0/packages/OS400/make-include.sh
new file mode 100755
index 0000000..ecbc7e1
--- /dev/null
+++ b/Utilities/cmcurl-7.19.0/packages/OS400/make-include.sh
@@ -0,0 +1,55 @@
+#!/bin/sh
+#
+# Installation of the include files in the OS/400 library.
+#
+# $Id$
+
+SCRIPTDIR=`dirname "${0}"`
+. "${SCRIPTDIR}/initscript.sh"
+cd "${TOPDIR}/include"
+
+
+# Produce the curlbuild.h include file.
+
+if action_needed curl/curlbuild.h curl/curlbuild.h.dist
+then cp -p curl/curlbuild.h.dist curl/curlbuild.h
+fi
+
+
+# Create the OS/400 source program file for the include files.
+
+SRCPF="${LIBIFSNAME}/H.FILE"
+
+if action_needed "${SRCPF}"
+then CMD="CRTSRCPF FILE(${TARGETLIB}/H) RCDLEN(112)"
+ CMD="${CMD} CCSID(${TGTCCSID}) TEXT('curl: Header files')"
+ system "${CMD}"
+fi
+
+
+# Enumeration values are used as va_arg tagfields, so they MUST be
+# integers.
+
+copy_hfile()
+
+{
+ sed -e '1i\
+#pragma enum(int)\
+' -e '$a\
+#pragma enum(pop)\
+' < "${2}" > "${1}"
+}
+
+# Copy the header files.
+
+for HFILE in curl/*.h ${SCRIPTDIR}/ccsidcurl.h
+do DEST="${SRCPF}/`db2_name \"${HFILE}\"`.MBR"
+ if action_needed "${DEST}" "${HFILE}"
+ then copy_hfile "${DEST}" "${HFILE}"
+ fi
+done
+
+
+# Copy the ILE/RPG include file, setting-up version number.
+
+ versioned_copy "${SCRIPTDIR}/curl.inc.in" "${SRCPF}/CURL.INC.MBR"