--- ibx/branches/udr/fbintf.dpk 2022/01/05 14:59:15 370 +++ ibx/branches/udr/fbintf.dpk 2022/01/05 15:21:22 371 @@ -1,10 +1,11 @@ package fbintf; {$R *.res} +{$IFDEF IMPLICITBUILDING This IFDEF should not be used by users} {$ALIGN 8} {$ASSERTIONS ON} {$BOOLEVAL OFF} -{$DEBUGINFO ON} +{$DEBUGINFO OFF} {$EXTENDEDSYNTAX ON} {$IMPORTEDDATA ON} {$IOCHECKS ON} @@ -22,6 +23,8 @@ package fbintf; {$WRITEABLECONST OFF} {$MINENUMSIZE 1} {$IMAGEBASE $400000} +{$DEFINE DEBUG} +{$ENDIF IMPLICITBUILDING} {$IMPLICITBUILD ON} requires @@ -29,10 +32,10 @@ requires dbrtl; contains - IBUtils in 'IBUtils.pas', - IB in 'IB.pas', - IBErrorCodes in 'IBErrorCodes.pas', - IBExternals in 'IBExternals.pas', + IBUtils in 'client\IBUtils.pas', + IB in 'client\IB.pas', + IBErrorCodes in 'client\IBErrorCodes.pas', + IBExternals in 'client\IBExternals.pas', FBTransaction in 'client\FBTransaction.pas', FBActivityMonitor in 'client\FBActivityMonitor.pas', FBArray in 'client\FBArray.pas', @@ -65,6 +68,7 @@ contains Firebird in 'client\3.0\firebird\Firebird.pas', FBMessages in 'client\FBMessages.pas', FB30TimeZoneServices in 'client\3.0\FB30TimeZoneServices.pas', - FBClientLib in 'FBClientLib.pas'; + FBClientLib in 'client\FBClientLib.pas', + FBNumeric in 'client\FBNumeric.pas'; end.