Browse Source

config.inc correct relative source

PascalCoin 5 years ago
parent
commit
1a546df5c8

+ 1 - 1
src/core/UAES.pas

@@ -28,7 +28,7 @@ unit UAES;
   {$MODE Delphi}
   {$MODE Delphi}
 {$ENDIF}
 {$ENDIF}
 
 
-{$I config.inc}
+{$I ./../config.inc}
 
 
 {$IF not Defined(Use_OpenSSL)}
 {$IF not Defined(Use_OpenSSL)}
   {$Message Warn 'ERROR: Use_OpenSSL is not defined, you should not use this UNIT!'}
   {$Message Warn 'ERROR: Use_OpenSSL is not defined, you should not use this UNIT!'}

+ 1 - 1
src/core/UAccounts.pas

@@ -28,7 +28,7 @@ uses
   UPCHardcodedRandomHashTable, UJSONFunctions,
   UPCHardcodedRandomHashTable, UJSONFunctions,
   {$IFNDEF FPC}System.Generics.Collections{$ELSE}Generics.Collections{$ENDIF};
   {$IFNDEF FPC}System.Generics.Collections{$ELSE}Generics.Collections{$ENDIF};
 
 
-{$I config.inc}
+{$I ./../config.inc}
 
 
 Type
 Type
   TAccountKey = TECDSA_Public;
   TAccountKey = TECDSA_Public;

+ 1 - 1
src/core/UBaseTypes.pas

@@ -30,7 +30,7 @@ interface
 uses
 uses
   Classes, SysUtils;
   Classes, SysUtils;
 
 
-{$I config.inc}
+{$I ./../config.inc}
 
 
 Type
 Type
   {$IFDEF NO_ANSISTRING}
   {$IFDEF NO_ANSISTRING}

+ 1 - 1
src/core/UBlockChain.pas

@@ -26,7 +26,7 @@ uses
   Classes, UCrypto, UAccounts, ULog, UThread, SyncObjs, UBaseTypes, SysUtils,
   Classes, UCrypto, UAccounts, ULog, UThread, SyncObjs, UBaseTypes, SysUtils,
   {$IFNDEF FPC}System.Generics.Collections{$ELSE}Generics.Collections{$ENDIF},
   {$IFNDEF FPC}System.Generics.Collections{$ELSE}Generics.Collections{$ENDIF},
   UPCDataTypes;
   UPCDataTypes;
-{$I config.inc}
+{$I ./../config.inc}
 
 
 {
 {
 
 

+ 1 - 1
src/core/UConst.pas

@@ -22,7 +22,7 @@ unit UConst;
 
 
 interface
 interface
 
 
-{$I config.inc}
+{$I ./../config.inc}
 
 
 {$IFNDEF FPC}
 {$IFNDEF FPC}
   // See http://wiki.freepascal.org/Code_Conversion_Guide
   // See http://wiki.freepascal.org/Code_Conversion_Guide

+ 1 - 1
src/core/UCrypto.pas

@@ -20,7 +20,7 @@ unit UCrypto;
   {$MODE Delphi}
   {$MODE Delphi}
 {$ENDIF}
 {$ENDIF}
 
 
-{$I config.inc}
+{$I ./../config.inc}
 
 
 {$IF (not Defined(Use_CryptoLib4Pascal)) and (not Defined(Use_OpenSSL))}
 {$IF (not Defined(Use_CryptoLib4Pascal)) and (not Defined(Use_OpenSSL))}
   ERROR: At least Use_CryptoLib4Pascal or Use_OpenSSL must be defined!
   ERROR: At least Use_CryptoLib4Pascal or Use_OpenSSL must be defined!

+ 1 - 1
src/core/UECIES.pas

@@ -39,7 +39,7 @@ unit UECIES;
   {$MODE Delphi}
   {$MODE Delphi}
 {$ENDIF}
 {$ENDIF}
 
 
-{$I config.inc}
+{$I ./../config.inc}
 
 
 {$IF not Defined(Use_OpenSSL)}
 {$IF not Defined(Use_OpenSSL)}
   {$Message Warn 'ERROR: Use_OpenSSL is not defined, you should not use this UNIT!'}
   {$Message Warn 'ERROR: Use_OpenSSL is not defined, you should not use this UNIT!'}

+ 1 - 1
src/core/UFileStorage.pas

@@ -24,7 +24,7 @@ interface
 
 
 uses
 uses
   Classes, {$IFnDEF FPC}Windows,{$ENDIF} UBlockChain, SyncObjs, UThread, UAccounts, UCrypto;
   Classes, {$IFnDEF FPC}Windows,{$ENDIF} UBlockChain, SyncObjs, UThread, UAccounts, UCrypto;
-{$I config.inc}
+{$I ./../config.inc}
 
 
 Type
 Type
   TBlockHeader = Record
   TBlockHeader = Record

+ 1 - 1
src/core/UNode.pas

@@ -38,7 +38,7 @@ uses
   {$IFNDEF FPC}System.Generics.Collections{$ELSE}Generics.Collections{$ENDIF},
   {$IFNDEF FPC}System.Generics.Collections{$ELSE}Generics.Collections{$ENDIF},
   UBlockChain, UNetProtocol, UAccounts, UCrypto, UThread, SyncObjs, ULog, UBaseTypes, UPCOrderedLists;
   UBlockChain, UNetProtocol, UAccounts, UCrypto, UThread, SyncObjs, ULog, UBaseTypes, UPCOrderedLists;
 
 
-{$I config.inc}
+{$I ./../config.inc}
 
 
 Type
 Type
 
 

+ 1 - 1
src/core/UOpenSSL.pas

@@ -26,7 +26,7 @@ interface
   {$MODE Delphi}
   {$MODE Delphi}
 {$ENDIF}
 {$ENDIF}
 
 
-{$I config.inc}
+{$I ./../config.inc}
 
 
 {$IFDEF ANDROID}
 {$IFDEF ANDROID}
 Uses UBaseTypes;
 Uses UBaseTypes;

+ 1 - 1
src/core/UPCEncryption.pas

@@ -34,7 +34,7 @@ interface
   {$MODE Delphi}
   {$MODE Delphi}
 {$ENDIF}
 {$ENDIF}
 
 
-{$I config.inc}
+{$I ./../config.inc}
 
 
 {$IF (not Defined(Use_OpenSSL)) and (not Defined(Use_CryptoLib4Pascal))}
 {$IF (not Defined(Use_OpenSSL)) and (not Defined(Use_CryptoLib4Pascal))}
   {$Message Fatal 'ERROR: Use_OpenSSL or Use_CryptoLib4Pascal are not defined, you need to at least define one!'}
   {$Message Fatal 'ERROR: Use_OpenSSL or Use_CryptoLib4Pascal are not defined, you need to at least define one!'}

+ 1 - 1
src/core/UPCHardcodedRandomHashTable.pas

@@ -20,7 +20,7 @@ unit UPCHardcodedRandomHashTable;
   {$MODE Delphi}
   {$MODE Delphi}
 {$ENDIF}
 {$ENDIF}
 
 
-{$I config.inc}
+{$I ./../config.inc}
 
 
 interface
 interface
 
 

+ 1 - 1
src/core/UPCOpenSSLSignature.pas

@@ -31,7 +31,7 @@ interface
 {$ENDIF}
 {$ENDIF}
 
 
 
 
-{$I config.inc}
+{$I ./../config.inc}
 
 
 {$IF (not Defined(Use_OpenSSL))}
 {$IF (not Defined(Use_OpenSSL))}
   {$Message Fatal 'ERROR: Use_OpenSSL is not defined!'}
   {$Message Fatal 'ERROR: Use_OpenSSL is not defined!'}

+ 1 - 1
src/core/UPCOperationsBlockValidator.pas

@@ -28,7 +28,7 @@ unit UPCOperationsBlockValidator;
 
 
 interface
 interface
 
 
-{$I config.inc}
+{$I ./../config.inc}
 
 
 {$IFDEF FPC}
 {$IFDEF FPC}
   {$MODE Delphi}
   {$MODE Delphi}

+ 1 - 1
src/core/UPCOperationsSignatureValidator.pas

@@ -28,7 +28,7 @@ unit UPCOperationsSignatureValidator;
 
 
 interface
 interface
 
 
-{$I config.inc}
+{$I ./../config.inc}
 
 
 {$IFDEF FPC}
 {$IFDEF FPC}
   {$MODE Delphi}
   {$MODE Delphi}

+ 1 - 1
src/core/UPCRPCOpData.pas

@@ -22,7 +22,7 @@ unit UPCRPCOpData;
 
 
 interface
 interface
 
 
-{$I config.inc}
+{$I ./../config.inc}
 
 
 Uses classes, SysUtils,
 Uses classes, SysUtils,
   UJSONFunctions, UAccounts, UBaseTypes, UOpTransaction, UConst,
   UJSONFunctions, UAccounts, UBaseTypes, UOpTransaction, UConst,

+ 1 - 1
src/core/UPCSafeBoxRootHash.pas

@@ -86,7 +86,7 @@ unit UPCSafeBoxRootHash;
 
 
 interface
 interface
 
 
-{$I config.inc}
+{$I ./../config.inc}
 uses
 uses
   Classes, SysUtils, UConst, UCrypto, SyncObjs, UThread, UBaseTypes,
   Classes, SysUtils, UConst, UCrypto, SyncObjs, UThread, UBaseTypes,
   UPCOrderedLists, UPCDataTypes,
   UPCOrderedLists, UPCDataTypes,

+ 1 - 1
src/core/UPCTNetDataExtraMessages.pas

@@ -26,7 +26,7 @@ unit UPCTNetDataExtraMessages;
 
 
 interface
 interface
 
 
-{$I config.inc}
+{$I ./../config.inc}
 
 
 {$IFDEF FPC}
 {$IFDEF FPC}
   {$MODE Delphi}
   {$MODE Delphi}

+ 1 - 1
src/core/UPoolMinerThreads.pas

@@ -22,7 +22,7 @@ unit UPoolMinerThreads;
 
 
 interface
 interface
 
 
-{$I config.inc}
+{$I ./../config.inc}
 
 
 uses
 uses
   Classes, SysUtils, syncobjs, UThread, UPoolMining, UAccounts, UCrypto, ULog, UBlockChain, USha256, URandomHash, URandomHash2, UBaseTypes, UCommon,
   Classes, SysUtils, syncobjs, UThread, UPoolMining, UAccounts, UCrypto, ULog, UBlockChain, USha256, URandomHash, URandomHash2, UBaseTypes, UCommon,

+ 1 - 1
src/core/UPoolMining.pas

@@ -22,7 +22,7 @@ unit UPoolMining;
 
 
 interface
 interface
 
 
-{$I config.inc}
+{$I ./../config.inc}
 
 
 Uses
 Uses
 {$IFnDEF FPC}
 {$IFnDEF FPC}

+ 1 - 1
src/core/URPC.pas

@@ -22,7 +22,7 @@ unit URPC;
 
 
 interface
 interface
 
 
-{$I config.inc}
+{$I ./../config.inc}
 
 
 Uses UThread, ULog, UConst, UNode, UAccounts, UCrypto, UBlockChain,
 Uses UThread, ULog, UConst, UNode, UAccounts, UCrypto, UBlockChain,
   UNetProtocol, UOpTransaction, UWallet, UTime, UPCEncryption, UTxMultiOperation,
   UNetProtocol, UOpTransaction, UWallet, UTime, UPCEncryption, UTxMultiOperation,

+ 1 - 1
src/core/USettings.pas

@@ -20,7 +20,7 @@ unit USettings;
   {$mode delphi}
   {$mode delphi}
 {$ENDIF}
 {$ENDIF}
 
 
-{$I config.inc}
+{$I ./../config.inc}
 
 
 interface
 interface
 
 

+ 1 - 1
src/core/UTCPIP.pas

@@ -22,7 +22,7 @@ interface
   {$mode delphi}
   {$mode delphi}
 {$ENDIF}
 {$ENDIF}
 
 
-{$I config.inc}
+{$I ./../config.inc}
 
 
 {
 {
   Change log: 2019-01-31
   Change log: 2019-01-31

+ 1 - 1
src/core/UThread.pas

@@ -36,7 +36,7 @@ uses
   {$IFNDEF FPC}System.Generics.Collections{$ELSE}Generics.Collections{$ENDIF},
   {$IFNDEF FPC}System.Generics.Collections{$ELSE}Generics.Collections{$ENDIF},
   Classes, SyncObjs, SysUtils, UBaseTypes;
   Classes, SyncObjs, SysUtils, UBaseTypes;
 
 
-{$I config.inc}
+{$I ./../config.inc}
 
 
 Type
 Type
   TPCCriticalSection = Class(TCriticalSection)
   TPCCriticalSection = Class(TCriticalSection)

+ 1 - 1
src/core/UWallet.pas

@@ -22,7 +22,7 @@ unit UWallet;
 
 
 interface
 interface
 
 
-{$I config.inc}
+{$I ./../config.inc}
 
 
 {$IFDEF ANDROID}
 {$IFDEF ANDROID}
   {$UNDEF INTERNAL_USE_SETTINGS_UNIT}
   {$UNDEF INTERNAL_USE_SETTINGS_UNIT}