Re: [Arsperl-users] request for review & comment of procedure - Building ARSperl1.93 on RHEL6.4-64b
Brought to you by:
jeffmurphy
|
From: Tim L. <ti...@ti...> - 2015-02-18 20:24:24
|
another note:
You should also help the LD find the api764sp5linux libraries:
# export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/opt/remedy/api764sp5linux/lib
you'll know this is a solution if you get an error similar to the following:
[root@testrhel64bit ~]# perl
use ARS;
Can't load '/usr/local/lib64/perl5/auto/
ARS/ARS.so' for module ARS: libicuucbmc_lx64.so.32: cannot open shared
object file: No such file or directory at /usr/lib64/perl5/DynaLoader.pm
line 200.
at - line 1
Compilation failed in require at - line 1.
BEGIN failed--compilation aborted at - line 1.
On Thu, Oct 23, 2014 at 9:03 PM, Tim Lank <ti...@ti...> wrote:
> 1. OS (operating system) version (RHEL 6.4 64-bit)
> 2. Perl version (output from perl -v) (This is perl, v5.10.1 (*) built for
> x86_64-linux-thread-multi)
> 3. ARSystem version you are connecting to (7.6.04 SP5)
> 4. API version you compiled against (764sp5)
> 5. ARSperl version (1.93)
>
> Building 64bit ARSPerl against api764sp5linux
>
> BASE Directory for the resultant expansion of both tarballs
> (api764sp5linux.tar.gz and ARSperl-1.93.tar.gz) = /opt/remedy
>
> [root@testrhel64bit remedy]# pwd
> /opt/remedy
> [root@testrhel64bit remedy]# ls -al
> total 39448
> drwx------. 2 root root 4096 Oct 23 10:21 .
> drwxr-xr-x. 10 root root 4096 Oct 23 07:20 ..
> -rw-------. 1 root root 39916963 Oct 17 08:23 api764sp5linux.tar.gz
> -rw-------. 1 root root 460848 Apr 29 14:32 ARSperl-1.93.tar.gz
> -rwx------. 1 root root 621 Oct 23 10:20 prereqsetup.sh
>
> [root@testrhel64bit remedy]# cat prereqsetup.sh
> #!/bin/bash
>
> cd /opt/remedy
> tar xvzpf api764sp5linux.tar.gz
> tar xvzpf ARSperl-1.93.tar.gz
> chown -R root.root ARSperl-1.93
> cd ARSperl-1.93
> # need to remove all files from the ARSperl-1.93 tree that start with ._ -
> these are for Mac OSX only
> find . -name "._*" -exec rm -f {} \;
> cd /opt/remedy
> cp api764sp5linux/bin/* api764sp5linux/lib
> cd api764sp5linux/lib
> ln -s libicudatabmc.so.32 libicudatabmc.so
> ln -s libicui18nbmc.so.32 libicui18nbmc.so
> ln -s libicuiobmc.so.32 libicuiobmc.so
> ln -s libicuucbmc.so.32 libicuucbmc.so
> ln -s libicudatabmc_lx64.so.32 libicudatabmc_lx64.so
> ln -s libicui18nbmc_lx64.so.32 libicui18nbmc_lx64.so
> ln -s libicuiobmc_lx64.so.32 libicuiobmc_lx64.so
> ln -s libicuucbmc_lx64.so.32 libicuucbmc_lx64.so
>
>
> [root@testrhel64bit remedy]# ./prereqsetup.sh
>
>
> Customizations to ARSperl-1.93/Makefile.PL
>
> $ARSAPI = "/opt/remedy/api764sp5linux";
> $ARSVERSION = 7.64;
> $ARCHITECTURE = "lx64";
> $ENCRYPT = 0;
>
>
> Compilation Output Detail:
>
> [root@testrhel64bit ARSperl-1.93]# perl Makefile.PL
> Building against perl 5.010001
> Generating support.h file..
> Processing AR_STRUCT_ITEM codes..
> Processing AR_SERVER_STAT codes..
> Processing AR_SCHEMA codes..
> Processing AR_COM_PARM codes..
> Processing AR_COM_METHOD codes..
> Processing AR_DDE codes..
> Processing AR_ACTIVE_LINK_ACTION codes..
> Processing AR_ACTIVE_LINK_ACTION_OPEN codes..
> Processing AR_CHAR_MENU_DD type codes..
> Processing AR_CHAR_MENU_DD name codes..
> Processing AR_CHAR_MENU_DD value format..
> Processing AR_CHAR_MENU codes..
> Processing AR_FILTER_ACTION codes..
> Processing AR_MENU_REFRESH codes..
> Processing AR_PERMISSIONS (Schema) codes..
> Processing AR_PERMISSIONS (Field) codes..
> Processing AR_DATA_TYPE codes..
> Processing AR_BYTE_LIST codes..
> Processing AR_NO_MATCH codes..
> Processing AR_MULTI_MATCH codes..
> Processing AR_RETURN codes..
> Processing AR_FUNCTION codes..
> Processing ARCON codes..
> Processing ARCONOWNER codes..
> Processing ARREF codes..
> Processing AR_KEYWORD codes..
> Processing AR_SERVER_INFO codes..
> Processing AR_SIGNAL codes..
>
> Generating serverTypeInfoHints.h ..
> WARNING: gap in enumeration for AR_SERVER_INFO_STATS_APISQL_CONTROL
> expected 354 got 384. it's OK to ignore this. at infra/exsi.pl line 93,
> <> line 4839.
> WARNING: gap in enumeration for AR_SERVER_INFO_STATS_APISQL_MAX_SAVED
> expected 385 got 386. it's OK to ignore this. at infra/exsi.pl line 93,
> <> line 4840.
> Converting C header files to perl modules ..
> Configuring with options:
> ARSVERSION = 7.64
> ARSAPI = /opt/remedy/api764sp5linux
> AUTODEFINES = -g -Wno-unused-variable -Wuninitialized -DARS32
> -DARS452 -DPERL_PATCHLEVEL_IS=10 -DPERL_SUBVERSION_IS=1
> -DPERL_BASEREV_IS=50
> Writing Makefile for ARS
> === ARSperl 'make test' configuration. ===
>
> Please enter the following information. This information will be
> recorded in ./t/config.cache
>
> If you want to skip the 'make test' step, just hit ENTER
> three times. You can configure it later by either re-running
> 'perl Makefile.PL' or by editting ./t/config.cache
>
> Fair warning: you probably don't want to run 'make test' against a
> production ARSystem server.
>
> Server Name []:
> Admin Username []:
> Admin Password []:
> TCP Port [0]:
>
> Type 'make' (windows: 'nmake') to build ARSperl.
> Type 'make test' to test ARSperl before installing.
> Type 'make install' to install ARSperl.
>
> [root@testrhel64bit ARSperl-1.93]# make
> cp ARS/arerrno-h.pm blib/lib/ARS/arerrno-h.pm
> Skip blib/lib/ARS/OOsup.pm (unchanged)
> cp ARS/ar-h.pm blib/lib/ARS/ar-h.pm
> Skip blib/lib/ARS/nparm.pm (unchanged)
> Skip blib/lib/ARS/OOmsgs.pm (unchanged)
> Skip blib/lib/ARS/OOform.pm (unchanged)
> cp ARS.pm blib/lib/ARS.pm
> AutoSplitting blib/lib/ARS.pm (blib/lib/auto/ARS)
> /usr/bin/perl /usr/share/perl5/ExtUtils/xsubpp -typemap
> /usr/share/perl5/ExtUtils/typemap -typemap typemap ARS.xs > ARS.xsc && mv
> ARS.xsc ARS.c
> gcc -c -I/opt/remedy/api764sp5linux/include -D_REENTRANT -D_GNU_SOURCE
> -fno-strict-aliasing -pipe -fstack-protector -I/usr/local/include
> -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -O2 -g -pipe -Wall
> -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector
> --param=ssp-buffer-size=4 -m64 -mtune=generic -DVERSION=\"1.93\"
> -DXS_VERSION=\"1.93\" -fPIC "-I/usr/lib64/perl5/CORE" -g
> -Wno-unused-variable -Wuninitialized -DARS32 -DARS452
> -DPERL_PATCHLEVEL_IS=10 -DPERL_SUBVERSION_IS=1 -DPERL_BASEREV_IS=50 ARS.c
> ARS.xs: In function âXS_ARS_ars_qualifier_ptrâ:
> ARS.xs:118: warning: value computed is not used
> ARS.xs: In function âXS_ARS_ars_Loginâ:
> ARS.xs:334: warning: value computed is not used
> ARS.xs: In function âXS_ARS_ars_VerifyUserâ:
> ARS.xs:470: warning: value computed is not used
> ARS.xs:471: warning: value computed is not used
> ARS.xs:472: warning: value computed is not used
> ARS.xs: In function âXS_ARS_ars_GetListContainerâ:
> ARS.xs:1228: warning: value computed is not used
> ARS.xs:1261: warning: value computed is not used
> ARS.xs:1263: warning: value computed is not used
> ARS.xs:1266: warning: value computed is not used
> ARS.xs: In function âXS_ARS_ars_GetContainerâ:
> ARS.xs:1345: warning: value computed is not used
> ARS.xs:1348: warning: value computed is not used
> ARS.xs:1351: warning: value computed is not used
> ARS.xs:1353: warning: value computed is not used
> ARS.xs:1357: warning: value computed is not used
> ARS.xs:1360: warning: value computed is not used
> ARS.xs:1361: warning: value computed is not used
> ARS.xs:1362: warning: value computed is not used
> ARS.xs:1365: warning: value computed is not used
> ARS.xs:1366: warning: value computed is not used
> ARS.xs:1367: warning: value computed is not used
> ARS.xs:1372: warning: value computed is not used
> ARS.xs:1379: warning: value computed is not used
> ARS.xs:1382: warning: value computed is not used
> ARS.xs:1384: warning: value computed is not used
> ARS.xs:1385: warning: value computed is not used
> ARS.xs: In function âXS_ARS_ars_GetActiveLinkâ:
> ARS.xs:1503: warning: value computed is not used
> ARS.xs:1504: warning: value computed is not used
> ARS.xs:1505: warning: value computed is not used
> ARS.xs:1507: warning: value computed is not used
> ARS.xs:1510: warning: value computed is not used
> ARS.xs:1516: warning: value computed is not used
> ARS.xs:1521: warning: value computed is not used
> ARS.xs:1522: warning: value computed is not used
> ARS.xs:1523: warning: value computed is not used
> ARS.xs:1525: warning: value computed is not used
> ARS.xs:1529: warning: value computed is not used
> ARS.xs:1530: warning: value computed is not used
> ARS.xs:1535: warning: value computed is not used
> ARS.xs:1541: warning: value computed is not used
> ARS.xs:1542: warning: value computed is not used
> ARS.xs:1543: warning: value computed is not used
> ARS.xs:1544: warning: value computed is not used
> ARS.xs:1548: warning: value computed is not used
> ARS.xs: In function âXS_ARS_ars_GetFilterâ:
> ARS.xs:1632: warning: value computed is not used
> ARS.xs:1633: warning: value computed is not used
> ARS.xs:1634: warning: value computed is not used
> ARS.xs:1636: warning: value computed is not used
> ARS.xs:1638: warning: value computed is not used
> ARS.xs:1639: warning: value computed is not used
> ARS.xs:1643: warning: value computed is not used
> ARS.xs:1644: warning: value computed is not used
> ARS.xs:1649: warning: value computed is not used
> ARS.xs:1655: warning: value computed is not used
> ARS.xs:1656: warning: value computed is not used
> ARS.xs:1657: warning: value computed is not used
> ARS.xs:1658: warning: value computed is not used
> ARS.xs:1662: warning: value computed is not used
> ARS.xs:1670: warning: value computed is not used
> ARS.xs:1671: warning: value computed is not used
> ARS.xs: In function âXS_ARS_ars_GetCharMenuâ:
> ARS.xs:1785: warning: value computed is not used
> ARS.xs:1787: warning: value computed is not used
> ARS.xs:1788: warning: value computed is not used
> ARS.xs:1789: warning: value computed is not used
> ARS.xs:1790: warning: value computed is not used
> ARS.xs:1794: warning: value computed is not used
> ARS.xs:1805: warning: value computed is not used
> ARS.xs:1809: warning: value computed is not used
> ARS.xs:1818: warning: value computed is not used
> ARS.xs:1822: warning: value computed is not used
> ARS.xs:1824: warning: value computed is not used
> ARS.xs:1838: warning: value computed is not used
> ARS.xs:1849: warning: value computed is not used
> ARS.xs:1851: warning: value computed is not used
> ARS.xs:1858: warning: value computed is not used
> ARS.xs:1861: warning: value computed is not used
> ARS.xs:1865: warning: value computed is not used
> ARS.xs:1867: warning: value computed is not used
> ARS.xs:1869: warning: value computed is not used
> ARS.xs:1874: warning: value computed is not used
> ARS.xs:1876: warning: value computed is not used
> ARS.xs:1890: warning: value computed is not used
> ARS.xs:1897: warning: value computed is not used
> ARS.xs:1899: warning: value computed is not used
> ARS.xs:1904: warning: value computed is not used
> ARS.xs:1906: warning: value computed is not used
> ARS.xs:1908: warning: value computed is not used
> ARS.xs:1910: warning: value computed is not used
> ARS.xs:1914: warning: value computed is not used
> ARS.xs:1917: warning: value computed is not used
> ARS.xs:1920: warning: value computed is not used
> ARS.xs:1924: warning: value computed is not used
> ARS.xs:1926: warning: value computed is not used
> ARS.xs:1930: warning: value computed is not used
> ARS.xs: In function âXS_ARS_ars_GetSchemaâ:
> ARS.xs:2070: warning: value computed is not used
> ARS.xs:2074: warning: value computed is not used
> ARS.xs:2078: warning: value computed is not used
> ARS.xs:2081: warning: value computed is not used
> ARS.xs:2083: warning: value computed is not used
> ARS.xs:2087: warning: value computed is not used
> ARS.xs:2091: warning: value computed is not used
> ARS.xs:2096: warning: value computed is not used
> ARS.xs:2097: warning: value computed is not used
> ARS.xs:2098: warning: value computed is not used
> ARS.xs:2099: warning: value computed is not used
> ARS.xs:2101: warning: value computed is not used
> ARS.xs:2105: warning: value computed is not used
> ARS.xs:2113: warning: value computed is not used
> ARS.xs:2115: warning: value computed is not used
> ARS.xs:2118: warning: value computed is not used
> ARS.xs:2122: warning: value computed is not used
> ARS.xs: In function âXS_ARS_ars_GetFieldâ:
> ARS.xs:2235: warning: value computed is not used
> ARS.xs:2237: warning: value computed is not used
> ARS.xs:2239: warning: value computed is not used
> ARS.xs:2241: warning: value computed is not used
> ARS.xs:2243: warning: value computed is not used
> ARS.xs:2245: warning: value computed is not used
> ARS.xs:2247: warning: value computed is not used
> ARS.xs:2250: warning: value computed is not used
> ARS.xs:2253: warning: value computed is not used
> ARS.xs:2256: warning: value computed is not used
> ARS.xs:2258: warning: value computed is not used
> ARS.xs:2260: warning: value computed is not used
> ARS.xs:2262: warning: value computed is not used
> ARS.xs:2265: warning: value computed is not used
> ARS.xs:2267: warning: value computed is not used
> ARS.xs:2269: warning: value computed is not used
> ARS.xs:2271: warning: value computed is not used
> ARS.xs:2276: warning: value computed is not used
> ARS.xs: In function âXS_ARS_ars_GetImageâ:
> ARS.xs:2345: warning: value computed is not used
> ARS.xs:2346: warning: value computed is not used
> ARS.xs:2348: warning: value computed is not used
> ARS.xs:2349: warning: value computed is not used
> ARS.xs:2351: warning: value computed is not used
> ARS.xs:2352: warning: value computed is not used
> ARS.xs:2354: warning: value computed is not used
> ARS.xs:2357: warning: value computed is not used
> ARS.xs:2359: warning: value computed is not used
> ARS.xs:2360: warning: value computed is not used
> ARS.xs:2364: warning: value computed is not used
> ARS.xs: In function âXS_ARS_ars_GetListImageâ:
> ARS.xs:2814: warning: value computed is not used
> ARS.xs: In function âXS_ARS_ars_GetEscalationâ:
> ARS.xs:3310: warning: value computed is not used
> ARS.xs:3311: warning: value computed is not used
> ARS.xs:3313: warning: value computed is not used
> ARS.xs:3315: warning: value computed is not used
> ARS.xs:3316: warning: value computed is not used
> ARS.xs:3318: warning: value computed is not used
> ARS.xs:3319: warning: value computed is not used
> ARS.xs:3320: warning: value computed is not used
> ARS.xs:3324: warning: value computed is not used
> ARS.xs:3334: warning: value computed is not used
> ARS.xs:3335: warning: value computed is not used
> ARS.xs:3340: warning: value computed is not used
> ARS.xs:3345: warning: value computed is not used
> ARS.xs:3349: warning: value computed is not used
> ARS.xs:3353: warning: value computed is not used
> ARS.xs:3355: warning: value computed is not used
> ARS.xs:3357: warning: value computed is not used
> ARS.xs:3359: warning: value computed is not used
> ARS.xs: In function âXS_ARS_ars_GetFullTextInfoâ:
> ARS.xs:3418: warning: value computed is not used
> ARS.xs:3421: warning: value computed is not used
> ARS.xs:3426: warning: value computed is not used
> ARS.xs:3431: warning: value computed is not used
> ARS.xs:3436: warning: value computed is not used
> ARS.xs: In function âXS_ARS_ars_GetListGroupâ:
> ARS.xs:3536: warning: value computed is not used
> ARS.xs:3537: warning: value computed is not used
> ARS.xs:3538: warning: value computed is not used
> ARS.xs:3540: warning: value computed is not used
> ARS.xs: In function âXS_ARS_ars_GetListRoleâ:
> ARS.xs:3581: warning: value computed is not used
> ARS.xs:3582: warning: value computed is not used
> ARS.xs:3583: warning: value computed is not used
> ARS.xs: In function âXS_ARS_ars_GetListLicenseâ:
> ARS.xs:3621: warning: value computed is not used
> ARS.xs:3622: warning: value computed is not used
> ARS.xs:3623: warning: value computed is not used
> ARS.xs:3624: warning: value computed is not used
> ARS.xs:3626: warning: value computed is not used
> ARS.xs:3628: warning: value computed is not used
> ARS.xs:3629: warning: value computed is not used
> ARS.xs:3630: warning: value computed is not used
> ARS.xs:3631: warning: value computed is not used
> ARS.xs: In function âXS_ARS_ars_GetListSQLâ:
> ARS.xs:3672: warning: value computed is not used
> ARS.xs:3683: warning: value computed is not used
> ARS.xs: In function âXS_ARS_ars_GetListUserâ:
> ARS.xs:3726: warning: value computed is not used
> ARS.xs:3728: warning: value computed is not used
> ARS.xs:3730: warning: value computed is not used
> ARS.xs:3732: warning: value computed is not used
> ARS.xs:3734: warning: value computed is not used
> ARS.xs:3742: warning: value computed is not used
> ARS.xs:3743: warning: value computed is not used
> ARS.xs:3744: warning: value computed is not used
> ARS.xs: In function âXS_ARS_ars_GetVUIâ:
> ARS.xs:3968: warning: value computed is not used
> ARS.xs:3969: warning: value computed is not used
> ARS.xs:3971: warning: value computed is not used
> ARS.xs:3972: warning: value computed is not used
> ARS.xs:3973: warning: value computed is not used
> ARS.xs:3974: warning: value computed is not used
> ARS.xs:3976: warning: value computed is not used
> ARS.xs:3977: warning: value computed is not used
> ARS.xs:3985: warning: value computed is not used
> ARS.xs:3993: warning: value computed is not used
> ARS.xs:3994: warning: value computed is not used
> ARS.xs:3999: warning: value computed is not used
> ARS.xs: In function âXS_ARS_ars_CreateFieldâ:
> ARS.xs:4405: warning: passing argument 3 of âulongcpyHValâ from
> incompatible pointer type
> supportrev.h:53: note: expected âlong unsigned int *â but argument is of
> type âARInternalId *â
> ARS.xs:4425: warning: the address of âstrTempâ will always evaluate as
> âtrueâ
> ARS.xs: In function âXS_ARS_ars_SetFieldâ:
> ARS.xs:4608: warning: the address of âstrTempâ will always evaluate as
> âtrueâ
> ARS.xs: In function âXS_ARS_ars_CreateVUIâ:
> ARS.xs:5181: warning: passing argument 3 of âulongcpyHValâ from
> incompatible pointer type
> supportrev.h:53: note: expected âlong unsigned int *â but argument is of
> type âARInternalId *â
> ARS.xs: In function âXS_ARS_ars_CreateActiveLinkâ:
> ARS.xs:5848: warning: passing argument 3 of âulongcpyHValâ from
> incompatible pointer type
> supportrev.h:53: note: expected âlong unsigned int *â but argument is of
> type âARInternalId *â
> ARS.xs:5851: warning: passing argument 3 of âulongcpyHValâ from
> incompatible pointer type
> supportrev.h:53: note: expected âlong unsigned int *â but argument is of
> type âARInternalId *â
> ARS.xs: In function âXS_ARS_ars_SetActiveLinkâ:
> ARS.xs:6040: warning: passing argument 3 of âulongcpyHValâ from
> incompatible pointer type
> supportrev.h:53: note: expected âlong unsigned int *â but argument is of
> type âARInternalId *â
> ARS.xs:6044: warning: passing argument 3 of âulongcpyHValâ from
> incompatible pointer type
> supportrev.h:53: note: expected âlong unsigned int *â but argument is of
> type âARInternalId *â
> ARS.xs: In function âXS_ARS_ars_CreateEscalationâ:
> ARS.xs:6492: warning: passing argument 3 of âlongcpyHValâ from
> incompatible pointer type
> supportrev.h:52: note: expected âlong int *â but argument is of type
> âARLong32 *â
> ARS.xs:6495: warning: passing argument 3 of âlongcpyHValâ from
> incompatible pointer type
> supportrev.h:52: note: expected âlong int *â but argument is of type
> âARLong32 *â
> ARS.xs:6496: warning: passing argument 3 of âlongcpyHValâ from
> incompatible pointer type
> supportrev.h:52: note: expected âlong int *â but argument is of type
> âARLong32 *â
> ARS.xs:6497: warning: passing argument 3 of âlongcpyHValâ from
> incompatible pointer type
> supportrev.h:52: note: expected âlong int *â but argument is of type
> âARLong32 *â
> ARS.xs: In function âXS_ARS_ars_SetEscalationâ:
> ARS.xs:6642: warning: passing argument 3 of âlongcpyHValâ from
> incompatible pointer type
> supportrev.h:52: note: expected âlong int *â but argument is of type
> âARLong32 *â
> ARS.xs:6646: warning: passing argument 3 of âlongcpyHValâ from
> incompatible pointer type
> supportrev.h:52: note: expected âlong int *â but argument is of type
> âARLong32 *â
> ARS.xs:6647: warning: passing argument 3 of âlongcpyHValâ from
> incompatible pointer type
> supportrev.h:52: note: expected âlong int *â but argument is of type
> âARLong32 *â
> ARS.xs:6648: warning: passing argument 3 of âlongcpyHValâ from
> incompatible pointer type
> supportrev.h:52: note: expected âlong int *â but argument is of type
> âARLong32 *â
> ARS.xs: In function âXS_ARS_ars_GetMultipleEntriesâ:
> ARS.xs:7164: warning: format â%ldâ expects type âlong intâ, but argument 3
> has type âARInternalIdâ
> ARS.xs:7165: warning: value computed is not used
> ARS.xs: In function âXS_ARS_ars_GetListEntryWithFieldsâ:
> ARS.xs:7291: warning: format â%ldâ expects type âlong intâ, but argument 3
> has type âARInternalIdâ
> ARS.xs:7292: warning: value computed is not used
> ARS.xs: In function âXS_ARS_ars_GetListEntryWithMultiSchemaFieldsâ:
> ARS.xs:7358: warning: value computed is not used
> ARS.xs:7369: warning: value computed is not used
> ARS.xs:7378: warning: value computed is not used
> ARS.xs:7397: warning: value computed is not used
> ARS.xs:7438: warning: format â%ldâ expects type âlong intâ, but argument 4
> has type âARInternalIdâ
> ARS.xs:7438: warning: format â%ldâ expects type âlong intâ, but argument 5
> has type âintâ
> ARS.xs:7439: warning: value computed is not used
> ARS.xs: In function âXS_ARS_ars_DecodeAlertMessageâ:
> ARS.xs:8058: warning: value computed is not used
> ARS.xs:8060: warning: value computed is not used
> ARS.xs:8062: warning: value computed is not used
> ARS.xs:8065: warning: value computed is not used
> ARS.xs:8067: warning: value computed is not used
> ARS.xs:8069: warning: value computed is not used
> ARS.xs:8071: warning: value computed is not used
> ARS.xs:8073: warning: value computed is not used
> gcc -c -I/opt/remedy/api764sp5linux/include -D_REENTRANT -D_GNU_SOURCE
> -fno-strict-aliasing -pipe -fstack-protector -I/usr/local/include
> -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -O2 -g -pipe -Wall
> -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector
> --param=ssp-buffer-size=4 -m64 -mtune=generic -DVERSION=\"1.93\"
> -DXS_VERSION=\"1.93\" -fPIC "-I/usr/lib64/perl5/CORE" -g
> -Wno-unused-variable -Wuninitialized -DARS32 -DARS452
> -DPERL_PATCHLEVEL_IS=10 -DPERL_SUBVERSION_IS=1 -DPERL_BASEREV_IS=50
> support.c
> support.c: In function âdebug_freeâ:
> support.c:103: warning: cast from pointer to integer of different size
> support.c: In function âset_logging_file_ptrâ:
> support.c:132: warning: cast from pointer to integer of different size
> support.c: In function âperl_ARMessageStructâ:
> support.c:509: warning: value computed is not used
> support.c:512: warning: value computed is not used
> support.c:513: warning: value computed is not used
> support.c:515: warning: value computed is not used
> support.c:517: warning: value computed is not used
> support.c: In function âperl_AREnumItemStructâ:
> support.c:568: warning: value computed is not used
> support.c:570: warning: value computed is not used
> support.c: In function âperl_AREnumQueryStructâ:
> support.c:581: warning: value computed is not used
> support.c:583: warning: value computed is not used
> support.c:585: warning: value computed is not used
> support.c:591: warning: value computed is not used
> support.c:593: warning: value computed is not used
> support.c: In function âperl_AREnumLimitsStructâ:
> support.c:606: warning: value computed is not used
> support.c:616: warning: value computed is not used
> support.c:626: warning: value computed is not used
> support.c:630: warning: value computed is not used
> support.c:632: warning: value computed is not used
> support.c: In function âperl_ARFuncCurrencyStructâ:
> support.c:678: warning: value computed is not used
> support.c:681: warning: value computed is not used
> support.c:686: warning: value computed is not used
> support.c:689: warning: value computed is not used
> support.c: In function âperl_ARCurrencyStructâ:
> support.c:703: warning: value computed is not used
> support.c:706: warning: value computed is not used
> support.c:711: warning: value computed is not used
> support.c:714: warning: value computed is not used
> support.c:718: warning: value computed is not used
> support.c:721: warning: value computed is not used
> support.c: In function âperl_ARFilterStatusStructâ:
> support.c:739: warning: value computed is not used
> support.c:740: warning: value computed is not used
> support.c:741: warning: value computed is not used
> support.c: In function âperl_ARStatusStructâ:
> support.c:754: warning: value computed is not used
> support.c:755: warning: value computed is not used
> support.c:756: warning: value computed is not used
> support.c:764: warning: value computed is not used
> support.c:766: warning: value computed is not used
> support.c: In function âperl_diaryâ:
> support.c:814: warning: value computed is not used
> support.c:815: warning: value computed is not used
> support.c:816: warning: value computed is not used
> support.c: In function âperl_ARStatHistoryValueâ:
> support.c:1010: warning: value computed is not used
> support.c:1011: warning: value computed is not used
> support.c: In function âperl_ARCurrencyPartStructâ:
> support.c:1030: warning: value computed is not used
> support.c:1037: warning: value computed is not used
> support.c:1044: warning: value computed is not used
> support.c: In function âperl_ARPushFieldsStructâ:
> support.c:1057: warning: value computed is not used
> support.c:1059: warning: value computed is not used
> support.c: In function âperl_ARAutomationStructâ:
> support.c:1068: warning: value computed is not used
> support.c:1070: warning: value computed is not used
> support.c:1072: warning: value computed is not used
> support.c:1075: warning: value computed is not used
> support.c:1078: warning: value computed is not used
> support.c:1080: warning: value computed is not used
> support.c: In function âperl_ARCOMMethodStructâ:
> support.c:1092: warning: value computed is not used
> support.c:1094: warning: value computed is not used
> support.c:1096: warning: value computed is not used
> support.c:1098: warning: value computed is not used
> support.c:1100: warning: value computed is not used
> support.c: In function âperl_ARCOMValueStructâ:
> support.c:1112: warning: value computed is not used
> support.c:1114: warning: value computed is not used
> support.c:1116: warning: value computed is not used
> support.c:1122: warning: value computed is not used
> support.c:1126: warning: value computed is not used
> support.c: In function âperl_ARCOMMethodParmStructâ:
> support.c:1138: warning: value computed is not used
> support.c:1140: warning: value computed is not used
> support.c:1143: warning: value computed is not used
> support.c: In function âperl_AROpenDlgStructâ:
> support.c:1155: warning: value computed is not used
> support.c:1157: warning: value computed is not used
> support.c:1159: warning: value computed is not used
> support.c:1162: warning: value computed is not used
> support.c:1165: warning: value computed is not used
> support.c:1167: warning: value computed is not used
> support.c:1172: warning: value computed is not used
> support.c:1178: warning: value computed is not used
> support.c:1181: warning: value computed is not used
> support.c:1186: warning: value computed is not used
> support.c:1188: warning: value computed is not used
> support.c:1191: warning: value computed is not used
> support.c:1194: warning: value computed is not used
> support.c:1197: warning: value computed is not used
> support.c:1199: warning: value computed is not used
> support.c:1201: warning: value computed is not used
> support.c:1203: warning: value computed is not used
> support.c:1205: warning: value computed is not used
> support.c: In function âperl_ARCallGuideStructâ:
> support.c:1216: warning: value computed is not used
> support.c:1218: warning: value computed is not used
> support.c:1220: warning: value computed is not used
> support.c:1222: warning: value computed is not used
> support.c:1226: warning: value computed is not used
> support.c:1231: warning: value computed is not used
> support.c:1236: warning: value computed is not used
> support.c:1238: warning: value computed is not used
> support.c: In function âperl_ARExitGuideStructâ:
> support.c:1249: warning: value computed is not used
> support.c:1252: warning: value computed is not used
> support.c: In function âperl_ARCloseWndStructâ:
> support.c:1263: warning: value computed is not used
> support.c:1266: warning: value computed is not used
> support.c: In function âperl_ARGotoActionStructâ:
> support.c:1279: warning: value computed is not used
> support.c:1280: warning: value computed is not used
> support.c: In function âperl_ARCommitChangesStructâ:
> support.c:1289: warning: value computed is not used
> support.c: In function âperl_ARWaitStructâ:
> support.c:1298: warning: value computed is not used
> support.c: In function âperl_ARReferenceStructâ:
> support.c:1307: warning: value computed is not used
> support.c:1309: warning: value computed is not used
> support.c:1311: warning: value computed is not used
> support.c:1312: warning: value computed is not used
> support.c:1314: warning: value computed is not used
> support.c:1317: warning: value computed is not used
> support.c:1322: warning: value computed is not used
> support.c:1324: warning: value computed is not used
> support.c: In function âperl_ARAssignFieldStructâ:
> support.c:1354: warning: value computed is not used
> support.c:1355: warning: value computed is not used
> support.c:1356: warning: value computed is not used
> support.c:1374: warning: value computed is not used
> support.c:1389: warning: value computed is not used
> support.c:1397: warning: value computed is not used
> support.c:1405: warning: value computed is not used
> support.c:1408: warning: value computed is not used
> support.c:1414: warning: value computed is not used
> support.c: In function âperl_ARFieldAssignStructâ:
> support.c:1429: warning: value computed is not used
> support.c:1431: warning: value computed is not used
> support.c: In function âperl_ARDisplayStructâ:
> support.c:1445: warning: value computed is not used
> support.c:1447: warning: value computed is not used
> support.c:1450: warning: value computed is not used
> support.c:1453: warning: value computed is not used
> support.c:1458: warning: value computed is not used
> support.c:1461: warning: value computed is not used
> support.c:1464: warning: value computed is not used
> support.c:1467: warning: value computed is not used
> support.c:1470: warning: value computed is not used
> support.c:1473: warning: value computed is not used
> support.c:1476: warning: value computed is not used
> support.c:1477: warning: value computed is not used
> support.c:1480: warning: value computed is not used
> support.c:1483: warning: value computed is not used
> support.c:1486: warning: value computed is not used
> support.c:1487: warning: value computed is not used
> support.c: In function âperl_ARMacroParmListâ:
> support.c:1498: warning: value computed is not used
> support.c: In function âperl_ARActiveLinkMacroStructâ:
> support.c:1508: warning: value computed is not used
> support.c:1510: warning: value computed is not used
> support.c:1511: warning: value computed is not used
> support.c: In function âperl_ARFieldCharacteristicsâ:
> support.c:1522: warning: value computed is not used
> support.c:1524: warning: value computed is not used
> support.c:1525: warning: value computed is not used
> support.c:1531: warning: value computed is not used
> support.c:1538: warning: value computed is not used
> support.c:1540: warning: value computed is not used
> support.c: In function âperl_ARDDEStructâ:
> support.c:1551: warning: value computed is not used
> support.c:1552: warning: value computed is not used
> support.c:1553: warning: value computed is not used
> support.c:1554: warning: value computed is not used
> support.c:1556: warning: value computed is not used
> support.c:1560: warning: value computed is not used
> support.c:1561: warning: value computed is not used
> support.c:1564: warning: value computed is not used
> support.c:1565: warning: value computed is not used
> support.c:1568: warning: value computed is not used
> support.c:1569: warning: value computed is not used
> support.c:1572: warning: value computed is not used
> support.c:1573: warning: value computed is not used
> support.c: In function âperl_ARActiveLinkActionStructâ:
> support.c:1588: warning: value computed is not used
> support.c:1595: warning: value computed is not used
> support.c:1608: warning: value computed is not used
> support.c:1612: warning: value computed is not used
> support.c:1620: warning: value computed is not used
> support.c:1624: warning: value computed is not used
> support.c:1632: warning: value computed is not used
> support.c:1647: warning: value computed is not used
> support.c:1652: warning: value computed is not used
> support.c:1658: warning: value computed is not used
> support.c:1664: warning: value computed is not used
> support.c:1669: warning: value computed is not used
> support.c:1675: warning: value computed is not used
> support.c:1681: warning: value computed is not used
> support.c:1687: warning: value computed is not used
> support.c:1692: warning: value computed is not used
> support.c:1697: warning: value computed is not used
> support.c:1703: warning: value computed is not used
> support.c:1708: warning: value computed is not used
> support.c:1711: warning: value computed is not used
> support.c: In function âperl_ARFilterActionNotifyâ:
> support.c:1724: warning: value computed is not used
> support.c:1726: warning: value computed is not used
> support.c:1729: warning: value computed is not used
> support.c:1731: warning: value computed is not used
> support.c:1733: warning: value computed is not used
> support.c:1736: warning: value computed is not used
> support.c:1739: warning: value computed is not used
> support.c:1741: warning: value computed is not used
> support.c:1748: warning: value computed is not used
> support.c:1750: warning: value computed is not used
> support.c:1754: warning: value computed is not used
> support.c: In function âperl_ARFilterActionNotifyAdvancedâ:
> support.c:1777: warning: value computed is not used
> support.c:1784: warning: value computed is not used
> support.c:1791: warning: value computed is not used
> support.c:1798: warning: value computed is not used
> support.c:1805: warning: value computed is not used
> support.c:1812: warning: value computed is not used
> support.c:1819: warning: value computed is not used
> support.c:1826: warning: value computed is not used
> support.c:1833: warning: value computed is not used
> support.c: In function âperl_ARSetFieldsActionStructâ:
> support.c:1855: warning: value computed is not used
> support.c:1862: warning: value computed is not used
> support.c:1870: warning: value computed is not used
> support.c: In function âperl_ARPushFieldsActionStructâ:
> support.c:1890: warning: value computed is not used
> support.c:1898: warning: value computed is not used
> support.c:1905: warning: value computed is not used
> support.c: In function âperl_ARFilterActionStructâ:
> support.c:1925: warning: value computed is not used
> support.c:1931: warning: value computed is not used
> support.c:1940: warning: value computed is not used
> support.c:1946: warning: value computed is not used
> support.c:1959: warning: value computed is not used
> support.c:1968: warning: value computed is not used
> support.c:1983: warning: value computed is not used
> support.c:1988: warning: value computed is not used
> support.c:1994: warning: value computed is not used
> support.c:1999: warning: value computed is not used
> support.c:2004: warning: value computed is not used
> support.c:2011: warning: value computed is not used
> support.c: In function âperl_AREntryListFieldStructâ:
> support.c:2111: warning: value computed is not used
> support.c:2112: warning: value computed is not used
> support.c:2113: warning: value computed is not used
> support.c: In function âperl_ARIndexStructâ:
> support.c:2125: warning: value computed is not used
> support.c:2128: warning: value computed is not used
> support.c: In function âperl_ARFieldLimitStructâ:
> support.c:2140: warning: value computed is not used
> support.c:2146: warning: value computed is not used
> support.c:2147: warning: value computed is not used
> support.c:2151: warning: value computed is not used
> support.c:2152: warning: value computed is not used
> support.c:2153: warning: value computed is not used
> support.c:2158: warning: value computed is not used
> support.c:2163: warning: value computed is not used
> support.c:2166: warning: value computed is not used
> support.c:2172: warning: value computed is not used
> support.c:2175: warning: value computed is not used
> support.c:2178: warning: value computed is not used
> support.c:2182: warning: value computed is not used
> support.c:2185: warning: value computed is not used
> support.c:2188: warning: value computed is not used
> support.c:2194: warning: value computed is not used
> support.c:2197: warning: value computed is not used
> support.c:2204: warning: value computed is not used
> support.c:2207: warning: value computed is not used
> support.c:2213: warning: value computed is not used
> support.c:2216: warning: value computed is not used
> support.c:2219: warning: value computed is not used
> support.c:2229: warning: value computed is not used
> support.c:2232: warning: value computed is not used
> support.c:2246: warning: value computed is not used
> support.c:2269: warning: value computed is not used
> support.c:2287: warning: value computed is not used
> support.c:2288: warning: value computed is not used
> support.c:2289: warning: value computed is not used
> support.c:2293: warning: value computed is not used
> support.c:2294: warning: value computed is not used
> support.c:2299: warning: value computed is not used
> support.c:2300: warning: value computed is not used
> support.c:2301: warning: value computed is not used
> support.c:2302: warning: value computed is not used
> support.c:2303: warning: value computed is not used
> support.c:2312: warning: value computed is not used
> support.c:2313: warning: value computed is not used
> support.c:2314: warning: value computed is not used
> support.c:2315: warning: value computed is not used
> support.c:2316: warning: value computed is not used
> support.c:2318: warning: value computed is not used
> support.c:2319: warning: value computed is not used
> support.c:2324: warning: value computed is not used
> support.c:2325: warning: value computed is not used
> support.c:2327: warning: value computed is not used
> support.c:2329: warning: value computed is not used
> support.c:2334: warning: value computed is not used
> support.c:2338: warning: value computed is not used
> support.c: In function âperl_ARAssignStructâ:
> support.c:2367: warning: value computed is not used
> support.c:2387: warning: value computed is not used
> support.c:2389: warning: value computed is not used
> support.c:2393: warning: value computed is not used
> support.c:2397: warning: value computed is not used
> support.c:2400: warning: value computed is not used
> support.c:2404: warning: value computed is not used
> support.c:2408: warning: value computed is not used
> support.c:2412: warning: value computed is not used
> support.c:2417: warning: value computed is not used
> support.c:2421: warning: value computed is not used
> support.c: In function âperl_ARSQLStructâ:
> support.c:2432: warning: value computed is not used
> support.c:2433: warning: value computed is not used
> support.c: In function âperl_ARAssignSQLStructâ:
> support.c:2445: warning: value computed is not used
> support.c:2446: warning: value computed is not used
> support.c:2447: warning: value computed is not used
> support.c:2464: warning: value computed is not used
> support.c:2479: warning: value computed is not used
> support.c: In function âperl_ARAssignFilterApiStructâ:
> support.c:2492: warning: value computed is not used
> support.c:2493: warning: value computed is not used
> support.c:2494: warning: value computed is not used
> support.c:2495: warning: value computed is not used
> support.c: In function âperl_ARArithOpAssignStructâ:
> support.c:2529: warning: value computed is not used
> support.c:2532: warning: value computed is not used
> support.c:2534: warning: value computed is not used
> support.c:2535: warning: value computed is not used
> support.c: In function âperl_ARPermissionListâ:
> support.c:2566: warning: value computed is not used
> support.c: In function âperl_ARPropStructâ:
> support.c:2710: warning: value computed is not used
> support.c:2711: warning: value computed is not used
> support.c:2712: warning: value computed is not used
> support.c: In function âperl_ARDisplayInstanceStructâ:
> support.c:2736: warning: value computed is not used
> support.c:2737: warning: value computed is not used
> support.c: In function âperl_ARDisplayInstanceListâ:
> support.c:2750: warning: value computed is not used
> support.c:2762: warning: value computed is not used
> support.c:2763: warning: value computed is not used
> support.c: In function âperl_ARFieldMappingStructâ:
> support.c:2777: warning: value computed is not used
> support.c:2780: warning: value computed is not used
> support.c:2783: warning: value computed is not used
> support.c:2787: warning: value computed is not used
> support.c: In function âperl_ARJoinMappingStructâ:
> support.c:2799: warning: value computed is not used
> support.c:2800: warning: value computed is not used
> support.c: In function âperl_ARViewMappingStructâ:
> support.c:2809: warning: value computed is not used
> support.c: In function âperl_ARVendorMappingStructâ:
> support.c:2820: warning: value computed is not used
> support.c: In function âperl_ARJoinSchemaâ:
> support.c:2832: warning: value computed is not used
> support.c:2833: warning: value computed is not used
> support.c:2834: warning: value computed is not used
> support.c:2836: warning: value computed is not used
> support.c: In function âperl_ARViewSchemaâ:
> support.c:2845: warning: value computed is not used
> support.c:2846: warning: value computed is not used
> support.c: In function âperl_ARVendorSchemaâ:
> support.c:2859: warning: value computed is not used
> support.c:2860: warning: value computed is not used
> support.c: In function âperl_ARCompoundSchemaâ:
> support.c:2870: warning: value computed is not used
> support.c:2876: warning: value computed is not used
> support.c:2879: warning: value computed is not used
> support.c:2883: warning: value computed is not used
> support.c: In function âperl_ARSortListâ:
> support.c:2899: warning: value computed is not used
> support.c:2900: warning: value computed is not used
> support.c: In function âperl_ARArchiveInfoStructâ:
> support.c:2915: warning: value computed is not used
> support.c:2918: warning: value computed is not used
> support.c:2921: warning: value computed is not used
> support.c:2924: warning: value computed is not used
> support.c:2927: warning: value computed is not used
> support.c:2930: warning: value computed is not used
> support.c:2933: warning: value computed is not used
> support.c:2934: warning: value computed is not used
> support.c:2936: warning: value computed is not used
> support.c:2938: warning: value computed is not used
> support.c:2940: warning: value computed is not used
> support.c:2942: warning: value computed is not used
> support.c: In function âperl_ARAttachâ:
> support.c:2968: warning: value computed is not used
> support.c:2969: warning: value computed is not used
> support.c:2970: warning: value computed is not used
> support.c:2971: warning: value computed is not used
> support.c: In function âperl_ARByteListâ:
> support.c:3010: warning: value computed is not used
> support.c:3011: warning: value computed is not used
> support.c: In function âperl_ARCoordStructâ:
> support.c:3019: warning: value computed is not used
> support.c:3020: warning: value computed is not used
> support.c: In function âperl_ARArithOpStructâ:
> support.c:3271: warning: value computed is not used
> support.c:3275: warning: value computed is not used
> support.c:3278: warning: value computed is not used
> support.c:3280: warning: value computed is not used
> support.c: In function âperl_ARQueryValueStructâ:
> support.c:3293: warning: value computed is not used
> support.c:3294: warning: value computed is not used
> support.c:3298: warning: value computed is not used
> support.c:3300: warning: value computed is not used
> support.c:3303: warning: value computed is not used
> support.c:3306: warning: value computed is not used
> support.c:3309: warning: value computed is not used
> support.c: In function âperl_ARWorkflowConnectStructâ:
> support.c:3322: warning: value computed is not used
> support.c:3324: warning: value computed is not used
> support.c: In function âperl_AROwnerObjâ:
> support.c:3350: warning: value computed is not used
> support.c:3353: warning: value computed is not used
> support.c: In function âperl_ARFieldValueOrArithStructâ:
> support.c:3381: warning: value computed is not used
> support.c:3384: warning: value computed is not used
> support.c:3386: warning: value computed is not used
> support.c:3390: warning: value computed is not used
> support.c:3394: warning: value computed is not used
> support.c:3398: warning: value computed is not used
> support.c:3405: warning: value computed is not used
> support.c:3408: warning: value computed is not used
> support.c:3411: warning: value computed is not used
> support.c:3414: warning: value computed is not used
> support.c:3418: warning: value computed is not used
> support.c:3429: warning: value computed is not used
> support.c:3430: warning: value computed is not used
> support.c: In function âperl_relOpâ:
> support.c:3469: warning: value computed is not used
> support.c:3470: warning: value computed is not used
> support.c:3472: warning: value computed is not used
> support.c: In function âperl_qualifierâ:
> support.c:3487: warning: value computed is not used
> support.c:3489: warning: value computed is not used
> support.c:3494: warning: value computed is not used
> support.c:3496: warning: value computed is not used
> support.c:3501: warning: value computed is not used
> support.c:3506: warning: value computed is not used
> support.c:3512: warning: value computed is not used
> support.c:3517: warning: value computed is not used
> support.c: In function âfieldcache_store_field_infoâ:
> support.c:3752: warning: value computed is not used
> support.c:3753: warning: value computed is not used
> support.c: In function âsv_to_ARValueâ:
> support.c:3948: warning: passing argument 3 of âPerl_sv_2pv_flagsâ from
> incompatible pointer type
> /usr/lib64/perl5/CORE/proto.h:3039: note: expected âSTRLEN *â but argument
> is of type âunsigned int *â
> support.c:4051: warning: operation on â__lenâ may be undefined
> support.c:4073: warning: operation on â__lenâ may be undefined
> support.c: In function âperl_ARCurrencyDetailListâ:
> support.c:4272: warning: value computed is not used
> support.c:4273: warning: value computed is not used
> support.c: In function âperl_ARFieldValueStructâ:
> support.c:4359: warning: value computed is not used
> support.c:4366: warning: value computed is not used
> support.c: In function âperl_ARAuditInfoStructâ:
> support.c:4388: warning: value computed is not used
> support.c:4395: warning: value computed is not used
> support.c:4402: warning: value computed is not used
> support.c:4409: warning: value computed is not used
> support.c: In function âperl_ARBulkEntryReturnâ:
> support.c:4435: warning: value computed is not used
> support.c:4450: warning: value computed is not used
> support.c:4465: warning: value computed is not used
> support.c:4480: warning: value computed is not used
> support.c:4495: warning: value computed is not used
> support.c:4510: warning: value computed is not used
> support.c:4525: warning: value computed is not used
> support.c: In function âperl_AREntryReturnâ:
> support.c:4553: warning: value computed is not used
> support.c:4560: warning: value computed is not used
> support.c: In function âperl_ARXMLEntryReturnâ:
> support.c:4579: warning: value computed is not used
> support.c:4586: warning: value computed is not used
> support.c: In function âperl_ARCharMenuItemStructâ:
> support.c:4648: warning: value computed is not used
> support.c:4652: warning: value computed is not used
> support.c:4655: warning: value computed is not used
> support.c: In function âperl_ARActiveLinkSvcActionStructâ:
> support.c:4708: warning: value computed is not used
> support.c:4721: warning: value computed is not used
> support.c:4728: warning: value computed is not used
> support.c:4735: warning: value computed is not used
> support.c:4742: warning: value computed is not used
> support.c:4753: warning: value computed is not used
> support.c:4760: warning: value computed is not used
> support.c: In function âperl_ARLicenseDateStructâ:
> support.c:4780: warning: value computed is not used
> support.c:4787: warning: value computed is not used
> support.c:4794: warning: value computed is not used
> support.c: In function âperl_ARLicenseValidStructâ:
> support.c:4814: warning: value computed is not used
> support.c:4821: warning: value computed is not used
> support.c:4828: warning: value computed is not used
> support.c:4835: warning: value computed is not used
> gcc -c -I/opt/remedy/api764sp5linux/include -D_REENTRANT -D_GNU_SOURCE
> -fno-strict-aliasing -pipe -fstack-protector -I/usr/local/include
> -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -O2 -g -pipe -Wall
> -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector
> --param=ssp-buffer-size=4 -m64 -mtune=generic -DVERSION=\"1.93\"
> -DXS_VERSION=\"1.93\" -fPIC "-I/usr/lib64/perl5/CORE" -g
> -Wno-unused-variable -Wuninitialized -DARS32 -DARS452
> -DPERL_PATCHLEVEL_IS=10 -DPERL_SUBVERSION_IS=1 -DPERL_BASEREV_IS=50
> supportrev.c
> supportrev.c: In function ârev_ARAssignList_helperâ:
> supportrev.c:1047: warning: passing argument 3 of âulongcpyHValâ from
> incompatible pointer type
> supportrev.c:425: note: expected âlong unsigned int *â but argument is of
> type âARInternalId *â
> supportrev.c: In function ârev_ARValueStructDiaryâ:
> supportrev.c:1429: warning: passing argument 3 of âlongcpyHValâ from
> incompatible pointer type
> supportrev.c:394: note: expected âlong int *â but argument is of type
> âARTimestamp *â
> supportrev.c: In function ârev_ARByteListâ:
> supportrev.c:1527: warning: passing argument 3 of ârev_ARByteListStr2Typeâ
> from incompatible pointer type
> supportrev.c:105: note: expected âlong unsigned int *â but argument is of
> type âARULong32 *â
> supportrev.c: In function ârev_ARAssignFieldStruct_helperâ:
> supportrev.c:1744: warning: passing argument 3 of âulongcpyHValâ from
> incompatible pointer type
> supportrev.c:425: note: expected âlong unsigned int *â but argument is of
> type âARInternalId *â
> supportrev.c: In function ârev_ARStatHistoryValue_helperâ:
> supportrev.c:1902: warning: passing argument 3 of âulongcpyHValâ from
> incompatible pointer type
> supportrev.c:425: note: expected âlong unsigned int *â but argument is of
> type âARULong32 *â
> supportrev.c: In function ârev_ARFilterStatusStructâ:
> supportrev.c:2174: warning: passing argument 3 of âlongcpyHValâ from
> incompatible pointer type
> supportrev.c:394: note: expected âlong int *â but argument is of type
> âARLong32 *â
> supportrev.c: In function ârev_ARStatusStructâ:
> supportrev.c:2230: warning: passing argument 3 of âlongcpyHValâ from
> incompatible pointer type
> supportrev.c:394: note: expected âlong int *â but argument is of type
> âARLong32 *â
> supportrev.c: In function ârev_ARMessageStructâ:
> supportrev.c:2311: warning: passing argument 3 of âlongcpyHValâ from
> incompatible pointer type
> supportrev.c:394: note: expected âlong int *â but argument is of type
> âARLong32 *â
> supportrev.c: In function ârev_ARFieldCharacteristicsâ:
> supportrev.c:2369: warning: passing argument 3 of âulongcpyHValâ from
> incompatible pointer type
> supportrev.c:425: note: expected âlong unsigned int *â but argument is of
> type âARInternalId *â
> supportrev.c: In function ârev_ARPropList_helperâ:
> supportrev.c:2480: warning: passing argument 3 of âulongcpyHValâ from
> incompatible pointer type
> supportrev.c:425: note: expected âlong unsigned int *â but argument is of
> type âARULong32 *â
> supportrev.c: In function ârev_ARDisplayInstanceStructâ:
> supportrev.c:2779: warning: passing argument 3 of âulongcpyHValâ from
> incompatible pointer type
> supportrev.c:425: note: expected âlong unsigned int *â but argument is of
> type âARInternalId *â
> supportrev.c: In function ârev_ARPermissionListâ:
> supportrev.c:2810: warning: suggest parentheses around assignment used as
> truth value
> supportrev.c: At top level:
> supportrev.c:552: warning: ârev_ARDisplayStruct_helperâ defined but not
> used
> gcc -c -I/opt/remedy/api764sp5linux/include -D_REENTRANT -D_GNU_SOURCE
> -fno-strict-aliasing -pipe -fstack-protector -I/usr/local/include
> -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -O2 -g -pipe -Wall
> -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector
> --param=ssp-buffer-size=4 -m64 -mtune=generic -DVERSION=\"1.93\"
> -DXS_VERSION=\"1.93\" -fPIC "-I/usr/lib64/perl5/CORE" -g
> -Wno-unused-variable -Wuninitialized -DARS32 -DARS452
> -DPERL_PATCHLEVEL_IS=10 -DPERL_SUBVERSION_IS=1 -DPERL_BASEREV_IS=50
> supportrev_generated.c
> supportrev_generated.c: In function ârev_ARBulkEntryReturnListâ:
> supportrev_generated.c:908: warning: value computed is not used
> supportrev_generated.c: In function ârev_ARCOMMethodListâ:
> supportrev_generated.c:983: warning: value computed is not used
> supportrev_generated.c: In function ârev_ARCOMMethodParmListâ:
> supportrev_generated.c:1058: warning: value computed is not used
> supportrev_generated.c: In function ârev_ARCharMenuListâ:
> supportrev_generated.c:2393: warning: value computed is not used
> supportrev_generated.c: In function ârev_ARCompoundSchemaListâ:
> supportrev_generated.c:3336: warning: value computed is not used
> supportrev_generated.c: In function ârev_ARContainerOwnerObjListâ:
> supportrev_generated.c:3510: warning: value computed is not used
> supportrev_generated.c: In function ârev_ARCurrencyDetailListâ:
> supportrev_generated.c:3585: warning: value computed is not used
> supportrev_generated.c: In function ârev_AREntryIdListâ:
> supportrev_generated.c:4581: warning: value computed is not used
> supportrev_generated.c: In function ârev_AREntryListFieldListâ:
> supportrev_generated.c:4656: warning: value computed is not used
> supportrev_generated.c: In function ârev_AREntryListFieldValueListâ:
> supportrev_generated.c:4829: warning: value computed is not used
> supportrev_generated.c: In function ârev_AREnumItemListâ:
> supportrev_generated.c:5070: warning: value computed is not used
> supportrev_generated.c: In function ârev_ARFieldLimitListâ:
> supportrev_generated.c:5802: warning: value computed is not used
> supportrev_generated.c: In function ârev_ARFieldMappingListâ:
> supportrev_generated.c:6026: warning: value computed is not used
> supportrev_generated.c: In function ârev_ARFieldValueListâ:
> supportrev_generated.c:6349: warning: value computed is not used
> supportrev_generated.c: In function ârev_ARFilterActionListâ:
> supportrev_generated.c:7024: warning: value computed is not used
> supportrev_generated.c: In function ârev_ARIndexListâ:
> supportrev_generated.c:8258: warning: value computed is not used
> supportrev_generated.c: In function ârev_ARIndexStructâ:
> supportrev_generated.c:8357: warning: value computed is not used
> supportrev_generated.c: In function ârev_ARMultiSchemaFieldFuncListâ:
> supportrev_generated.c:9132: warning: value computed is not used
> supportrev_generated.c: In function ârev_ARMultiSchemaFieldIdListâ:
> supportrev_generated.c:9658: warning: value computed is not used
> supportrev_generated.c: In function ârev_ARMultiSchemaFuncQueryFromListâ:
> supportrev_generated.c:10590: warning: value computed is not used
> supportrev_generated.c: In function ârev_ARMultiSchemaQueryFromListâ:
> supportrev_generated.c:11659: warning: value computed is not used
> supportrev_generated.c: In function ârev_ARMultiSchemaSortListâ:
> supportrev_generated.c:12432: warning: value computed is not used
> supportrev_generated.c: In function ârev_ARNameListâ:
> supportrev_generated.c:12914: warning: value computed is not used
> supportrev_generated.c: In function ârev_ARPushFieldsListâ:
> supportrev_generated.c:13512: warning: value computed is not used
> supportrev_generated.c: In function ârev_ARQualifierListâ:
> supportrev_generated.c:13670: warning: value computed is not used
> supportrev_generated.c: In function ârev_ARReferenceListâ:
> supportrev_generated.c:14295: warning: value computed is not used
> supportrev_generated.c: In function ârev_ARSortListâ:
> supportrev_generated.c:14685: warning: value computed is not used
> supportrev_generated.c: In function ârev_ARStatusListâ:
> supportrev_generated.c:14843: warning: value computed is not used
> supportrev_generated.c: In function ârev_ARUnsignedIntListâ:
> supportrev_generated.c:15076: warning: value computed is not used
> supportrev_generated.c: In function ârev_ARValueListâ:
> supportrev_generated.c:15151: warning: value computed is not used
> Running Mkbootstrap for ARS ()
> chmod 644 ARS.bs
> rm -f blib/arch/auto/ARS/ARS.so
> gcc -shared -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions
> -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic ARS.o
> support.o supportrev.o supportrev_generated.o -o
> blib/arch/auto/ARS/ARS.so /opt/remedy/api764sp5linux/lib/libar_lx64.a \
> -L/opt/remedy/api764sp5linux/lib -lnsl -lpthread
> -licuucbmc_lx64 -licui18nbmc_lx64 -licudatabmc_lx64 \
>
> chmod 755 blib/arch/auto/ARS/ARS.so
> cp ARS.bs blib/arch/auto/ARS/ARS.bs
> chmod 644 blib/arch/auto/ARS/ARS.bs
>
> [root@testrhel64bit ARSperl-1.93]# cd blib/arch/auto/ARS
> [root@testrhel64bit ARS]# ls -al
> total 5784
> drwxr-xr-x. 2 root root 4096 Oct 23 12:13 .
> drwxr-xr-x. 3 root root 4096 Aug 7 2013 ..
> -rw-r--r--. 1 root root 0 Oct 23 12:13 ARS.bs
> -rwxr-xr-x. 1 root root 5911560 Oct 23 12:13 ARS.so
> -rw-r--r--. 1 root root 0 Oct 23 12:13 .exists
> [root@testrhel64bit ARS]# cd /opt/remedy/ARSperl-1.93
> [root@testrhel64bit ARSperl-1.93]# make install
> Files found in blib/arch: installing files in blib/lib into architecture
> dependent library tree
> Installing /usr/local/lib64/perl5/auto/ARS/ARS.so
> Installing /usr/local/lib64/perl5/auto/ARS/ARS.bs
> Installing /usr/local/lib64/perl5/ARS.pm
> Installing /usr/local/lib64/perl5/ARS/nparm.pm
> Installing /usr/local/lib64/perl5/ARS/OOmsgs.pm
> Installing /usr/local/lib64/perl5/ARS/OOform.pm
> Installing /usr/local/lib64/perl5/ARS/arerrno-h.pm
> Installing /usr/local/lib64/perl5/ARS/OOsup.pm
> Installing /usr/local/lib64/perl5/ARS/ar-h.pm
> Installing /usr/local/lib64/perl5/auto/ARS/autosplit.ix
> Appending installation info to /usr/lib64/perl5/perllocal.pod
> [root@testrhel64bit ARSperl-1.93]# perl
> use ARS;
> ^C
>
|