Ignore:
Timestamp:
Feb 1, 2019, 9:57:09 PM (5 years ago)
Author:
coas-nagasima
Message:

TINETとSocket APIなどを更新

Location:
asp3_tinet_ecnl_arm/trunk/curl-7.57.0
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • asp3_tinet_ecnl_arm/trunk/curl-7.57.0/.cproject

    r352 r364  
    2424                        <storageModule moduleId="com.renesas.cdt.managedbuild.core.toolchainInfo">
    2525                                <option id="toolchain.id" value="gcc-arm-embedded"/>
    26                                 <option id="toolchain.version" value="5.4.1.20160919"/>
     26                                <option id="toolchain.version" value="6.3.1.20170620"/>
    2727                        </storageModule>
    2828                        <storageModule moduleId="cdtBuildSystem" version="4.0.0">
     
    8080                                                                        <listOptionValue builtIn="false" value="HAVE_CONFIG_H"/>
    8181                                                                        <listOptionValue builtIn="false" value="BUILDING_LIBCURL"/>
     82                                                                        <listOptionValue builtIn="false" value="WOLFSSL_USER_SETTINGS"/>
    8283                                                                </option>
     84                                                                <option IS_BUILTIN_EMPTY="false" IS_VALUE_EMPTY="true" id="ilg.gnuarmeclipse.managedbuild.cross.option.c.compiler.include.files.169831869" name="Include files (-include)" superClass="ilg.gnuarmeclipse.managedbuild.cross.option.c.compiler.include.files" useByScannerDiscovery="false" valueType="includeFiles"/>
    8385                                                                <inputType id="ilg.gnuarmeclipse.managedbuild.cross.tool.c.compiler.input.1041134774" superClass="ilg.gnuarmeclipse.managedbuild.cross.tool.c.compiler.input"/>
    8486                                                        </tool>
     
    145147                        <storageModule moduleId="com.renesas.cdt.managedbuild.core.toolchainInfo">
    146148                                <option id="toolchain.id" value="gcc-arm-embedded"/>
    147                                 <option id="toolchain.version" value="5.4.1.20160919"/>
     149                                <option id="toolchain.version" value="6.3.1.20170620"/>
    148150                        </storageModule>
    149151                        <storageModule moduleId="cdtBuildSystem" version="4.0.0">
  • asp3_tinet_ecnl_arm/trunk/curl-7.57.0/lib/curl_config.h

    r352 r364  
    44/* Location of default ca bundle */
    55/* #undef CURL_CA_BUNDLE */
     6#define CURL_CA_BUNDLE "0:/certs/ca-bundle.crt"
    67
    78/* define "1" to use built in CA store of SSL library */
     
    573574
    574575/* Define to 1 if you have the signal function. */
    575 #define HAVE_SIGNAL 1
     576/* #undef HAVE_SIGNAL */
    576577
    577578/* Define to 1 if you have the <signal.h> header file. */
     
    948949
    949950/* If you want to build curl with the built-in manual */
    950 #define USE_MANUAL 1
     951/* #undef USE_MANUAL */
    951952
    952953/* if mbedTLS is enabled */
  • asp3_tinet_ecnl_arm/trunk/curl-7.57.0/lib/mprintf.c

    r352 r364  
    997997{
    998998        unsigned int r, i, j, w, f;
    999         unsigned long v;
     999        unsigned long long v;
    10001000        char s[16], c, d, *p;
    10011001
     
    10221022                        w = w * 10 + c - '0';
    10231023                if (c == 'l' || c == 'L') {     /* Prefix: Size is long int */
    1024                         f |= 4; c = *fmt++;
     1024                        c = *fmt++;
     1025                        if (c == 'l' || c == 'L') {     /* Prefix: Size is long int */
     1026                                f |= 32; c = *fmt++;
     1027                        }
     1028                        else {
     1029                                f |= 4;
     1030                        }
    10251031                }
    10261032                else if (c == 'h') {    /* Prefix: Size is short int */
     
    10551061
    10561062                /* Get an argument and put it in numeral */
    1057                 v = (f & 4) ? va_arg(arp, long)
    1058                         : ((f & 16) ? ((d == 'D') ? (long)((short)va_arg(arp, int)) : (long)((unsigned short)va_arg(arp, unsigned int)))
    1059                                 : ((d == 'D') ? (long)va_arg(arp, int) : (long)va_arg(arp, unsigned int)));
    1060                 if (d == 'D' && (v & 0x80000000)) {
     1063                if (f & 4)
     1064                        v = (long long)va_arg(arp, long);
     1065                else if (f & 16)
     1066                        v = (d == 'D') ? (long long)((short)va_arg(arp, int)) : (long long)((unsigned short)va_arg(arp, unsigned int));
     1067                else if (f & 32)
     1068                        v = (d == 'D') ? (long long)(va_arg(arp, long long)) : (long long)(va_arg(arp, unsigned long long));
     1069                else
     1070                        v = (d == 'D') ? (long long)va_arg(arp, int) : (long long)va_arg(arp, unsigned int);
     1071                if (d == 'D' && (v & 0x8000000000000000ll)) {
    10611072                        v = 0 - v;
    10621073                        f |= 8;
Note: See TracChangeset for help on using the changeset viewer.