Ignore:
Timestamp:
Jan 21, 2018, 12:10:09 AM (6 years ago)
Author:
coas-nagasima
Message:

prototoolに関連するプロジェクトをnewlibからmuslを使うよう変更・更新
ntshellをnewlibの下位の実装から、muslのsyscallの実装に変更・更新
以下のOSSをアップデート
・mruby-1.3.0
・musl-1.1.18
・onigmo-6.1.3
・tcc-0.9.27
以下のOSSを追加
・openssl-1.1.0e
・curl-7.57.0
・zlib-1.2.11
以下のmrbgemsを追加
・iij/mruby-digest
・iij/mruby-env
・iij/mruby-errno
・iij/mruby-iijson
・iij/mruby-ipaddr
・iij/mruby-mock
・iij/mruby-require
・iij/mruby-tls-openssl

File:
1 edited

Legend:

Unmodified
Added
Removed
  • EcnlProtoTool/trunk/ntshell/webserver/httpd-fs.c

    r321 r331  
    4545#include "kernel_cfg.h"
    4646#include "syssvc/syslog.h"
    47 #include "ntstdio.h"
     47#include "util/ntstdio.h"
    4848
    4949#ifndef _MSC_VER
    5050#ifndef strcat_s
    51 #define strcat_s(dst, dsz, src) strcat(dst, src)
     51#define strcat_s(dst, dsz, src) ntlibc_strcat(dst, src)
    5252#endif
    5353#endif
     
    7575        res = f_opendir(&dir, path);
    7676        if (res == FR_OK) {
    77                 i = strlen(path);
     77                i = ntlibc_strlen(path);
    7878                for (;;) {
    7979                        res = f_readdir(&dir, &fno);
Note: See TracChangeset for help on using the changeset viewer.