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

TINETとSocket APIなどを更新

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

Legend:

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

    r337 r364  
    2424                        <storageModule moduleId="com.renesas.cdt.managedbuild.core.toolchainInfo">
    2525                                <option id="toolchain.id" value="RENESAS_GCC_RX"/>
    26                                 <option id="toolchain.version" value="4.8.4.201703"/>
     26                                <option id="toolchain.version" value="4.8.4.201803"/>
    2727                        </storageModule>
    2828                        <storageModule moduleId="cdtBuildSystem" version="4.0.0">
     
    3939                                                        <option id="com.renesas.cdt.managedbuild.gcc.core.option.debug.warnStackSize.1575092980" name="Warn if stack size exceeds the limit (-Wstack-usage) (H')" superClass="com.renesas.cdt.managedbuild.gcc.core.option.debug.warnStackSize" useByScannerDiscovery="false" value="100" valueType="string"/>
    4040                                                        <option id="com.renesas.cdt.managedbuild.gcc.core.option.optimization.functionsections.954466902" name="Function sections (-ffunction-sections)" superClass="com.renesas.cdt.managedbuild.gcc.core.option.optimization.functionsections" value="true" valueType="boolean"/>
     41                                                        <option id="com.renesas.cdt.managedbuild.gcc.core.option.cpu.64bitdouble.439244273" name="Make the double data type be 64 bits in size" superClass="com.renesas.cdt.managedbuild.gcc.core.option.cpu.64bitdouble" value="true" valueType="boolean"/>
    4142                                                        <targetPlatform archList="all" binaryParser="org.eclipse.cdt.core.ELF" id="com.renesas.cdt.managedbuild.gcc.core.targetPlatform.786062905" isAbstract="false" osList="all" superClass="com.renesas.cdt.managedbuild.gcc.core.targetPlatform"/>
    4243                                                        <builder buildPath="${workspace_loc:/curl}/Debug" id="com.renesas.cdt.managedbuild.gcc.core.builder.685132589" keepEnvironmentInBuildfile="false" managedBuildOn="true" name="GCC for Renesas Builder" parallelBuildOn="true" parallelizationNumber="optimal" superClass="com.renesas.cdt.managedbuild.gcc.core.builder"/>
  • asp3_tinet_ecnl_rx/trunk/curl-7.57.0/lib/curl_config.h

    r337 r364  
    7272
    7373/* to disable verbose strings */
    74 /* #undef CURL_DISABLE_VERBOSE_STRINGS */
     74#define CURL_DISABLE_VERBOSE_STRINGS 1
    7575
    7676/* Definition to make a library symbol externally visible. */
     
    573573
    574574/* Define to 1 if you have the signal function. */
    575 #define HAVE_SIGNAL 1
     575/* #undef HAVE_SIGNAL */
    576576
    577577/* Define to 1 if you have the <signal.h> header file. */
     
    948948
    949949/* If you want to build curl with the built-in manual */
    950 #define USE_MANUAL 1
     950/* #undef USE_MANUAL */
    951951
    952952/* if mbedTLS is enabled */
  • asp3_tinet_ecnl_rx/trunk/curl-7.57.0/lib/mprintf.c

    r337 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.