diff options
author | Jose Alonso Cardenas Marquez <acm@FreeBSD.org> | 2022-02-03 00:03:11 -0500 |
---|---|---|
committer | Jose Alonso Cardenas Marquez <acm@FreeBSD.org> | 2022-02-03 00:07:13 -0500 |
commit | daa23dba69ea27a2e101b04738b9d0abcf34ac74 (patch) | |
tree | dae21aa4dc252918517f319de96fdc62b073fe9d /editors/lazarus/files/patch-ide_lazbuild.lpr | |
parent | lang/fpc: Fix build issue on lazarus i386 and amd64 (diff) |
editors/lazarus-*: update to 2.2.0
- Bump PORTREVISION
- archivers/peazip update to 8.4.0
- editors/cudatext update to 1.155.3
- russian/emkatic update to 0.41
- x11-toolkits/qt5pas to latest version included into lazarus 2.2.0
ChangeLog at: https://wiki.lazarus.freepascal.org/Lazarus_2.2.0_release_notes
Diffstat (limited to 'editors/lazarus/files/patch-ide_lazbuild.lpr')
-rw-r--r-- | editors/lazarus/files/patch-ide_lazbuild.lpr | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/editors/lazarus/files/patch-ide_lazbuild.lpr b/editors/lazarus/files/patch-ide_lazbuild.lpr deleted file mode 100644 index f41760802e71..000000000000 --- a/editors/lazarus/files/patch-ide_lazbuild.lpr +++ /dev/null @@ -1,33 +0,0 @@ ---- ide/lazbuild.lpr 2018-07-28 08:38:06.000000000 -0500 -+++ ide/lazbuild.lpr 2020-11-19 20:38:27.421396000 -0500 -@@ -372,7 +372,7 @@ - if not FileExistsUTF8(Filename) then - begin - // Check for packages if the specified name is a valid identifier -- if LazIsValidIdent(OriginalFileName) then begin -+ if PackageFileNameIsValid(OriginalFileName) then begin - if PackageAction=lpaAddPkgLinks then begin - Error(ErrorFileNotFound,'lpk file expected, but '+OriginalFilename+' found'); - Exit; -@@ -487,11 +487,10 @@ - XMLConfig.Free; - end; - // check Package Name -- if (Result.Name='') or (not LazIsValidIdent(Result.Name)) then begin -+ if (Result.Name='') or (not IsValidPkgName(Result.Name)) then - Error(ErrorPackageNameInvalid, - Format(lisPkgMangThePackageNameOfTheFileIsInvalid, - [Result.Name, LineEnding, Result.Filename])); -- end; - // check if Package with same name is already loaded - ConflictPkg:=PackageGraph.FindPackageWithName(Result.Name,nil); - if ConflictPkg<>nil then begin -@@ -1051,7 +1050,7 @@ - PkgFilename:=''; - if CompareFileExt(PackageNamesOrFiles[i],'.lpk')=0 then - PkgFilename:=ExpandFileNameUTF8(PackageNamesOrFiles[i]) -- else if LazIsValidIdent(PackageNamesOrFiles[i]) then begin -+ else if IsValidPkgName(PackageNamesOrFiles[i]) then begin - PackageLink:=TLazPackageLink(LazPackageLinks.FindLinkWithPkgName(PackageNamesOrFiles[i])); - if PackageLink=nil then - begin |