src/Cedar/Server.cのreturn ret → return falseへ変更
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
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ツールインストール
1 |
yum -y install openssl-devel readline-devel ncurses-devel gcc "@Development Tools" |
ビルド
1 2 |
./configure make |
参考
https://ja.softether.org/5-download/src/2.unix
https://blog.cles.jp/item/9524