株式会社ヴァンデミックシステム

Blog

<スポンサーリンク>

src/Cedar/Server.cのreturn ret → return falseへ変更

10902 bool SiIsEnterpriseFunctionsRestrictedOnOpenSource(CEDAR *c)
10903 {
10904         char region[128];
10905         bool ret = false;
10906         // Validate arguments
10907         if (c == NULL)
10908         {
10909                 return false;
10910         }
10911
10912
10913         SiGetCurrentRegion(c, region, sizeof(region));
10914
10915         if (StrCmpi(region, "JP") == 0 || StrCmpi(region, "CN") == 0)
10916         {
10917                 ret = true;
10918         }
10919
10920         return false;
10921 }

Devツールインストール

yum -y install openssl-devel readline-devel ncurses-devel gcc "@Development Tools"

ビルド

./configure
make

参考
https://ja.softether.org/5-download/src/2.unix
https://blog.cles.jp/item/9524

<スポンサーリンク>

コメントを残す

Allowed tags:  you may use these HTML tags and attributes: <a href="">, <strong>, <em>, <h1>, <h2>, <h3>
Please note:  all comments go through moderation.

*

日本語が含まれない投稿は無視されますのでご注意ください。(スパム対策)