aboutsummaryrefslogtreecommitdiff
path: root/libxml2-2.9.10/os400/make-include.sh
blob: 4e5b0589ae99ef8ddc3ca373edcf5e8ab81909d4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
#!/bin/sh
#
#       Installation of the C header files in the OS/400 library.
#
#       See Copyright for the status of this software.
#
#       Author: Patrick Monnerat <pm@datasphere.ch>, DATASPHERE S.A.
#

SCRIPTDIR=`dirname "${0}"`
. "${SCRIPTDIR}/initscript.sh"
cd "${TOPDIR}/include"


#       Create the OS/400 source program file for the C header files.

SRCPF="${LIBIFSNAME}/LIBXML.FILE"

if action_needed "${SRCPF}"
then    CMD="CRTSRCPF FILE(${TARGETLIB}/LIBXML) RCDLEN(112)"
        CMD="${CMD} CCSID(${TGTCCSID}) TEXT('libxml2: C/C++ header files')"
        system "${CMD}"
fi


#       Create the IFS directory for the C header files.

if action_needed "${IFSDIR}/include/libxml"
then    mkdir -p "${IFSDIR}/include/libxml"
fi



#       Enumeration values may be used as va_arg tagfields, so they MUST be
#               integers.

copy_hfile()

{
        sed -e '1i\
#pragma enum(int)\
' "${@}" -e '$a\
#pragma enum(pop)\
'
}

#       Copy the header files to DB2 library. Link from IFS include directory.

for HFILE in "${TOPDIR}/os400/transcode.h" libxml/*.h libxml/*.h.in
do      CMD="cat \"${HFILE}\""
        DEST="${SRCPF}/`db2_name \"${HFILE}\" nomangle`.MBR"

        case "`basename \"${HFILE}\"`" in

        xmlwin32version.h*)
                continue;;      # Not on M$W !

        *.in)   CMD="${CMD} | versioned_copy";;

        xmlschemastypes.h)      #       Special case: rename colliding file.
                DEST="${SRCPF}/SCHMTYPES.MBR";;

        esac

        if action_needed "${DEST}" "${HFILE}"
        then    eval "${CMD}" | copy_hfile > tmphdrfile

                #       Need to translate to target CCSID.

                CMD="CPY OBJ('`pwd`/tmphdrfile') TOOBJ('${DEST}')"
                CMD="${CMD} TOCCSID(${TGTCCSID}) DTAFMT(*TEXT) REPLACE(*YES)"
                system "${CMD}"
        fi

        IFSFILE="${IFSDIR}/include/libxml/`basename \"${HFILE}\" .in`"

        if action_needed "${IFSFILE}" "${DEST}"
        then    rm -f "${IFSFILE}"
                ln -s "${DEST}" "${IFSFILE}"
        fi
done